- Timestamp:
- Sep 12, 2010, 11:24:21 PM (15 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/distutils/sysconfig.py
r10 r13 173 173 varies across Unices and is stored in Python's Makefile. 174 174 """ 175 if compiler.compiler_type == "unix" :175 if compiler.compiler_type == "unix" or compiler.compiler_type == "emx": 176 176 (cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = \ 177 177 get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', -
python/trunk/configure
r10 r13 13333 13333 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";; 13334 13334 atheos*) LDSHARED="gcc -shared";; 13335 OS/2*|os2*|*emx*) LDSHARED=" gcc -Zdll -Zomf";;13335 OS/2*|os2*|*emx*) LDSHARED="${CC} ${LDFLAGS} -Zdll";; 13336 13336 *) LDSHARED="ld";; 13337 13337 esac
Note:
See TracChangeset
for help on using the changeset viewer.