Skip to content

Commit

Permalink
Fix cython flag to use c++17 (rapidsai#8243)
Browse files Browse the repository at this point in the history
This PR changes cython to compile with c++17

Authors:
  - GALI PREM SAGAR (https://github.com/galipremsagar)

Approvers:
  - Keith Kraus (https://github.com/kkraus14)

URL: rapidsai#8243
  • Loading branch information
galipremsagar authored May 14, 2021
1 parent c681211 commit d206755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/cudf/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def run(self):
),
libraries=["cudart", "cudf"] + pa.get_libraries() + ["arrow_cuda"],
language="c++",
extra_compile_args=["-std=c++14"],
extra_compile_args=["-std=c++17"],
)
]

Expand Down
2 changes: 1 addition & 1 deletion python/cudf_kafka/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
library_dirs=([get_python_lib(), os.path.join(os.sys.prefix, "lib")]),
libraries=["cudf", "cudf_kafka"],
language="c++",
extra_compile_args=["-std=c++14"],
extra_compile_args=["-std=c++17"],
)
]

Expand Down

0 comments on commit d206755

Please sign in to comment.