Skip to content

Commit

Permalink
Fixed output executable file naming for Darwin platform in build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Oct 25, 2024
1 parent d451a61 commit f9809d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
] + cpp_files

core_build_args = exe_build_args + ['-shared', '-o', OUTPUT_CORE]
exe_build_args += ['-o', OUTPUT_EXECUTABLE]
exe_build_args += ['-o', OUTPUT_EXECUTABLE + '-openmp']

lib_build_args = [
'/opt/homebrew/opt/llvm/bin/clang++', '-Iinclude',
Expand Down

0 comments on commit f9809d4

Please sign in to comment.