diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2021-08-06 16:00:28 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-12 06:26:16 +0100 |
commit | 50cbb9f0a43d16fbca4da4f7d371069c038ad6a7 (patch) | |
tree | 0f7fd19b712fe004b1fd1ce237328e5cf06600b2 /meta/recipes-graphics | |
parent | 52cd4ae51aa2dd692504545dc56d9323a4b7a928 (diff) | |
download | poky-50cbb9f0a43d16fbca4da4f7d371069c038ad6a7.tar.gz |
pixman: re-disable iwmmxt
Commit dd9c3d042aa5c2ae0fd80b558ec7e9c793ff36f0 dropped the iwmmxt
disable as part of the meson conversion and said: "we can add this
back again if it fails." It does.
| cc1: warning: switch '-mcpu=arm1176jz-s' conflicts with switch '-march=iwmmxt2'
| FAILED: pixman/libpixman-1.so.0.40.0
| lto1: fatal error: target specific builtin not available
| compilation terminated.
(From OE-Core rev: afa713033a7fc9b7c4ac3d703ea9218b4d775def)
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: Ia1278d18543493a3f9eace6c2dd2f84701b9c2b1
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb b/meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb index 5a3bb22ec3..00dd68006f 100644 --- a/meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb +++ b/meta/recipes-graphics/xorg-lib/pixman_0.40.0.bb | |||
@@ -31,5 +31,7 @@ EXTRA_OEMESON = "-Dgtk=disabled -Dlibpng=disabled" | |||
31 | # ld: pixman/libpixman-mmx.a(pixman-mmx.c.o): | 31 | # ld: pixman/libpixman-mmx.a(pixman-mmx.c.o): |
32 | # linking mips:loongson_2f module with previous mips:isa64 modules | 32 | # linking mips:loongson_2f module with previous mips:isa64 modules |
33 | EXTRA_OEMESON += "-Dloongson-mmi=disabled" | 33 | EXTRA_OEMESON += "-Dloongson-mmi=disabled" |
34 | # disable iwmmxt due to compile fails on most arm platforms. | ||
35 | EXTRA_OEMESON += "-Diwmmxt=disabled" | ||
34 | 36 | ||
35 | BBCLASSEXTEND = "native nativesdk" | 37 | BBCLASSEXTEND = "native nativesdk" |