- Timestamp:
- Sep 14, 2010, 1:20:10 PM (15 years ago)
- Location:
- python/trunk
- Files:
-
- 3 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: -
python/trunk/Lib/test/test_unicodedata.py
r10 r21 72 72 # but the other test cases will still be run 73 73 import unicodedata 74 self.db = unicodedata 74 75 75 76 def tearDown(self): -
python/trunk/Misc/python-config.in
r10 r21 44 44 45 45 elif opt in ('--libs', '--ldflags'): 46 libs = getvar('LIBS').split() + getvar('SYSLIBS').split() 47 # YD ignore libs 48 libs = getvar('SYSLIBS').split() 46 if os.name != 'os2': 47 libs = getvar('LIBS').split() + getvar('SYSLIBS').split() 48 else 49 # YD ignore libs 50 libs = getvar('SYSLIBS').split() 49 51 libs.append('-lpython'+pyver) 50 52 # add the prefix/lib/pythonX.Y/config dir, but only if there is no
Note:
See TracChangeset
for help on using the changeset viewer.