Changeset 1143
- Timestamp:
- Feb 2, 2004, 1:48:14 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/Makefile
-
Property cvs2svn:cvs-rev
changed from
1.41
to1.42
r1142 r1143 138 138 # for each new process is a waste of time. The code segment is 139 139 # shared, data segment is not shared, but must be reloaded page by page 140 # from the executable in new processes. </rant> 140 # from the executable in new processes. 141 # For further optimzations, we align pages on 4kb boundaries since this 142 # is the JFS block size and thus should be most the efficient unit to read. </rant> 141 143 # URG! we must not do this for ldstub.bin! 142 144 ifeq ($(MODE),opt) 143 DO.LINK.exe += $(if $(findstring .exe,$@), $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /X /AS $ @)144 DO.LINK.dll += $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /F+ /AP:4096 /MRN /MLN /MF3 $ @145 DO.LINK.exe += $(if $(findstring .exe,$@), $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /X /AS $(subst /,\\,$@)) 146 DO.LINK.dll += $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /F+ /AP:4096 /MRN /MLN /MF3 $(subst /,\\,$@) 145 147 endif 146 148 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.