diff options
author | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-11-18 15:38:46 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-12-02 15:59:47 +1100 |
commit | 04678f9f7fc250d8f32f42f03bf4f8872f7ef6da (patch) | |
tree | c99850177c41bf75d9227f3c7636a3c52d08acf5 | |
parent | 32fa1ca460c5cfed63c29c4eefc10cdb2aac3962 (diff) | |
download | skiboot-04678f9f7fc250d8f32f42f03bf4f8872f7ef6da.zip skiboot-04678f9f7fc250d8f32f42f03bf4f8872f7ef6da.tar.gz skiboot-04678f9f7fc250d8f32f42f03bf4f8872f7ef6da.tar.bz2 |
hello_world: don't link with libgcc
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | test/hello_world/Makefile.check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/hello_world/Makefile.check b/test/hello_world/Makefile.check index 5b330ed..37b0282 100644 --- a/test/hello_world/Makefile.check +++ b/test/hello_world/Makefile.check @@ -10,7 +10,7 @@ $(HELLO_WORLD_TEST:%=%-check) : %-check: % skiboot.lid test/hello_world/hello_kernel/hello_kernel.o: test/hello_world/hello_kernel/hello_kernel.S test/hello_world/hello_kernel/hello_kernel.ld $(call Q,CC, $(CC) -m64 -c -MMD -o $@ $< ,$@) -hello_kernel_LDFLAGS=-m64 -Wl,--build-id=none -T test/hello_world/hello_kernel/hello_kernel.ld -ffreestanding -nostdlib -Ttext=0x0 -lgcc +hello_kernel_LDFLAGS=-m64 -Wl,--build-id=none -T test/hello_world/hello_kernel/hello_kernel.ld -ffreestanding -nostdlib -Ttext=0x0 -include $(wildcard test/hello_world/hello_kernel/*.d) |