Skip to content

Commit

Permalink
Build script for different clang++ LLVM compiler on MacOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 10, 2024
1 parent 0e7d89c commit d4abce6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@
nvcc_command = ['nvcc']

if PLATFORM == 'Windows':
nvcc_command.append('-Xcompiler /std:c++17')
nvcc_command.append('-Xcompiler')
nvcc_command.append('/std:c++17')

nvcc_command.append('-Iinclude')
nvcc_command += cpp_files + ['-o', OUTPUT_EXECUTABLE + '-cuda']
Expand Down

0 comments on commit d4abce6

Please sign in to comment.