Skip to content

Commit e569f42

Browse files
committed
Bootstrap: fix missing -ldl flag (issue #125)
1 parent 1adf722 commit e569f42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ all: ../output/c2c/c2c
88

99
c2c_bootstrap: bootstrap.c external.h
1010
@echo "---- compiling bootstrap compiler ----"
11-
@$(CC) $(CFLAGS) bootstrap.c -o c2c_bootstrap
11+
@$(CC) $(CFLAGS) bootstrap.c -o c2c_bootstrap -ldl
1212

1313
../output/c2c/c2c: c2c_bootstrap
1414
@echo "---- running (bootstrapped) c2c ----"

0 commit comments

Comments
 (0)