diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 18:23:01 +0100 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2011-01-24 19:43:52 +0100 |
commit | eee119de6a2bd0487e91daf69e7962351e2a3c9c (patch) | |
tree | e0e3bbe6d234e30216a83b65abafadf9f4df75f3 /Makefile | |
parent | 965df7faefabdd5f571b5eb46d45470223c91e12 (diff) |
Dummy software compiles; fixed a few linking issues. Also, most of the kernel syscalls are missing.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |