1
0
mirror of synced 2024-11-27 23:50:47 +01:00

Another attempted fix for CLANG on OSX.

This commit is contained in:
Jennifer Taylor 2021-05-19 20:16:51 +00:00
parent f8f32ef082
commit f47a4782da
4 changed files with 11 additions and 4 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ __pycache__
*.pyo
.mypy_cache/
*.c
*.cpp
*.o
*.so
build/

View File

@ -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",