diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-14 23:33:14 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-19 21:36:11 +0200 |
commit | 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460 (patch) | |
tree | 64b90b82240da1bfa1c99b7979d6f3a4673751bd /nios2_config.mk | |
parent | 60a3f404acbf8238a3138fe1f80a6bac75da4582 (diff) | |
download | u-boot-1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460.zip u-boot-1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460.tar.gz u-boot-1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460.tar.bz2 |
push CROSS_COMPILE out to $(ARCH)_config.mk
Each arch should handle setting a proper default CROSS_COMPILE value in
their own config.mk file rather than having to maintain a large ugly list
in the Makefile. By using conditional assignment, we don't have to worry
about the variable already being set (env/cmdline/etc...).
The common config.mk file takes care of exporting CROSS_COMPILE already,
and while a few variables (toolchain ones) utilize CROSS_COMPILE before
including the arch config.mk, they do so with deferred assignment.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'nios2_config.mk')
-rw-r--r-- | nios2_config.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nios2_config.mk b/nios2_config.mk index 3f23b56..59931c2 100644 --- a/nios2_config.mk +++ b/nios2_config.mk @@ -22,5 +22,7 @@ # MA 02111-1307 USA # +CROSS_COMPILE ?= nios2-elf- + PLATFORM_CPPFLAGS += -DCONFIG_NIOS2 -D__NIOS2__ PLATFORM_CPPFLAGS += -ffixed-r15 -G0 |