Thanks to visit codestin.com Credit goes to github.com
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 2cb16aa commit 4f19744Copy full SHA for 4f19744
1 file changed
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