summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 18:23:01 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 19:43:52 +0100
commiteee119de6a2bd0487e91daf69e7962351e2a3c9c (patch)
treee0e3bbe6d234e30216a83b65abafadf9f4df75f3 /Makefile
parent965df7faefabdd5f571b5eb46d45470223c91e12 (diff)
Dummy software compiles; fixed a few linking issues. Also, most of the kernel syscalls are missing.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8de95f8..d875646 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
TARGET = demo.bin
-LIBS = FreeRTOS/libFreeRTOS.a arch/libarch.a -lc os/libos.a
+LIBS = -Wl,--start-group -lc FreeRTOS/libFreeRTOS.a arch/libarch.a os/libos.a -Wl,--end-group
export ROOTDIR = $(CURDIR)