aboutsummaryrefslogtreecommitdiff
path: root/src/linker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/linker.cpp')
-rw-r--r--src/linker.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/linker.cpp b/src/linker.cpp
index 63987f9e8..0e3169b22 100644
--- a/src/linker.cpp
+++ b/src/linker.cpp
@@ -508,8 +508,10 @@ gb_internal i32 linker_stage(LinkerData *gen) {
link_settings = gb_string_append_fmt(link_settings, "-mmacosx-version-min=%.*s ", LIT(build_context.minimum_os_version_string));
}
- // This points the linker to where the entry point is
- link_settings = gb_string_appendc(link_settings, "-e _main ");
+ if (build_context.build_mode != BuildMode_DynamicLibrary) {
+ // This points the linker to where the entry point is
+ link_settings = gb_string_appendc(link_settings, "-e _main ");
+ }
}
if (!build_context.no_crt) {