Changeset 61473 in webkit


Ignore:
Timestamp:
Jun 19, 2010 2:09:24 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-19 Thiago Macieira <thiago.macieira@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

Add the WTF_COMPILER_INTEL for when the Intel compiler is used
for building. Usually, the Intel compiler masquerades as
another compiler in the system and gets away with it, but some
times specific fixes are required (such as when using language
extensions).

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61450 r61473  
     12010-06-19  Thiago Macieira <thiago.macieira@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Add the WTF_COMPILER_INTEL for when the Intel compiler is used
     6        for building. Usually, the Intel compiler masquerades as
     7        another compiler in the system and gets away with it, but some
     8        times specific fixes are required (such as when using language
     9        extensions).
     10
     11        * wtf/Platform.h:
     12
    1132010-06-18  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/JavaScriptCore/wtf/Platform.h

    r61429 r61473  
    101101#endif
    102102
    103 
     103/* COMPILER(INTEL) - Intel C++ Compiler */
     104#if defined(__INTEL_COMPILER)
     105#define WTF_COMPILER_INTEL 1
     106#endif
    104107
    105108/* ==== CPU() - the target CPU architecture ==== */
Note: See TracChangeset for help on using the changeset viewer.