diff options
| author | Jeroen van Rijn <jeroen@paramythic.com> | 2019-03-15 07:37:20 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <jeroen@paramythic.com> | 2019-03-15 07:37:20 +0100 |
| commit | 61b07335d86a5f48475d496a14f23185964633ed (patch) | |
| tree | e5a2f173a26d7532b1cfad0f3a80e34eda6f779a /src/main.cpp | |
| parent | 712744ef367045f21c017137ad1856dca8814e7b (diff) | |
Fix build error on !Windows.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 83397fa48..4d5384a56 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -825,7 +825,7 @@ i32 exec_llvm_opt(String output_base) { #else // NOTE(zangent): This is separate because it seems that LLVM tools are packaged // with the Windows version, while they will be system-provided on MacOS and GNU/Linux - return system_exec_command_line_app("llvm-opt", false, + return system_exec_command_line_app("llvm-opt", "opt \"%.*s.ll\" -o \"%.*s.bc\" %.*s " "", LIT(output_base), LIT(output_base), |