File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ def _findLib_gcc(name):
92
92
fdout , ccout = tempfile .mkstemp ()
93
93
os .close (fdout )
94
94
cmd = 'if type gcc >/dev/null 2>&1; then CC=gcc; elif type cc >/dev/null 2>&1; then CC=cc;else exit 10; fi;' \
95
- '$CC -Wl,-t -o ' + ccout + ' 2>&1 -l' + name
95
+ 'LANG=C LC_ALL=C $CC -Wl,-t -o ' + ccout + ' 2>&1 -l' + name
96
96
try :
97
97
f = os .popen (cmd )
98
98
try :
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ What's New in Python 3.3.3?
10
10
Core and Builtins
11
11
-----------------
12
12
13
+ - Issue #17754: Make ctypes.util.find_library() independent of the locale.
14
+
13
15
- Issue #17927: Frame objects kept arguments alive if they had been copied into
14
16
a cell, even if the cell was cleared.
15
17
You can’t perform that action at this time.
0 commit comments