From 6b582be8767eac32278561ec721c57a3c87e5bc1 Mon Sep 17 00:00:00 2001 From: Bahadir Balban Date: Mon, 21 Sep 2009 20:04:07 +0300 Subject: [PATCH] Fixed bare container linking issue on libgcc not finding definition of `raise' --- conts/test/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conts/test/SConstruct b/conts/test/SConstruct index c8a133f..6d80cb5 100644 --- a/conts/test/SConstruct +++ b/conts/test/SConstruct @@ -42,7 +42,7 @@ env = Environment(CC = 'arm-none-linux-gnueabi-gcc', ASFLAGS = ['-D__ASSEMBLY__'], \ PROGSUFFIX = '.elf', # The suffix to use for final executable\ ENV = {'PATH' : os.environ['PATH']}, # Inherit shell path\ - LIBS = ['gcc', 'libl4', 'c-userspace', 'gcc'], # libgcc.a - This is required for division routines. + LIBS = ['gcc', 'libl4', 'c-userspace', 'gcc', 'c-userspace'], # libgcc.a - This is required for division routines. CPPPATH = ["#include", KERNEL_INCLUDE, LIBL4_INCLUDE, LIBC_INCLUDE], LIBPATH = [LIBL4_LIBPATH, LIBC_LIBPATH], CPPFLAGS = '-include l4/config.h -include l4/macros.h -include l4/types.h')