diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-10-12 02:00:18 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-10-12 02:00:18 -0400 |
| commit | 612b219230db3e0d9a56087f18780dffa5a163d0 (patch) | |
| tree | 699d1877c35e6b6e8b0c644f75f72de4b0bbcdf9 /src | |
| parent | 0de3de72571214c2cecc21d76121510c92192ce3 (diff) | |
Fix `-export-linked-libs-file` system lib check
Diffstat (limited to 'src')
| -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 945f0c3cf..7a41abdf8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2317,7 +2317,7 @@ gb_internal void export_linked_libraries(LinkerData *gen) { GB_ASSERT(file_path->tav.mode == Addressing_Constant && file_path->tav.value.kind == ExactValue_String); String file_path_str = file_path->tav.value.value_string; - if (string_starts_with(file_path_str, str_lit("\"system:"))) { + if (string_starts_with(file_path_str, str_lit("system:"))) { gb_fprintf(&f, "system"); } else { gb_fprintf(&f, "user"); |