From faf002c0ab8bf013f891ec8ae09e3c0cc2bfcb6f Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Tue, 19 May 2020 10:32:33 -0400 Subject: 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 Cc: Angelo Dureghello Cc: Michal Simek Cc: Rick Chen Cc: Thomas Chou Cc: Wolfgang Denk Cc: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Simon Glass Cc: Bin Meng Cc: Max Filippov Signed-off-by: Tom Rini Reviewed-by: Simon Glass Acked-by: Michal Simek --- arch/x86/cpu/config.mk | 2 -- 1 file changed, 2 deletions(-) (limited to 'arch/x86/cpu') diff --git a/arch/x86/cpu/config.mk b/arch/x86/cpu/config.mk index 8f9814c0ae..d3033b4160 100644 --- a/arch/x86/cpu/config.mk +++ b/arch/x86/cpu/config.mk @@ -3,8 +3,6 @@ # (C) Copyright 2002 # Daniel Engström, Omicron Ceti AB, daniel@omicron.se. -CROSS_COMPILE ?= i386-linux- - # DO NOT MODIFY THE FOLLOWING UNLESS YOU REALLY KNOW WHAT YOU ARE DOING! LDPPFLAGS += -DRESET_SEG_START=$(CONFIG_RESET_SEG_START) LDPPFLAGS += -DRESET_VEC_LOC=$(CONFIG_RESET_VEC_LOC) -- cgit