We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb16aa commit 4f19744Copy full SHA for 4f19744
setup.py
@@ -2013,8 +2013,8 @@ def _decimal_ext(self):
2013
2014
# Increase warning level for gcc:
2015
if 'gcc' in cc:
2016
- cmd = ("echo '' | gcc -Wextra -Wno-missing-field-initializers -E - "
2017
- "> /dev/null 2>&1")
+ cmd = ("echo '' | %s -Wextra -Wno-missing-field-initializers -E - "
+ "> /dev/null 2>&1" % cc)
2018
ret = os.system(cmd)
2019
if ret >> 8 == 0:
2020
extra_compile_args.extend(['-Wextra',
0 commit comments