summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1998-06-11 04:33:37 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1998-06-11 04:33:37 +0000
commitfd52f1c22702ca01878408c8f73de64bcbf976cd (patch)
tree54f2447ef271a88f7afcdacf7cc18a4e5250fca1
parent336268e47fa5bfa1fe3ff26b6821588ffa708764 (diff)
downloademacs-fd52f1c22702ca01878408c8f73de64bcbf976cd.tar.gz
(LINK_FLAGS): Place debug info in executable in
unoptimized compile. Link to run off of cd or network.
-rw-r--r--src/makefile.nt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index dcd528e9a9e..f072402ad49 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -58,9 +58,9 @@ TLASTLIB = $(BLD)\lastfile.lib
# see comments in allocate_heap in w32heap.c before changing any of the
# -stack, -heap, or -base settings.
!if "$(BUILD_TYPE)" == "spd"
-LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map
+LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
!else
-LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:$(BLD)\temacs.pdb -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map
+LINK_FLAGS = $(ARCH_LDFLAGS) -stack:0x00800000 -heap:0x00100000 -base:0x01000000 -debug:full -pdb:none -machine:$(ARCH) -subsystem:$(SUBSYSTEM) -entry:_start -map:$(BLD)\temacs.map -swaprun:net -swaprun:cd
!endif
#