diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-08-12 11:10:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-17 10:35:42 +0100 |
commit | cae5c7444bfacb2baadb0d11961d861058cd4ac0 (patch) | |
tree | 15f1c4e98f817b32be32ab206cd3bbadfedfbd2f /meta/recipes-support/gmp/gmp-6.1.1 | |
parent | a56f14e5fcc3e7db1746be862533a7fe337c8c15 (diff) | |
download | poky-cae5c7444bfacb2baadb0d11961d861058cd4ac0.tar.gz |
gmp: Fix wrong detection of -march flag
Configure detects -march flag based upon target
triplet, it wrongly passes -march=armv4 for all
arm, this is unearthed when compiling with clang
since it errors out with flags like
/tmp/kraj01/a-0c2038.s:27: Error: selected processor does not support `bx r0' in ARM mode
since it does not pass --fix-v4bx along with
-march=armv4, which does not happen with gcc
toolchain since this flag is passed impicitly hence
this error was indetected
Fixed thusly
(From OE-Core rev: 51caeccfc5b18b59deac5005e0059a414cbbed32)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gmp/gmp-6.1.1')
-rw-r--r-- | meta/recipes-support/gmp/gmp-6.1.1/0001-confiure.ac-Believe-the-cflags-from-environment.patch | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/meta/recipes-support/gmp/gmp-6.1.1/0001-confiure.ac-Believe-the-cflags-from-environment.patch b/meta/recipes-support/gmp/gmp-6.1.1/0001-confiure.ac-Believe-the-cflags-from-environment.patch new file mode 100644 index 0000000000..665367658b --- /dev/null +++ b/meta/recipes-support/gmp/gmp-6.1.1/0001-confiure.ac-Believe-the-cflags-from-environment.patch | |||
@@ -0,0 +1,52 @@ | |||
1 | From ae1a4c37417a3bbbf8ea1cab198982b0cad47e29 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 12 Aug 2016 17:08:13 +0000 | ||
4 | Subject: [PATCH] confiure.ac: Believe the cflags from environment | ||
5 | |||
6 | In some toolchains e.g. OpenEmbedded -march options | ||
7 | are passed on compiler cmdline, it does not use | ||
8 | the expected target triplets to make these decision | ||
9 | during configure. | ||
10 | |||
11 | Secondly, dont set armv4 for march when no selection | ||
12 | is made, since it is passed from cmdline | ||
13 | |||
14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
15 | --- | ||
16 | Upstream-Status: Inappropriate[OE-Specific] | ||
17 | |||
18 | configure.ac | 11 ----------- | ||
19 | 1 file changed, 11 deletions(-) | ||
20 | |||
21 | diff --git a/configure.ac b/configure.ac | ||
22 | index 857ea3b..359e919 100644 | ||
23 | --- a/configure.ac | ||
24 | +++ b/configure.ac | ||
25 | @@ -607,15 +607,6 @@ case $host in | ||
26 | GMP_INCLUDE_MPN(arm/arm-defs.m4) | ||
27 | CALLING_CONVENTIONS_OBJS='arm32call.lo arm32check.lo' | ||
28 | |||
29 | - # This is needed for clang, which is not content with flags like -mfpu=neon | ||
30 | - # alone. | ||
31 | - case $host in | ||
32 | - *-*-*eabi) | ||
33 | - gcc_cflags_fpmode="-mfloat-abi=softfp" ;; | ||
34 | - *-*-*eabihf) | ||
35 | - gcc_cflags_fpmode="-mfloat-abi=hard" ;; | ||
36 | - esac | ||
37 | - | ||
38 | # FIXME: We make mandatory compiler options optional here. We should | ||
39 | # either enforce them, or organise to strip paths as the corresponding | ||
40 | # options fail. | ||
41 | @@ -686,8 +677,6 @@ case $host in | ||
42 | ;; | ||
43 | *) | ||
44 | path="arm" | ||
45 | - gcc_cflags_arch="-march=armv4" | ||
46 | - GMP_DEFINE_RAW(["define(<NOTHUMB>,1)"]) | ||
47 | ;; | ||
48 | esac | ||
49 | ;; | ||
50 | -- | ||
51 | 1.9.1 | ||
52 | |||