We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb84b5d + 4f19744 commit e8d4d51Copy full SHA for e8d4d51
1 file changed
setup.py
@@ -2024,8 +2024,8 @@ def _decimal_ext(self):
2024
2025
# Increase warning level for gcc:
2026
if 'gcc' in cc:
2027
- cmd = ("echo '' | gcc -Wextra -Wno-missing-field-initializers -E - "
2028
- "> /dev/null 2>&1")
+ cmd = ("echo '' | %s -Wextra -Wno-missing-field-initializers -E - "
+ "> /dev/null 2>&1" % cc)
2029
ret = os.system(cmd)
2030
if ret >> 8 == 0:
2031
extra_compile_args.extend(['-Wextra',
0 commit comments