[Webkit-unassigned] [Bug 84229] [EFL] Changes to DumpRenderTree fail to trigger rebuild

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Apr 18 05:09:53 PDT 2012


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





--- Comment #3 from Sudarsana Nagineni <naginenis at gmail.com>  2012-04-18 05:09:53 PST ---
The root cause of this issue is ONLY_BUILD_JAVASCRIPTCORE is always ON after running run-javascriptcore-tests(value is stored in CMakeCache.txt) and the following check in CMakeLists.txt ignores building other modules when this option is ON.

OPTION(ONLY_BUILD_JAVASCRIPTCORE "only build JavaScriptCore")
IF (ONLY_BUILD_JAVASCRIPTCORE)
    SET(ENABLE_WEBCORE OFF)
    SET(ENABLE_WEBKIT OFF)
    SET(ENABLE_WEBKIT2 OFF)
    SET(ENABLE_TOOLS OFF)
ENDIF ()

To fix the issue we should set this option OFF when we run build-webkit.

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