From 2bbacf89fea9f5613fd884b57809070da5b8c925 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Tue, 29 Apr 2008 06:19:32 +0000 Subject: Make sure the linker considers crt0*.o before all files specified on the command line by using STARTUP() instead of INPUT() in the .lds. Using INPUT() makes the linker process crt0*.o after all files specified on the command line, making linking fail if there are librockbox.a members which are only referenced by crt0*.o. Remove the hackaround that was needed for building the gigabeat S bootloader before (aka UIE() problem). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17289 a1c6a512-1295-4272-9138-f99709370657 --- firmware/target/sh/archos/app.lds | 2 +- firmware/target/sh/archos/boot.lds | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'firmware/target/sh') diff --git a/firmware/target/sh/archos/app.lds b/firmware/target/sh/archos/app.lds index 94cb437706..02ed6bef77 100644 --- a/firmware/target/sh/archos/app.lds +++ b/firmware/target/sh/archos/app.lds @@ -3,7 +3,7 @@ ENTRY(start) OUTPUT_FORMAT(elf32-sh) -INPUT(target/sh/crt0.o) +STARTUP(target/sh/crt0.o) #define PLUGINSIZE PLUGIN_BUFFER_SIZE #define CODECSIZE CODEC_SIZE diff --git a/firmware/target/sh/archos/boot.lds b/firmware/target/sh/archos/boot.lds index 8002f6e87f..b3c2c90a6c 100644 --- a/firmware/target/sh/archos/boot.lds +++ b/firmware/target/sh/archos/boot.lds @@ -2,7 +2,7 @@ ENTRY(start) OUTPUT_FORMAT(elf32-sh) -INPUT(target/sh/crt0.o) +STARTUP(target/sh/crt0.o) #define DRAMSIZE (MEMORYSIZE * 0x100000) -- cgit