From 19d566ebc5c9b0f99620226537c7f0fba1960333 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Mon, 25 Mar 2024 22:06:44 +0100 Subject: darwin: fix linker warning when building dynamic library Trying to fix all linker warnings that macOS comes up with, when building a dynamic library it currently emits `ld: warning: ignoring -e, not used for output type` --- src/linker.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/linker.cpp') 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) { -- cgit v1.2.3