blob: e398f979823dd1f87c57a7d68089103c45f5f4c7 [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
Masahiro Yamadaf0ac9e02014-02-28 14:33:30 +09008ifeq ($(CROSS_COMPILE),)
9CROSS_COMPILE := ppc_8xx-
10endif
Mike Frysinger8378ba42009-06-14 23:33:14 -040011
Wolfgang Denk33a57342011-02-04 14:25:17 +010012CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000
Haiying Wang39358732011-02-22 16:38:05 -050013LDFLAGS_FINAL += --gc-sections
Masahiro Yamada05733592013-11-26 10:53:58 +090014PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections \
15 -meabi
16PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__ -ffixed-r2
Nobuhiro Iwamatsub859b8c2011-01-06 10:23:54 +090017PLATFORM_LDFLAGS += -n
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090018
Simon Glassfa6945f2013-03-11 06:50:01 +000019# Support generic board on PPC
20__HAVE_ARCH_GENERIC_BOARD := y
21
Shinya Kuribayashi686d44d2008-08-31 05:37:04 +090022#
23# When cross-compiling on NetBSD, we have to define __PPC__ or else we
24# will pick up a va_list declaration that is incompatible with the
25# actual argument lists emitted by the compiler.
26#
27# [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3]
28
29ifeq ($(CROSS_COMPILE),powerpc-netbsd-)
30PLATFORM_CPPFLAGS+= -D__PPC__
31endif
32ifeq ($(CROSS_COMPILE),powerpc-openbsd-)
33PLATFORM_CPPFLAGS+= -D__PPC__
34endif
Scott Wood146f5062012-09-20 19:10:01 -050035
36# Only test once
37ifneq ($(CONFIG_SPL_BUILD),y)
38ALL-y += checkgcc4
39endif