summaryrefslogtreecommitdiff
path: root/nob.c
diff options
context:
space:
mode:
authorTomaki <>2026-04-14 22:45:41 +0200
committerTomaki <>2026-04-14 22:45:41 +0200
commitf81a794db3b0a7249842fbb3acf92fce30161cb1 (patch)
treedbf9995f8981e706977f5ba111a9846e0a41e2cb /nob.c
parentbe5904585f1d6c88bf3576584c32303c7d1c65ae (diff)
Introduce parser and GMP support
Diffstat (limited to 'nob.c')
-rw-r--r--nob.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/nob.c b/nob.c
index 13532e1..36a0eed 100644
--- a/nob.c
+++ b/nob.c
@@ -16,6 +16,7 @@ main(int argc, char **argv) {
cmd_append(&cmd, "cc");
cmd_append(&cmd, "-Wall", "-Wextra");
cmd_append(&cmd, "-Wno-unused-function");
+ cmd_append(&cmd, "-lgmp");
cmd_append(&cmd, "-I"EXTERNAL_FOLDER);
cmd_append(&cmd, "-o", BUILD_FOLDER"forest");
cmd_append(&cmd, SOURCE_FOLDER"forest.c");