Changeset 21 for python/trunk/Lib/distutils
- Timestamp:
- Sep 14, 2010, 1:20:10 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/distutils/emxccompiler.py
r10 r21 61 61 (self.gcc_version, 62 62 self.ld_version) ) 63 64 # Hard-code GCC because that's what this is all about.65 # XXX optimization, warnings etc. should be customizable.66 self.set_executables(compiler='gcc -g -O2 -march=i386 -mtune=i686 -fomit-frame-pointer -Wall',67 compiler_so='gcc -g -O2 -march=i386 -mtune=i686 -fomit-frame-pointer -Wall',68 linker_exe='gcc -Zomf -Zexe',69 linker_so='gcc -Zomf -Zdll')70 63 71 64 # want the gcc library statically linked (so that we don't have … … 217 210 emx_dirs = [] 218 211 219 #print "dirs:",dirs220 212 for dir in dirs + emx_dirs: 221 213 for name in try_names:
Note:
See TracChangeset
for help on using the changeset viewer.