forked from pool/MozillaFirefox
45b6b99978
- Disable webrtc for aarch64 due to bmo#1434589 - Add patch to fix skia build on AArch64: * mozilla-fix-skia-aarch64.patch OBS-URL: https://build.opensuse.org/request/show/608990 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=663
21 lines
1.0 KiB
Diff
21 lines
1.0 KiB
Diff
--- firefox-60.0/gfx/skia/skia/src/jumper/SkJumper_stages.cpp.orig 2018-05-14 13:23:26.001095058 +0200
|
|
+++ firefox-60.0/gfx/skia/skia/src/jumper/SkJumper_stages.cpp 2018-05-14 13:24:46.851416500 +0200
|
|
@@ -666,7 +666,7 @@ SI F approx_powf(F x, F y) {
|
|
}
|
|
|
|
SI F from_half(U16 h) {
|
|
-#if defined(__aarch64__) && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds.
|
|
+#if defined(JUMPER_IS_NEON) && defined(__aarch64__) && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds.
|
|
return vcvt_f32_f16(h);
|
|
|
|
#elif defined(JUMPER_IS_HSW) || defined(JUMPER_IS_AVX512)
|
|
@@ -686,7 +686,7 @@ SI F from_half(U16 h) {
|
|
}
|
|
|
|
SI U16 to_half(F f) {
|
|
-#if defined(__aarch64__) && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds.
|
|
+#if defined(JUMPER_IS_NEON) && defined(__aarch64__) && !defined(SK_BUILD_FOR_GOOGLE3) // Temporary workaround for some Google3 builds.
|
|
return vcvt_f16_f32(f);
|
|
|
|
#elif defined(JUMPER_IS_HSW) || defined(JUMPER_IS_AVX512)
|