We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ff68d commit aea2fa5Copy full SHA for aea2fa5
setup.py
@@ -34,7 +34,7 @@
34
cc = compiler
35
if cc is None:
36
raise ValueError("You must install gcc/g++. You can install with homebrew: brew install gcc --without-multilib")
37
- os.environ["CC"] = cc
+ os.environ["CC"] = cc.replace("g++", "gcc")
38
os.environ["CXX"] = cc
39
# not all OSX/clang compiler flags supported by GCC. For some reason
40
# these sometimes are generated and used. Cython will still add more flags.
0 commit comments