diff options
author | Ting Liu <ting.liu@freescale.com> | 2015-01-15 12:03:52 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-11 17:40:05 +0000 |
commit | f7fc59f2fdcb8d0b48fb3ca3dc867716ee9e43d9 (patch) | |
tree | c810321355a112bbcbf53132deb538a6d069e726 /meta/recipes-devtools/valgrind | |
parent | f70b8b393de17d6a24b838b5adc644272599af16 (diff) | |
download | poky-f7fc59f2fdcb8d0b48fb3ca3dc867716ee9e43d9.tar.gz |
valgrind: build with altivec only if it supported
(From OE-Core rev: 2471f9b32a96bcb64a5a04d53456818cad57befe)
Signed-off-by: Ting Liu <ting.liu@freescale.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/valgrind')
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind/pass-maltivec-only-if-it-supported.patch | 68 | ||||
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.9.0.bb | 1 |
2 files changed, 69 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind/pass-maltivec-only-if-it-supported.patch b/meta/recipes-devtools/valgrind/valgrind/pass-maltivec-only-if-it-supported.patch new file mode 100644 index 0000000000..12ad4c3f90 --- /dev/null +++ b/meta/recipes-devtools/valgrind/valgrind/pass-maltivec-only-if-it-supported.patch | |||
@@ -0,0 +1,68 @@ | |||
1 | Upstream-status: Backport | ||
2 | |||
3 | r14566 | florian | 2014-09-24 17:02:54 -0500 (Wed, 24 Sep 2014) | 4 lines | ||
4 | |||
5 | The testbuckets none/tests/ppc{32,64} did not build in case the | ||
6 | toolchain did not support -maltivec -mabi=altivec. | ||
7 | This should work now. Fixes BZ #338731 | ||
8 | |||
9 | Index: none/tests/ppc32/Makefile.am | ||
10 | =================================================================== | ||
11 | --- a/none/tests/ppc32/Makefile.am (revision 14565) | ||
12 | +++ b/none/tests/ppc32/Makefile.am (revision 14566) | ||
13 | @@ -72,8 +72,12 @@ | ||
14 | allexec_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_NONNULL@ | ||
15 | |||
16 | if HAS_ALTIVEC | ||
17 | +BUILD_FLAG_ALTIVEC = -maltivec | ||
18 | +BUILD_FLAG_ABI_ALTIVEC = -mabi=altivec | ||
19 | ALTIVEC_FLAG = -DHAS_ALTIVEC | ||
20 | else | ||
21 | +BUILD_FLAG_ALTIVEC = | ||
22 | +BUILD_FLAG_ABI_ALTIVEC = | ||
23 | ALTIVEC_FLAG = | ||
24 | endif | ||
25 | |||
26 | @@ -101,11 +105,12 @@ | ||
27 | ISA_2_07_FLAG = | ||
28 | endif | ||
29 | |||
30 | -jm_insns_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames -maltivec \ | ||
31 | - @FLAG_M32@ $(ALTIVEC_FLAG) | ||
32 | +jm_insns_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames \ | ||
33 | + @FLAG_M32@ $(ALTIVEC_FLAG) $(BUILD_FLAG_ALTIVEC) | ||
34 | |||
35 | -testVMX_CFLAGS = $(AM_CFLAGS) -O -g -Wall -maltivec -mabi=altivec -DALTIVEC \ | ||
36 | - -DGCC_COMPILER @FLAG_M32@ | ||
37 | +testVMX_CFLAGS = $(AM_CFLAGS) -O -g -Wall -DALTIVEC \ | ||
38 | + -DGCC_COMPILER @FLAG_M32@ $(BUILD_FLAG_ALTIVEC) \ | ||
39 | + $(BUILD_FLAG_ABI_ALTIVEC) | ||
40 | |||
41 | test_isa_2_06_part1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames $(VSX_FLAG) \ | ||
42 | @FLAG_M32@ $(ALTIVEC_FLAG) $(BUILD_FLAG_VSX) | ||
43 | Index: none/tests/ppc64/Makefile.am | ||
44 | =================================================================== | ||
45 | --- a/none/tests/ppc64/Makefile.am (revision 14565) | ||
46 | +++ b/none/tests/ppc64/Makefile.am (revision 14566) | ||
47 | @@ -50,8 +50,10 @@ | ||
48 | allexec_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_NONNULL@ | ||
49 | |||
50 | if HAS_ALTIVEC | ||
51 | +BUILD_FLAG_ALTIVEC = -maltivec | ||
52 | ALTIVEC_FLAG = -DHAS_ALTIVEC | ||
53 | else | ||
54 | +BUILD_FLAG_ALTIVEC = | ||
55 | ALTIVEC_FLAG = | ||
56 | endif | ||
57 | |||
58 | @@ -88,8 +90,8 @@ | ||
59 | test_isa_2_06_part3_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames $(VSX_FLAG) \ | ||
60 | @FLAG_M64@ $(ALTIVEC_FLAG) $(BUILD_FLAG_VSX) | ||
61 | |||
62 | -jm_insns_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames -maltivec \ | ||
63 | - @FLAG_M64@ $(ALTIVEC_FLAG) | ||
64 | +jm_insns_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames \ | ||
65 | + @FLAG_M64@ $(ALTIVEC_FLAG) $(BUILD_FLAG_ALTIVEC) | ||
66 | |||
67 | test_dfp1_CFLAGS = $(AM_CFLAGS) -Winline -Wall -O -g -mregnames $(DFP_FLAG) \ | ||
68 | @FLAG_M64@ $(BUILD_FLAGS_DFP) | ||
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb index c415e773a8..eea81a2405 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.9.0.bb | |||
@@ -20,6 +20,7 @@ SRC_URI = "http://www.valgrind.org/downloads/valgrind-${PV}.tar.bz2 \ | |||
20 | file://remove-arm-variant-specific.patch \ | 20 | file://remove-arm-variant-specific.patch \ |
21 | file://remove-ppc-tests-failing-build.patch \ | 21 | file://remove-ppc-tests-failing-build.patch \ |
22 | file://add-ptest.patch \ | 22 | file://add-ptest.patch \ |
23 | file://pass-maltivec-only-if-it-supported.patch \ | ||
23 | file://run-ptest \ | 24 | file://run-ptest \ |
24 | " | 25 | " |
25 | 26 | ||