u-boot-brain/arch/sh
Masahiro Yamada 9b6e2c363f kbuild: fix CROSS_COMPILE settings in config.mk
The syntax
  CROSS_COMIPLE ?= <cross_compiler_prefix>
does not work because config.mk is parsed after
exporting CROSS_COMPILE.

Like Linux Kernel's arch/$(ARCH)/Makefile,
we must write as follows:

  ifeq ($(CROSS_COMPILE),)
  CROSS_COMPILE := <cross_compiler_prefix>
  endif

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
2014-03-04 12:15:30 -05:00
..
cpu sh: merge compiler flag -ffixed-r13 2014-03-04 09:27:40 -05:00
include/asm sh: sh2: Remove CONFIG_SH2A definition from asm/processor.h 2014-01-09 13:22:22 +09:00
lib sh: sh2: Change CONFIG_SYS_HZ to CONFIG_SH_CMT_CLK_FREQ 2014-01-08 14:59:53 +09:00
config.mk kbuild: fix CROSS_COMPILE settings in config.mk 2014-03-04 12:15:30 -05:00