ref: 309bf281c111cc05be30e4b4e2efdb416440c43d
parent: 8471698e1f90c20321f00309b24c622684c10d93
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Wed Nov 15 18:45:25 EST 2023
Make it compile.
--- a/Makefile.old
+++ b/Makefile.old
@@ -30,7 +30,7 @@
# On MINGW you might need the additional flags -Wl,--stack,50000000 to increase stack space.
$(EVAL): src/runtime/eval.c
@mkdir -p bin
- $(GCC) -Wall -Wno-deprecated-declarations -O3 src/runtime/eval.c -lm -o $(EVAL)
+ $(GCC) -Wall -Wno-deprecated-declarations -O3 src/runtime/eval.c src/runtime/comb.c -lm -o $(EVAL)
###
### Build the compiler with ghc, using standard libraries (Prelude, Data.List, etc)
--
⑨