Changeset 46881 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Aug 6, 2009, 9:11:00 PM (16 years ago)
Author:
[email protected]
Message:

2009-08-06 Norbert Leser <[email protected]>

Reviewed by Darin Adler.

Updated patch for bug #27059:
Symbian platform always uses little endian encoding,
regardless of compiler.
We need to make sure that we correctly detect EABI architecture
for armv5 targets on Symbian,
where EABI is set but not ARM_EABI

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r46880 r46881  
     12009-08-06  Norbert Leser  <[email protected]>
     2
     3        Reviewed by Darin Adler.
     4
     5        Updated patch for bug #27059:
     6        Symbian platform always uses little endian encoding,
     7        regardless of compiler.
     8        We need to make sure that we correctly detect EABI architecture
     9        for armv5 targets on Symbian,
     10        where __EABI__ is set but not __ARM_EABI__
     11
     12        * wtf/Platform.h:
     13
    1142009-08-06  Adam Barth  <[email protected]>
    215
  • trunk/JavaScriptCore/wtf/Platform.h

    r46831 r46881  
    221221#if defined(__ARMEB__)
    222222#define WTF_PLATFORM_BIG_ENDIAN 1
    223 #elif !defined(__ARM_EABI__) && !defined(__ARMEB__) && !defined(__VFP_FP__)
     223#elif !defined(__ARM_EABI__) && !defined(__EABI__) && !defined(__VFP_FP__)
    224224#define WTF_PLATFORM_MIDDLE_ENDIAN 1
    225225#endif
    226 #if !defined(__ARM_EABI__)
     226#if !defined(__ARM_EABI__) && !defined(__EABI__)
    227227#define WTF_PLATFORM_FORCE_PACK 1
    228228#endif
Note: See TracChangeset for help on using the changeset viewer.