aboutsummaryrefslogtreecommitdiff
path: root/tomo.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-13 14:25:57 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-13 14:25:57 -0400
commit0ead266477dc1cf240ef2a5dc1c93ba754438f85 (patch)
tree28a14fa946815fc6cfcbdea148d0f0d61e02aadb /tomo.c
parent447f2af70a07d18941ce2650023d2afd62578382 (diff)
Compiled programs don't need to be linked against -lcord anymore
Diffstat (limited to 'tomo.c')
-rw-r--r--tomo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tomo.c b/tomo.c
index 3c5f6cdc..c92887d9 100644
--- a/tomo.c
+++ b/tomo.c
@@ -120,7 +120,7 @@ int main(int argc, char *argv[])
ldflags = CORD_all("-Wl,-rpath='$ORIGIN',-rpath='", home, "/.local/lib/tomo' -L. -L'", home, "/.local/lib/tomo'");
- ldlibs = "-lgc -lgmp -lcord -lm -ltomo";
+ ldlibs = "-lgc -lgmp -lm -ltomo";
cc = ENV_CORD("CC");
if (!cc) cc = "cc";