blob: e6bb9357292b5374c5fee314227a88c66585c810 [file] [log] [blame]
wdenk39f0e5f2002-08-14 20:30:46 +00001#
Wolfgang Denkfa11dbe2010-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 Denk1a459662013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk39f0e5f2002-08-14 20:30:46 +00006#
7
Mike Frysinger1ea6bcd2009-06-14 23:33:14 -04008CROSS_COMPILE ?= ppc_8xx-
9
Wolfgang Denk8ae86b72011-02-04 14:25:17 +010010CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
Haiying Wang6dc1eceb2011-02-22 16:38:05 -050011LDFLAGS_FINAL += --gc-sections
Joakim Tjernlund33ee4c92010-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 Iwamatsu8aba9dc2011-01-06 10:23:54 +090014PLATFORM_LDFLAGS += -n
Shinya Kuribayashi6b971c72008-08-31 05:37:04 +090015
Simon Glass660c60c2013-03-11 06:50:01 +000016# Support generic board on PPC
17__HAVE_ARCH_GENERIC_BOARD := y
18
Shinya Kuribayashi6b971c72008-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 Wood6ec63f42012-09-20 19:10:01 -050032
33# Only test once
34ifneq ($(CONFIG_SPL_BUILD),y)
35ALL-y += checkgcc4
36endif