[Webkit-unassigned] [Bug 106725] New: [EFL] Not to treat format warnings as a error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 11 20:05:02 PST 2013


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

           Summary: [EFL] Not to treat format warnings as a error
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: WebKit EFL
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ktf.kim at samsung.com
                CC: demarchi at webkit.org


To fix the build error on a 64bit machine:
Source/JavaScriptCore/dfg/DFGOperations.cpp: In function ‘void JSC::DFG::debugOperationPrintSpeculationFailure(JSC::ExecState*, void*, void*)’:
Source/JavaScriptCore/dfg/DFGOperations.cpp:1643:41: error: format ‘%llx’ expects argument of type ‘long long unsigned int’, but argument 2 has type ‘uint64_t {aka long unsigned int}’ [-Werror=format]

It's because the uint64_t is "unsigned long long" for 32bit machine but "unsigned long" for 64bit machine. 
Some option need to be there, but for now, not to treat the format warning as error is needed.

-- 
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