Questioning whether MacOS libraries should be .dylib or .so

This commit is contained in:
Zac Pierson
2017-02-11 01:10:03 -06:00
parent afac95e092
commit 99c663d9f3
+1
View File
@@ -401,6 +401,7 @@ int main(int argc, char **argv) {
char *linker;
if (build_context.is_dll) {
// Shared libraries are .dylib on MacOS and .so on Linux.
// TODO(zangent): Is that statement entirely truthful?
#if defined(GB_SYSTEM_OSX)
output_ext = ".dylib";
#else