Changeset 38167 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 6, 2008, 8:39:03 AM (17 years ago)
Author:
Simon Hausmann
Message:

2008-11-06 Kristian Amlie <[email protected]>

Reviewed by Simon Hausmann.

Added COMPILER(RVCT) to detect the ARM RVCT compiler used in the Symbian environment.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38163 r38167  
     12008-11-06  Kristian Amlie  <[email protected]>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Added COMPILER(RVCT) to detect the ARM RVCT compiler used in the Symbian environment.
     6
     7        * wtf/Platform.h:
     8
    192008-11-06  Simon Hausmann  <[email protected]>
    210
  • trunk/JavaScriptCore/wtf/Platform.h

    r37891 r38167  
    235235#endif
    236236
     237/* COMPILER(RVCT) */
     238#if defined(__CC_ARM) || defined(__ARMCC__)
     239#define WTF_COMPILER_RVCT 1
     240#endif
     241
    237242#if (PLATFORM(MAC) || PLATFORM(WIN)) && !defined(ENABLE_JSC_MULTIPLE_THREADS)
    238243#define ENABLE_JSC_MULTIPLE_THREADS 1
Note: See TracChangeset for help on using the changeset viewer.