Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
Dirk Behme | 7d75a10 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 2 | # |
| 3 | # (C) Copyright 2002 |
Detlev Zundel | f1b3f2b | 2009-05-13 10:54:10 +0200 | [diff] [blame] | 4 | # Gary Jennejohn, DENX Software Engineering, <garyj@denx.de> |
Dirk Behme | 7d75a10 | 2008-12-14 09:47:13 +0100 | [diff] [blame] | 5 | |
Tom Rini | 958a8f8 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 6 | # On supported platforms we set the bit which causes us to trap on unaligned |
| 7 | # memory access. This is the opposite of what the compiler expects to be |
| 8 | # the default so we must pass in -mno-unaligned-access so that it is aware |
| 9 | # of our decision. |
Albert ARIBAUD | d6d4ec8 | 2012-10-09 09:28:15 +0000 | [diff] [blame] | 10 | PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,) |
Tom Rini | 958a8f8 | 2014-02-25 10:27:01 -0500 | [diff] [blame] | 11 | PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED) |