Skip to content

Commit

Permalink
revert #40, as it does not work when using both C and C++
Browse files Browse the repository at this point in the history
  • Loading branch information
dfeneyrou committed Sep 17, 2024
1 parent 7df56a9 commit bfd3249
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

# Deduce some parameters
extra_link_args = []
extra_compilation_flags = ["-I", "palanteer/_cextension", "-std=c++11"]
extra_compilation_flags = ["-I", "palanteer/_cextension"]

if isDevMode:
if sys.platform == "win32":
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ isDevMode = False # Enable to speed up development cycles. Shall be False for f

# Deduce some parameters
extra_link_args = []
extra_compilation_flags = ["-I", os.path.normpath("${CMAKE_CURRENT_SOURCE_DIR}/../c++"), "-std=c++11"]
extra_compilation_flags = ["-I", os.path.normpath("${CMAKE_CURRENT_SOURCE_DIR}/../c++")]

if isDevMode:
if sys.platform == "win32":
Expand Down

0 comments on commit bfd3249

Please sign in to comment.