* Initial python-3.7 port * python3: Add setup.config.in to remove before patching * python3: Implement setenv for mingw. Fix building with NT threads. Build with unicode * Fix typos * Fix linking core modules * Mingw build have exec_prefix * Remove deprecated patch * Fix building python and modules. Failing to build readline module and install not working yet * More getpath changes and more aggressive path separator conversion * Fix readline module compilation and linking errors * python3: By default building with posix threads, NT threads are broken. Some patches optimization. First buildable commit * Py_DecodeLocale handle char, not wchar * Fix building multiprocessing module with posix threads
12 lines
418 B
Diff
12 lines
418 B
Diff
--- Python-3.7.0/Modules/makesetup.orig 2018-07-01 18:35:00.747322100 +0300
|
|
+++ Python-3.7.0/Modules/makesetup 2018-07-01 18:35:16.737350200 +0300
|
|
@@ -233,7 +233,7 @@
|
|
case $doconfig in
|
|
no) cc="$cc \$(CCSHARED) \$(PY_CFLAGS) \$(PY_CPPFLAGS)";;
|
|
*)
|
|
- cc="$cc \$(PY_STDMODULE_CFLAGS)";;
|
|
+ cc="$cc \$(PY_CORE_CFLAGS)";;
|
|
esac
|
|
rule="$obj: $src; $cc $cpps -c $src -o $obj"
|
|
echo "$rule" >>$rulesf
|