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 | |
Tom Rini | 1551df3 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 8 | # On supported platforms we set the bit which causes us to trap on unaligned |
| 9 | # memory access. This is the opposite of what the compiler expects to be |
| 10 | # the default so we must pass in -mno-unaligned-access so that it is aware |
| 11 | # of our decision. |
Albert ARIBAUD | b823fd9 | 2012-10-09 09:28:15 +0000 | [diff] [blame] | 12 | PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,) |
Tom Rini | 1551df3 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 13 | PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED) |