Changes between Version 34 and Version 35 of SetupDevelopment
- Timestamp:
- 09/16/13 19:49:25 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SetupDevelopment
v34 v35 67 67 {{{ 68 68 cd setup 69 ./bootstrap.sh #This will automatically rebuild configure file 69 ./bootstrap.sh # This will automatically rebuild configure file 70 # If you want to enable a mirror, you should add --enable-mirror option, see README file please 70 71 make # this should produce a setup.exe executable in the setup directory, that is approximately 9 MB in size 71 72 make clean # if necessary … … 74 75 1. remove debugging symbols with the cygwin command: 75 76 {{{ 76 strip -s setup.exe77 strip -s osgeo4w-setup-x86.exe 77 78 }}} 78 79 the file should now be around 1 MB in size 79 80 2. compress the exe using the UPX utility, with the cygwin command: 80 81 {{{ 81 upx --best setup.exe82 upx --best osgeo4w-setup-x86.exe 82 83 }}} 83 84 the file should now be around 400 KB in size