diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-01-27 12:56:15 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-28 23:14:09 +0000 |
commit | 156a2d98600299822695d173381a9eac49e30908 (patch) | |
tree | 4db1412709e81eec1e82d8334d325d1ad53e2684 /meta/conf/machine/include/tune-ep9312.inc | |
parent | ba3aa531129186ce531c46acb68f329f6c8f376e (diff) | |
download | poky-156a2d98600299822695d173381a9eac49e30908.tar.gz |
arm-tunes: Remove -march option if mcpu is already added
tune files which inherit the arch definitions already define appropriate
-mcpu option, which is equivalent of right -march and -mtune combination
and is preferred since gcc is getting stricter and stricter with option
check semantics and can now find incompatible -march and -mcpu options
better with every release. It does internal feature consistency check
and if it finds out discrepency between what -mcpu would expand to as
compared to -march it will flag the options to be incompatible, for
naked eye it sounds wrong but gcc would translate -mcpu to a given
-march internally and it might not match to what we set in these arch
files.
The effects are quite subtle, where this can result in configure test
failing to compile due to these incompatible options and a feature
option getting disabled for a recipe for no reason.
e.g. with gcc9 which can now detect that -mcpu=cortex-a5 and
-march=armv7-a are incompatible, many features in libstdc++ ends up
disabled due to configure check failures e.g. size_t size, ptrdiff_t
sizes, which inturn results in compiling libstdc++ with unwanted
disabled features.
(From OE-Core rev: ac83d22eb5031f7fdd09d34a1a46d92fd3e39a3c)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-ep9312.inc')
-rw-r--r-- | meta/conf/machine/include/tune-ep9312.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/conf/machine/include/tune-ep9312.inc b/meta/conf/machine/include/tune-ep9312.inc index 84ca528d6d..4d92821628 100644 --- a/meta/conf/machine/include/tune-ep9312.inc +++ b/meta/conf/machine/include/tune-ep9312.inc | |||
@@ -4,6 +4,7 @@ require conf/machine/include/arm/arch-armv4.inc | |||
4 | 4 | ||
5 | TUNEVALID[ep9312] = "Enable Intel PXA27x specific processor optimizations" | 5 | TUNEVALID[ep9312] = "Enable Intel PXA27x specific processor optimizations" |
6 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ep9312', ' -march=ep9312 -mcpu=ep9312', '', d)}" | 6 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'ep9312', ' -march=ep9312 -mcpu=ep9312', '', d)}" |
7 | MACHINEOVERRIDES =. "${@bb.utils.contains('TUNE_FEATURES', 'ep9312', 'armv4:', '' ,d)}" | ||
7 | 8 | ||
8 | AVAILTUNES += "ep9312" | 9 | AVAILTUNES += "ep9312" |
9 | ARMPKGARCH_tune-ep9312 = "ep9312" | 10 | ARMPKGARCH_tune-ep9312 = "ep9312" |