diff options
author | Tom Rini <trini@konsulko.com> | 2020-05-19 10:32:33 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-01 10:11:03 -0400 |
commit | faf002c0ab8bf013f891ec8ae09e3c0cc2bfcb6f (patch) | |
tree | 634bde30dd3eb9e6548f9e4bd25df059cd5af13a /arch/nds32 | |
parent | e2a4d24e6b1f3d30136e2dde7b6fbf35bd427b8a (diff) | |
download | u-boot-faf002c0ab8bf013f891ec8ae09e3c0cc2bfcb6f.tar.gz u-boot-faf002c0ab8bf013f891ec8ae09e3c0cc2bfcb6f.tar.bz2 u-boot-faf002c0ab8bf013f891ec8ae09e3c0cc2bfcb6f.zip |
Remove CROSS_COMPILE default from arch/*/config.mk
In order to support the compiler providing information used within
Kconfig itself we cannot have the compiler be determined by
arch/*/config.mk as we will not be able to evaluate that yet. Given
that most documentation tells people to specify CROSS_COMPILE, remove
these references.
Cc: Huan Wang <alison.wang@nxp.com>
Cc: Angelo Dureghello <angelo@sysam.it>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Rick Chen <rick@andestech.com>
Cc: Thomas Chou <thomas@wytron.com.tw>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/nds32')
-rw-r--r-- | arch/nds32/config.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/nds32/config.mk b/arch/nds32/config.mk index a1c3371ddc..c82dd69c6c 100644 --- a/arch/nds32/config.mk +++ b/arch/nds32/config.mk @@ -8,10 +8,6 @@ # Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> # -ifeq ($(CROSS_COMPILE),) -CROSS_COMPILE := nds32le-linux- -endif - CONFIG_STANDALONE_LOAD_ADDR = 0x300000 LDFLAGS_STANDALONE += -T $(srctree)/examples/standalone/nds32.lds |