diff options
author | davygrvy <davygrvy@pobox.com> | 2002-02-21 22:00:58 (GMT) |
---|---|---|
committer | davygrvy <davygrvy@pobox.com> | 2002-02-21 22:00:58 (GMT) |
commit | 39c08d3ba4eaad235dd50559a14a970acb1d75d8 (patch) | |
tree | 253a5528d55b9c8695a53b7e875889e8fae501e6 /win/coffbase.txt | |
parent | e2574e2bfd57fbf6ec30cb0bcaf1c3c8797802f2 (diff) | |
download | tcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.zip tcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.tar.gz tcl-39c08d3ba4eaad235dd50559a14a970acb1d75d8.tar.bz2 |
* win/mkd.bat (removed):
* win/coffbase.txt (new):
* win/makefile.bc:
* win/makefile.vc: Changed the 'setup' target to stop using
the mkd.bat file and just make the directory right in the rule.
Same change to makefile.bc. configure.in nor Makefile.in use
it.
coffbase.txt will be the master list for our "prefered base
addresses" set by the linker. This should improve load-time
(NT only) by avoiding relocations. Submissions to the list
by extension authors are encouraged.
Added a 'tidy' target to compliment 'clean' and 'hose' to remove
just the outputs. Also removed the $(winlibs) macro as it wasn't
being used.
Stuff left to do:
1) get the winhelp target to stop building in the tools/
directory.
2) stop using rmd.bat
3) add more dependacy rules.
Diffstat (limited to 'win/coffbase.txt')
-rw-r--r-- | win/coffbase.txt | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win/coffbase.txt b/win/coffbase.txt new file mode 100644 index 0000000..7cb3817 --- /dev/null +++ b/win/coffbase.txt @@ -0,0 +1,15 @@ +; +; This file defines the base virtual addresses for Dynamic Link Libraries (DLL) +; that are part of the Tcl System. The first token on a line is the name +; of the DLL and the second token is the base virtual address, in hexidecimal. +; The third token is the maximum size of the DLL image file, including symbols. +; +; Using a specified "prefered load addresses" should speed load-time by avoiding +; relocations. It is assumed extension author will contribute their modules +; to this grand-master one. +; +; RCS: @(#) $Id: coffbase.txt,v 1.1 2002/02/21 22:00:58 davygrvy Exp $ + +tcl 0x10000000 0x00200000 +tcldde 0x10200000 0x00010000 +tclreg 0x10210000 0x00010000 |