Changeset 1143


Ignore:
Timestamp:
Feb 2, 2004, 1:48:14 AM (22 years ago)
Author:
bird
Message:

Fixed lxlite issue.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/Makefile

    • Property cvs2svn:cvs-rev changed from 1.41 to 1.42
    r1142 r1143  
    138138#               for each new process is a waste of time. The code segment is
    139139#               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>
    141143# URG! we must not do this for ldstub.bin!
    142144ifeq ($(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 $@
     145DO.LINK.exe += $(if $(findstring .exe,$@), $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /X /AS $(subst /,\\,$@))
     146DO.LINK.dll += $(NL)cp $@ $(basename $@).dbg $(NL)lxlite /F+ /AP:4096 /MRN /MLN /MF3 $(subst /,\\,$@)
    145147endif
    146148
Note: See TracChangeset for help on using the changeset viewer.