diff options
| author | joakin <joaquin@chimeces.com> | 2024-04-03 14:03:56 +0200 |
|---|---|---|
| committer | joakin <joaquin@chimeces.com> | 2024-04-19 13:35:53 +0200 |
| commit | 60ef4fda4dd71e5474bb2598c4e0d18c58924e99 (patch) | |
| tree | 1c9e603ad15a67d236a1ae607b0f1f56edd50159 /src/linker.cpp | |
| parent | 1b143b9fa3d0302cda639abf72c7b5db1b7c1c41 (diff) | |
Recognize dynamic library names like libraylib.so.5.0.0
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 498a96c5f..245275bd3 100644 --- a/src/linker.cpp +++ b/src/linker.cpp @@ -432,7 +432,7 @@ gb_internal i32 linker_stage(LinkerData *gen) { if (string_ends_with(lib, str_lit(".a")) || string_ends_with(lib, str_lit(".o"))) { // static libs and object files, absolute full path relative to the file in which the lib was imported from lib_str = gb_string_append_fmt(lib_str, " -l:\"%.*s\" ", LIT(lib)); - } else if (string_ends_with(lib, str_lit(".so"))) { + } else if (string_ends_with(lib, str_lit(".so")) || string_contains_string(lib, str_lit(".so."))) { // dynamic lib, relative path to executable // NOTE(vassvik): it is the user's responsibility to make sure the shared library files are visible // at runtime to the executable |