~mozillateam/firefox/firefox-beta.mantic

« back to all changes in this revision

Viewing changes to debian/patches/ppc64el-workaround-gcc-ice.patch

  • Committer: Rico Tzschichholz
  • Date: 2024-01-12 22:29:38 UTC
  • Revision ID: ricotz@ubuntu.com-20240112222938-9kxudf8enw2l60c2
* New upstream release from the beta channel (FIREFOX_122_0b9_BUILD1)
* Update patches
  - debian/patches/armhf-clang-no-integrated-as-for-neon.patch
  - debian/patches/armhf-do-not-build-pixman-with-neon.patch
  - debian/patches/ppc64el-workaround-gcc-ice.patch
  - debian/patches/webrtc-fix-compiler-flags-for-armhf.patch
* Bump build-dep to python3 >= 3.8
  -debian/control{,.in}

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
+]
20
20
+
21
21
+# Work around https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110606
22
 
+if CONFIG['CC_TYPE'] == 'gcc' and CONFIG['CPU_ARCH'] == 'ppc64':
 
22
+if CONFIG['CC_TYPE'] == 'gcc' and CONFIG['TARGET_CPU'] == 'ppc64':
23
23
+    SOURCES += ['skia/src/sksl/SkSLInliner.cpp']
24
24
+else:
25
25
+    UNIFIED_SOURCES += ['skia/src/sksl/SkSLInliner.cpp']