Merge pull request #556 from oskarnp/issue-555

Fix #555
This commit is contained in:
Mikkel Hjortshøj
2020-02-05 21:03:36 +01:00
committed by GitHub
+2 -2
View File
@@ -1504,11 +1504,11 @@ int main(int arg_count, char const **arg_ptr) {
// Shared libraries are .dylib on MacOS and .so on Linux. // Shared libraries are .dylib on MacOS and .so on Linux.
#if defined(GB_SYSTEM_OSX) #if defined(GB_SYSTEM_OSX)
output_ext = STR_LIT(".dylib"); output_ext = STR_LIT(".dylib");
link_settings = "-dylib -dynamic";
#else #else
output_ext = STR_LIT(".so"); output_ext = STR_LIT(".so");
link_settings = "-shared";
#endif #endif
link_settings = "-shared";
} else { } else {
// TODO: Do I need anything here? // TODO: Do I need anything here?
link_settings = ""; link_settings = "";