diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-22 15:13:03 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-07-25 12:06:30 +0100 |
commit | d74176473ae8672856c94d91d2058d3fd3bdab29 (patch) | |
tree | 0edb534b9ab714472640cdbaf68cdbc4201de5a4 /meta/conf/machine/include/tune-iwmmxt.inc | |
parent | 039a2d006b7349822509ae612f41e24b12b631a6 (diff) | |
download | poky-d74176473ae8672856c94d91d2058d3fd3bdab29.tar.gz |
conf/machine/include: Set TUNE_CCARGS instead of TARGET_CC_ARCH
Since we're updating the tune file format, it makes sense to abstract
the compiler tune arguments at this point too. This means that should
these need to be overridden at any point, the original values can
still be obtained in a similar manner to the other TUNE* variables.
Whilst this isn't strictly necessary for any current need, its likely
good practise to standardise this behaviour.
(From OE-Core rev: 3a3c69a1bc3cf0b6f6a3b13d86c12ed21798d48e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/tune-iwmmxt.inc')
-rw-r--r-- | meta/conf/machine/include/tune-iwmmxt.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-iwmmxt.inc b/meta/conf/machine/include/tune-iwmmxt.inc index 68e118a61b..236cede988 100644 --- a/meta/conf/machine/include/tune-iwmmxt.inc +++ b/meta/conf/machine/include/tune-iwmmxt.inc | |||
@@ -2,7 +2,7 @@ TUNE_ARCH = "arm" | |||
2 | 2 | ||
3 | # Configurations for the Intel PXA27x Appications Processor Family. | 3 | # Configurations for the Intel PXA27x Appications Processor Family. |
4 | # Please use tune-xscale for PXA255/PXA26x based processors. | 4 | # Please use tune-xscale for PXA255/PXA26x based processors. |
5 | TARGET_CC_ARCH = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" | 5 | TUNE_CCARGS = "-march=iwmmxt -mcpu=iwmmxt -mtune=iwmmxt" |
6 | PACKAGE_EXTRA_ARCHS = "arm armv4 armv4t armv5te iwmmxt" | 6 | PACKAGE_EXTRA_ARCHS = "arm armv4 armv4t armv5te iwmmxt" |
7 | TUNE_PKGARCH = "iwmmxt" | 7 | TUNE_PKGARCH = "iwmmxt" |
8 | 8 | ||