summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-11-21 22:21:37 -0600
committerAlejandro Soto <alejandro@34project.org>2023-11-21 22:21:41 -0600
commit3f5ec7003075eb78e7e2a7b179cbcd3a6c9e294d (patch)
tree45e5aeb39b02198e92eab7ed5a167289d31a02aa /Makefile
parentb943b9970564be0e4e8782b0f748912339e1009a (diff)
demo: implement float16 support
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8574ec..a11abbe 100644
--- a/Makefile
+++ b/Makefile
@@ -158,7 +158,7 @@ $(OBJ_DIR)/%.bin: $(SIM_OBJ_DIR)/%
$(DEMO_OBJ_DIR)/demo: $(DEMO_DIR)/link.ld $(patsubst $(DEMO_DIR)/%,$(DEMO_OBJ_DIR)/%.o,\
$(basename $(wildcard $(DEMO_DIR)/*.c) $(wildcard $(DEMO_DIR)/*.S)))
- $(CROSS_CC) $(CROSS_LDFLAGS) -o $@ -g -nostartfiles -nostdlib -T $^
+ $(CROSS_CC) $(CROSS_LDFLAGS) -o $@ -g -nostartfiles -nostdlib -T $^ -lgcc
$(DEMO_OBJ_DIR)/%.o: $(DEMO_DIR)/%.c $(wildcard $(DEMO_DIR)/*.h)
@mkdir -p $(DEMO_OBJ_DIR)