blob: e6bb9357292b5374c5fee314227a88c66585c810 [file] [log] [blame]
wdenk39f0e5f2002-08-14 20:30:46 +00001#
Wolfgang Denk0f5fa872010-11-21 16:34:05 +01002# (C) Copyright 2000-2010
wdenk39f0e5f2002-08-14 20:30:46 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk39f0e5f2002-08-14 20:30:46 +00006#
7
Mike Frysinger8378ba42009-06-14 23:33:14 -04008CROSS_COMPILE ?= ppc_8xx-
9
Wolfgang Denk33a57342011-02-04 14:25:17 +010010CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
Haiying Wang39358732011-02-22 16:38:05 -050011LDFLAGS_FINAL += --gc-sections
Joakim Tjernlund703b8082010-12-06 14:36:46 +010012PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections
wdenk39f0e5f2002-08-14 20:30:46 +000013PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +090014PLATFORM_LDFLAGS += -n
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090015
Simon Glassfa6945f2013-03-11 06:50:01 +000016# Support generic board on PPC
17__HAVE_ARCH_GENERIC_BOARD := y
18
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090019#
20# When cross-compiling on NetBSD, we have to define __PPC__ or else we
21# will pick up a va_list declaration that is incompatible with the
22# actual argument lists emitted by the compiler.
23#
24# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
25
26ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
27PLATFORM_CPPFLAGS+= -D__PPC__
28endif
29ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
30PLATFORM_CPPFLAGS+= -D__PPC__
31endif
Scott Wood146f5062012-09-20 19:10:01 -050032
33# Only test once
34ifneq ($(CONFIG_SPL_BUILD),y)
35ALL-y += checkgcc4
36endif