diff options
| author | Wrath <wrathdoesthat@gmail.com> | 2025-10-15 10:08:44 -0400 |
|---|---|---|
| committer | Wrath <wrathdoesthat@gmail.com> | 2025-10-15 10:08:44 -0400 |
| commit | 6356cadfcc6ec6b3491bdad61621ac4dfecc91f1 (patch) | |
| tree | 5f6aa297cb0695f8dc27b7c273761a556790fdf9 /src/linker.cpp | |
| parent | 596066aa0453752f24cc2fa5087fafe2c4686536 (diff) | |
Fix orca linking path
Diffstat (limited to 'src/linker.cpp')
| -rw-r--r-- | src/linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linker.cpp b/src/linker.cpp index f1e0335d5..c2a3ee928 100644 --- a/src/linker.cpp +++ b/src/linker.cpp @@ -105,7 +105,7 @@ gb_internal i32 linker_stage(LinkerData *gen) { gb_printf_err("executing `orca sdk-path` did not produce output\n"); return 1; } - inputs = gb_string_append_fmt(inputs, " \"%s/orca-libc/lib/crt1.o\" \"%s/orca-libc/lib/libc.o\"", orca_sdk_path, orca_sdk_path); + inputs = gb_string_append_fmt(inputs, " \"%s/orca-libc/lib/crt1.o\" \"%s/orca-libc/lib/libc.a\"", orca_sdk_path, orca_sdk_path); extra_orca_flags = gb_string_append_fmt(extra_orca_flags, " -L \"%s/bin\" -lorca_wasm --export-dynamic", orca_sdk_path); } |