Changeset 954
- Timestamp:
- Aug 10, 2011, 5:22:54 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README.OS2
r950 r954 57 57 the corresponding feature: 58 58 59 - LxLite 1.3.3 or above (not tested) to enable the compression of Qt DLLs and 60 application executables (which saves hard disk space and application startup 61 time). If you use a recent version of eComStation (e.g. 2.0 rc6) you will 62 already have LxLite installed. Otherwise, you may take it from here: 59 - MAPSYM 4.00.000 (Oct 4 2001) to enable generation of symbol (.SYM) files for 60 DLLs and executables. This tool comes with OS/2 Toolkit 4.5. Note that other 61 versions of this tool may not work correctly. 62 63 - LxLite 1.3.3 or above (not tested) to enable the compression of DLLs and 64 executables (which saves hard disk space and application startup time). If 65 you use a recent version of eComStation (e.g. 2.0 rc6) you will already have 66 LxLite installed. Otherwise, you may take it from here: 63 67 64 68 http://www.os2site.com/sw/util/archiver/lxlt133.zip … … 378 382 DLLs. This option is set by default. 379 383 384 sym Turns on generation of the .sym files for executables and 385 DLLs. The option is turned on by default if configure.cmd 386 is able to find the MAPSYM tool in PATH. 387 380 388 exepack Turns on compression for executables and DLLs. The option is 381 389 turned on by default for release builds if configure.cmd 382 findsa compression tool (LxLite) in PATH.390 is able to find a compression tool (LxLite) in PATH. 383 391 384 392 highmem Turns on high memory usage for dynamically allocated memory -
trunk/configure.cmd
r899 r954 356 356 357 357 /* variables that override ones in qmake.conf */ 358 G.QMAKE_MAPSYM = "" 358 359 G.QMAKE_EXEPACK = "" 359 360 G.QMAKE_EXEPACK_FLAGS = "" … … 633 634 */ 634 635 end 636 637 /* detect the mapsym program */ 638 if (G.QMAKE_MAPSYM == "") then 639 G.QMAKE_MAPSYM = SysSearchPath('PATH', 'mapsym.cmd') 640 if (G.QMAKE_MAPSYM == "") then 641 G.QMAKE_MAPSYM = SysSearchPath('PATH', 'mapsym.exe') 642 if (G.QMAKE_MAPSYM \== "") then 643 G.QMAKE_MAPSYM = "mapsym" /* try to be smart and rely on PATH */ 635 644 636 645 /* detect the exepack program */ … … 1828 1837 '# qmake.conf overrides'G.EOL 1829 1838 1839 if (G.QMAKE_MAPSYM \== '') then do 1840 call charout qconfig_pri_new,, 1841 'QMAKE_MAPSYM = 'G.QMAKE_MAPSYM||G.EOL 1842 end 1843 1830 1844 if (G.QMAKE_EXEPACK \== '') then do 1831 1845 call charout qconfig_pri_new,, … … 2076 2090 if (G.CFG_PTMALLOC \== "no") then 2077 2091 call SayLog "Use ptmalloc ........... "G.CFG_PTMALLOC 2092 2093 if (G.QMAKE_MAPSYM \== "") then 2094 call SayLog "Symbol file support .... yes ("G.QMAKE_MAPSYM")" 2095 else 2096 call SayLog "Symbol file support .... no" 2078 2097 2079 2098 if (G.QMAKE_EXEPACK \== "") then -
trunk/mkspecs/features/os2/map.prf
r415 r954 2 2 build_pass|isEmpty(BUILDS) { 3 3 QMAKE_LFLAGS += $$QMAKE_LFLAGS_MAP 4 QMAKE_CLEAN += $ (basename $(DESTDIR_TARGET)).map4 QMAKE_CLEAN += $$QMAKE_MAP_FILE 5 5 } 6 6 } -
trunk/mkspecs/os2-g++/qmake.conf
r895 r954 166 166 QMAKE_STRIP = 167 167 168 QMAKE_MAP_FILE = $(basename $(DESTDIR_TARGET)).map 169 QMAKE_SYM_FILE = $(basename $(DESTDIR_TARGET)).sym 170 ilink:QMAKE_RUN_MAPSYM = $(QMAKESPECDIR)\\runmapsym.cmd \ 171 mapsym $$QMAKE_MAP_FILE $$QMAKE_SYM_FILE 172 wlink:QMAKE_RUN_MAPSYM = $(QMAKESPECDIR)\\runmapsym.cmd \ 173 $(QMAKESPECDIR)\\wmapsym.cmd $$QMAKE_MAP_FILE $$QMAKE_SYM_FILE 174 168 175 load(qt_config)
Note:
See TracChangeset
for help on using the changeset viewer.