Another attempted fix for CLANG on OSX.
This commit is contained in:
parent
f8f32ef082
commit
f47a4782da
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,6 +5,7 @@ __pycache__
|
||||
*.pyo
|
||||
.mypy_cache/
|
||||
*.c
|
||||
*.cpp
|
||||
*.o
|
||||
*.so
|
||||
build/
|
||||
|
14
setup.py
14
setup.py
@ -90,8 +90,11 @@ setup(
|
||||
Extension(
|
||||
"bemani.protocol.lz77alt",
|
||||
[
|
||||
"bemani/protocol/lz77.cpp",
|
||||
]
|
||||
"bemani/protocol/lz77.cxx",
|
||||
],
|
||||
language="c++",
|
||||
extra_compile_args=["-std=c++14"],
|
||||
extra_link_args=["-std=c++14"],
|
||||
),
|
||||
Extension(
|
||||
"bemani.protocol.node",
|
||||
@ -127,8 +130,11 @@ setup(
|
||||
"bemani.format.afp.blendalt",
|
||||
[
|
||||
"bemani/format/afp/blendalt.pyx",
|
||||
"bemani/format/afp/blendaltimpl.cpp",
|
||||
]
|
||||
"bemani/format/afp/blendaltimpl.cxx",
|
||||
],
|
||||
language="c++",
|
||||
extra_compile_args=["-std=c++14"],
|
||||
extra_link_args=["-std=c++14"],
|
||||
),
|
||||
Extension(
|
||||
"bemani.format.afp.types.generic",
|
||||
|
Loading…
Reference in New Issue
Block a user