Merge pull request #53 from birth-software/default-to-dynamic-linkage

Default to dynamic linkage
This commit is contained in:
David 2024-09-17 17:04:00 -06:00 committed by GitHub
commit 17687696c0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -564,11 +564,11 @@ fn void entry_point(int argc, char* argv[], char* envp[])
.debug_info = 1,
.error_on_warning = 0,
.optimization_mode = O0,
#if defined(__linux__)
.linkage = LINKAGE_STATIC,
#else
// #if defined(__linux__)
// .linkage = LINKAGE_STATIC,
// #else
.linkage = LINKAGE_DYNAMIC,
#endif
// #endif
}, envp);
break;
case COMMAND_COUNT: