diff options
author | Simon Glass | 2011-11-21 10:49:40 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2012-03-30 07:43:37 +0200 |
commit | 7e6403a66d9a9c939ee8146436d7d652673b2995 (patch) | |
tree | 85448fc765d67dae43baa307ffe3fa8b99bfbce4 /Makefile | |
parent | 3a62d8c3a93c63183fdad1d52277bb15ac72ba79 (diff) |
Define CPUDIR for the .lds link script
Most link scripts differ only in the directory containing the start.o
file. Make this a #define to remove this last difference.
(Note that if start.o were disallowed outside the CPU start directory then
we wouldn't even need this. But that is a separate discussion.)
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -344,6 +344,7 @@ export PLATFORM_LIBS # on the fly. LDPPFLAGS += \ -include $(TOPDIR)/include/u-boot/u-boot.lds.h \ + -DCPUDIR=$(CPUDIR) \ $(shell $(LD) --version | \ sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p') |