We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b015a3 commit 6e95970Copy full SHA for 6e95970
graalpython/lib-python/3/distutils/sysconfig_graalpython.py
@@ -74,11 +74,11 @@ def _init_posix():
74
75
g = {}
76
g['CC'] = sys.__graal_get_toolchain_path('CC')
77
- g['CXX'] = toolchain_cxx if have_cxx else g['CC'] + ' --driver-mode=g++ -stdlib=libc++'
+ g['CXX'] = toolchain_cxx if have_cxx else g['CC'] + ' --driver-mode=g++'
78
g['OPT'] = "-DNDEBUG -O1"
79
g['CONFINCLUDEPY'] = get_python_inc()
80
g['CPPFLAGS'] = '-I. -I' + get_python_inc()
81
- g['CFLAGS'] = "-DNDEBUG -O1"
+ g['CFLAGS'] = "-Wunused-command-line-argument -stdlib=libc++ -DNDEBUG -O1"
82
g['CCSHARED'] = "-fPIC"
83
g['LDSHARED_LINUX'] = "%s -shared -fPIC" % sys.__graal_get_toolchain_path('CC')
84
if darwin_native:
0 commit comments