[Webkit-unassigned] [Bug 61235] New: JavaScriptCore doesn't build on MinGW-w64

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri May 20 20:28:24 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=61235

           Summary: JavaScriptCore doesn't build on MinGW-w64
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Windows 7
            Status: UNCONFIRMED
          Severity: Blocker
          Priority: P1
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: net147 at gmail.com


Created an attachment (id=94311)
 --> (https://bugs.webkit.org/attachment.cgi?id=94311&action=review)
Fix compilation on MinGW-w64

On MinGW-w64, ENABLE_EXECUTABLE_ALLOCATOR_FIXED is defined to 1 which causes JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp to fail to compile as it includes sys/mman.h which MinGW-w64 doesn't have.

Previously, sys/mman.h was only included by JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp if the OS is Darwin.
To fix this, JavaScriptCore/wtf/Platform.h is modified to only define ENABLE_EXECUTABLE_ALLOCATOR_FIXED to 1 if OS is Darwin.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list