aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 18:22:50 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 18:22:50 -0400
commit093338eb5227aa77b3adfeb66a89a0887f4055a4 (patch)
treeb918bee3cf23bd8bc1bd02559239cac0cdc89627
parent54103cdf6b4739616cd39dd81734a2ea61e84b82 (diff)
Fix ldflags
-rw-r--r--src/tomo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tomo.c b/src/tomo.c
index 4de70092..dbfb1fa5 100644
--- a/src/tomo.c
+++ b/src/tomo.c
@@ -176,7 +176,7 @@ int main(int argc, char *argv[])
#ifdef __APPLE__
cflags = Texts(cflags, Text(" -I/opt/homebrew/include"));
- ldflags = Texts(cflags, Text(" -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib"));
+ ldflags = Texts(ldflags, Text(" -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib"));
#endif
if (show_codegen.length > 0 && Text$equal_values(show_codegen, Text("pretty")))