Changeset 95184 in webkit


Ignore:
Timestamp:
Sep 15, 2011 5:25:37 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

[Chromium] Make sure that the ARM NEON files build with -marm
https://bugs.webkit.org/show_bug.cgi?id=68088

Simply adding the -marm cflag for OS=Android compiles results in it
being overridden by an -mthumb cflag later in the project generating
process. Therefore we should explicitly exclude -mthumb.

Patch by Peter Beverloo <peter@chromium.org> on 2011-09-15
Reviewed by Tony Gentilcore.

  • WebCore.gyp/WebCore.gyp:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r95177 r95184  
     12011-09-15  Peter Beverloo  <peter@chromium.org>
     2
     3        [Chromium] Make sure that the ARM NEON files build with -marm
     4        https://bugs.webkit.org/show_bug.cgi?id=68088
     5
     6        Simply adding the -marm cflag for OS=Android compiles results in it
     7        being overridden by an -mthumb cflag later in the project generating
     8        process. Therefore we should explicitly exclude -mthumb.
     9
     10        Reviewed by Tony Gentilcore.
     11
     12        * WebCore.gyp/WebCore.gyp:
     13
    1142011-09-15  Keishi Hattori  <keishi@webkit.org>
    215
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r95128 r95184  
    15731573      ],
    15741574      'conditions': [
     1575        ['OS=="android"', {
     1576          'cflags!': ['-mthumb'],
     1577          'cflags': ['-marm'],
     1578        }],
    15751579        ['OS=="linux" and target_arch=="arm"', {
    15761580          'cflags': ['-marm'],
Note: See TracChangeset for help on using the changeset viewer.