Changeset 211369 in webkit


Ignore:
Timestamp:
Jan 30, 2017 9:09:06 AM (7 years ago)
Author:
clopez@igalia.com
Message:

[GTK] pixman fails to compile on Raspberry Pi (GCC crash)
https://bugs.webkit.org/show_bug.cgi?id=167411

Reviewed by Michael Catanzaro.

Disable the ARM iwMMXt fast path for pixman, because it triggers
a GCC bug on the RPi with Raspbian/PIXEL causing a build failure.

  • gtk/jhbuild.modules:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r211363 r211369  
     12017-01-30  Carlos Alberto Lopez Perez  <clopez@igalia.com>
     2
     3        [GTK] pixman fails to compile on Raspberry Pi (GCC crash)
     4        https://bugs.webkit.org/show_bug.cgi?id=167411
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        Disable the ARM iwMMXt fast path for pixman, because it triggers
     9        a GCC bug on the RPi with Raspbian/PIXEL causing a build failure.
     10
     11        * gtk/jhbuild.modules:
     12
    1132017-01-30  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Tools/gtk/jhbuild.modules

    r210234 r211369  
    102102              the build. This workaround can be removed once the original bug is fixed.
    103103              Details can be found here: https://bugs.webkit.org/show_bug.cgi?id=151441 -->
     104  <!-- FIXME: Pixman 0.32.6 ARM iwMMXt fast path isn't buildable with GCC 4.9 and
     105              ARM traditional instruction set. It causes a build failure on Raspbian.
     106              This workaround can be removed once we raise the minimum GCC version
     107              for WebKitGTK+ above 4.9 -->
    104108  <autotools id="pixman" autogen-sh="configure"
    105              autogenargs="--enable-gtk=no --disable-mmx">
     109             autogenargs="--enable-gtk=no --disable-mmx --disable-arm-iwmmxt">
    106110    <branch module="releases/pixman-0.32.6.tar.gz" version="0.32.6"
    107111            repo="cairographics.org"
Note: See TracChangeset for help on using the changeset viewer.