Title: [198811] trunk/Source/WebCore
- Revision
- 198811
- Author
- achristen...@apple.com
- Date
- 2016-03-29 16:55:01 -0700 (Tue, 29 Mar 2016)
Log Message
Fix Windows clean build.
* CMakeLists.txt:
Make sure WebCoreDerivedSources is done building before building WebCore.
Modified Paths
Diff
Modified: trunk/Source/WebCore/CMakeLists.txt (198810 => 198811)
--- trunk/Source/WebCore/CMakeLists.txt 2016-03-29 23:34:54 UTC (rev 198810)
+++ trunk/Source/WebCore/CMakeLists.txt 2016-03-29 23:55:01 UTC (rev 198811)
@@ -3807,11 +3807,15 @@
set_target_properties(WebCoreDerivedSources PROPERTIES OUTPUT_NAME WebCoreDerivedSources${DEBUG_SUFFIX})
set_target_properties(WebCoreDerivedSources PROPERTIES FOLDER "WebCore")
if (NOT WIN32)
- list(APPEND WebCore_LIBRARIES WebCoreDerivedSources${DEBUG_SUFFIX})
+ list(APPEND WebCore_LIBRARIES WebCoreDerivedSources)
endif ()
WEBKIT_FRAMEWORK(WebCore)
+if (WIN32)
+ add_dependencies(WebCore WebCoreDerivedSources)
+endif ()
+
# The -ftree-sra optimization (implicit with -O2) causes crashes when
# allocating large chunks of memory using bmalloc on Intel 32bit.
# See https://bugs.webkit.org/show_bug.cgi?id=146440
Modified: trunk/Source/WebCore/ChangeLog (198810 => 198811)
--- trunk/Source/WebCore/ChangeLog 2016-03-29 23:34:54 UTC (rev 198810)
+++ trunk/Source/WebCore/ChangeLog 2016-03-29 23:55:01 UTC (rev 198811)
@@ -1,3 +1,10 @@
+2016-03-29 Alex Christensen <achristen...@webkit.org>
+
+ Fix Windows clean build.
+
+ * CMakeLists.txt:
+ Make sure WebCoreDerivedSources is done building before building WebCore.
+
2016-03-29 Keith Miller <keith_mil...@apple.com>
[ES6] Add support for Symbol.isConcatSpreadable.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes