blob: f75c3bf187caecea7ba2a458744c9f72636aaef3 [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
Masahiro Yamada05733592013-11-26 10:53:58 +090012PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections \
13 -meabi
14PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__ -ffixed-r2
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +090015PLATFORM_LDFLAGS += -n
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090016
Simon Glassfa6945f2013-03-11 06:50:01 +000017# Support generic board on PPC
18__HAVE_ARCH_GENERIC_BOARD := y
19
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090020#
21# When cross-compiling on NetBSD, we have to define __PPC__ or else we
22# will pick up a va_list declaration that is incompatible with the
23# actual argument lists emitted by the compiler.
24#
25# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
26
27ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
28PLATFORM_CPPFLAGS+= -D__PPC__
29endif
30ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
31PLATFORM_CPPFLAGS+= -D__PPC__
32endif
Scott Wood146f5062012-09-20 19:10:01 -050033
34# Only test once
35ifneq ($(CONFIG_SPL_BUILD),y)
36ALL-y += checkgcc4
37endif