wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | fa11dbe | 2010-11-21 16:34:05 +0100 | [diff] [blame] | 2 | # (C) Copyright 2000-2010 |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
| 10 | # published by the Free Software Foundation; either version 2 of |
| 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
| 23 | |
Mike Frysinger | 1ea6bcd | 2009-06-14 23:33:14 -0400 | [diff] [blame] | 24 | CROSS_COMPILE ?= ppc_8xx- |
| 25 | |
Wolfgang Denk | 8ae86b7 | 2011-02-04 14:25:17 +0100 | [diff] [blame] | 26 | CONFIG_STANDALONE_LOAD_ADDR ?= 0x40000 |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 27 | LDFLAGS_FINAL += --gc-sections |
Joakim Tjernlund | 33ee4c9 | 2010-12-06 14:36:46 +0100 | [diff] [blame] | 28 | PLATFORM_RELFLAGS += -fpic -mrelocatable -ffunction-sections -fdata-sections |
wdenk | 39f0e5f | 2002-08-14 20:30:46 +0000 | [diff] [blame] | 29 | PLATFORM_CPPFLAGS += -DCONFIG_PPC -D__powerpc__ |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 30 | PLATFORM_LDFLAGS += -n |
Shinya Kuribayashi | 6b971c7 | 2008-08-31 05:37:04 +0900 | [diff] [blame] | 31 | |
Simon Glass | 660c60c | 2013-03-11 06:50:01 +0000 | [diff] [blame] | 32 | # Support generic board on PPC |
| 33 | __HAVE_ARCH_GENERIC_BOARD := y |
| 34 | |
Shinya Kuribayashi | 6b971c7 | 2008-08-31 05:37:04 +0900 | [diff] [blame] | 35 | # |
| 36 | # When cross-compiling on NetBSD, we have to define __PPC__ or else we |
| 37 | # will pick up a va_list declaration that is incompatible with the |
| 38 | # actual argument lists emitted by the compiler. |
| 39 | # |
| 40 | # [Tested on NetBSD/i386 1.5 + cross-powerpc-netbsd-1.3] |
| 41 | |
| 42 | ifeq ($(CROSS_COMPILE),powerpc-netbsd-) |
| 43 | PLATFORM_CPPFLAGS+= -D__PPC__ |
| 44 | endif |
| 45 | ifeq ($(CROSS_COMPILE),powerpc-openbsd-) |
| 46 | PLATFORM_CPPFLAGS+= -D__PPC__ |
| 47 | endif |
Scott Wood | 6ec63f4 | 2012-09-20 19:10:01 -0500 | [diff] [blame] | 48 | |
| 49 | # Only test once |
| 50 | ifneq ($(CONFIG_SPL_BUILD),y) |
| 51 | ALL-y += checkgcc4 |
| 52 | endif |