Changeset 112380 in webkit


Ignore:
Timestamp:
Mar 28, 2012 3:09:34 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Add support for Intel compiler on Linux QT port.
https://bugs.webkit.org/show_bug.cgi?id=81077

Patch by Kwonjin Jeong <gram@company100.net> on 2012-03-28
Reviewed by Tor Arne Vestbø.

  • qmake/mkspecs/features/default_post.prf:

Don't hide symbols when building with Intel compiler.
The symbols are needed when building QtWebKit tests.

  • qmake/mkspecs/features/unix/icc.prf:

Added to ignore icc-specific warnings.
This feature is used with command-line arguments for build-webkit script.

Location:
trunk/Tools
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r112375 r112380  
     12012-03-28  Kwonjin Jeong  <gram@company100.net>
     2
     3        Add support for Intel compiler on Linux QT port.
     4        https://bugs.webkit.org/show_bug.cgi?id=81077
     5
     6        Reviewed by Tor Arne Vestbø.
     7
     8        * qmake/mkspecs/features/default_post.prf:
     9        Don't hide symbols when building with Intel compiler.
     10        The symbols are needed when building QtWebKit tests.
     11
     12        * qmake/mkspecs/features/unix/icc.prf:
     13        Added to ignore icc-specific warnings.
     14        This feature is used with command-line arguments for build-webkit script.
     15
    1162012-03-28  Philippe Normand  <pnormand@igalia.com>
    217
  • trunk/Tools/qmake/mkspecs/features/default_post.prf

    r110272 r112380  
    136136
    137137    !plugin {
    138         !linux-g++*:contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
     138        !linux-g++*:!linux-icc*:contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
    139139        unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
    140140    }
Note: See TracChangeset for help on using the changeset viewer.