From 7ec830d5804337afe19413c3eaedd16583af9076 Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Tue, 29 Mar 2011 14:34:50 +0200 Subject: Fix build problems caused by "_end" -> "__bss_end__" rename Commit 44c6e65 "rename _end to __bss_end__ broke building of a large number of systems (at least all PowerPC?): libstubs.o: In function `app_startup': examples/standalone/stubs.c:197: undefined reference to `__bss_end__' The rename should not be done for the files in the examples/standalone/ directory, as these are not using the code from start.S, but do their own BSS clearing, and either use their own linker scripts or the ones provided by the compilers. Signed-off-by: Po-Yu Chuang Signed-off-by: Wolfgang Denk --- examples/standalone/sparc.lds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/standalone/sparc.lds') diff --git a/examples/standalone/sparc.lds b/examples/standalone/sparc.lds index 7f060b6d17..9733daa86b 100644 --- a/examples/standalone/sparc.lds +++ b/examples/standalone/sparc.lds @@ -57,5 +57,5 @@ SECTIONS } . = ALIGN(4); __bss_end = .; - __bss_end__ = .; + _end = .; } -- cgit v1.2.1