Skip to content

Commit

Permalink
Fixed NVIDIA compiler arguments on build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 10, 2024
1 parent f22f92b commit c3275aa
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@

gpp_command += cpp_files + ['-o', OUTPUT_EXECUTABLE]
nvcc_command = [
'nvcc', '-Iinclude',
'-Xcompiler /std:c++17'
'nvcc', '-Iinclude'
] + cpp_files + ['-o', OUTPUT_EXECUTABLE + '-cuda']

os.makedirs(OUT_DIR, exist_ok=True)
Expand Down

0 comments on commit c3275aa

Please sign in to comment.