Dirk Behme | 0b02b18 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2002 |
Detlev Zundel | 792a09e | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 3 | # Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
Dirk Behme | 0b02b18 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
Dirk Behme | 0b02b18 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 6 | # |
Dirk Behme | 0b02b18 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 7 | |
Aneesh V | f61faeb | 2012-03-08 07:20:20 +0000 | [diff] [blame] | 8 | # If armv7-a is not supported by GCC fall-back to armv5, which is |
| 9 | # supported by more tool-chains |
| 10 | PF_CPPFLAGS_ARMV7 := $(call cc-option, -march=armv7-a, -march=armv5) |
| 11 | PLATFORM_CPPFLAGS += $(PF_CPPFLAGS_ARMV7) |
| 12 | |
Tom Rini | 1551df3 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 13 | # On supported platforms we set the bit which causes us to trap on unaligned |
| 14 | # memory access. This is the opposite of what the compiler expects to be |
| 15 | # the default so we must pass in -mno-unaligned-access so that it is aware |
| 16 | # of our decision. |
Albert ARIBAUD | b823fd9 | 2012-10-09 09:28:15 +0000 | [diff] [blame] | 17 | PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,) |
Tom Rini | 1551df3 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 18 | PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED) |