2008-12-14 08:47:13 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2002
|
2009-05-13 08:54:10 +00:00
|
|
|
# Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
|
2008-12-14 08:47:13 +00:00
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2008-12-14 08:47:13 +00:00
|
|
|
#
|
|
|
|
|
2014-02-25 15:27:01 +00:00
|
|
|
# On supported platforms we set the bit which causes us to trap on unaligned
|
|
|
|
# memory access. This is the opposite of what the compiler expects to be
|
|
|
|
# the default so we must pass in -mno-unaligned-access so that it is aware
|
|
|
|
# of our decision.
|
2012-10-09 09:28:15 +00:00
|
|
|
PF_NO_UNALIGNED := $(call cc-option, -mno-unaligned-access,)
|
2014-02-25 15:27:01 +00:00
|
|
|
PLATFORM_CPPFLAGS += $(PF_NO_UNALIGNED)
|