Title: [226367] trunk/Source/_javascript_Core
Revision
226367
Author
pvol...@apple.com
Date
2018-01-03 10:46:26 -0800 (Wed, 03 Jan 2018)

Log Message

[Win][Debug] testapi link error.
https://bugs.webkit.org/show_bug.cgi?id=181247
<rdar://problem/36166729>

Reviewed by Brent Fulgham.

Do not set the runtime library compile flag for C files, it is already set to the correct value.

* shell/PlatformWin.cmake:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (226366 => 226367)


--- trunk/Source/_javascript_Core/ChangeLog	2018-01-03 18:36:24 UTC (rev 226366)
+++ trunk/Source/_javascript_Core/ChangeLog	2018-01-03 18:46:26 UTC (rev 226367)
@@ -1,3 +1,15 @@
+2018-01-03  Per Arne Vollan  <pvol...@apple.com>
+
+        [Win][Debug] testapi link error.
+        https://bugs.webkit.org/show_bug.cgi?id=181247
+        <rdar://problem/36166729>
+
+        Reviewed by Brent Fulgham.
+
+        Do not set the runtime library compile flag for C files, it is already set to the correct value.
+ 
+        * shell/PlatformWin.cmake:
+
 2018-01-03  Robin Morisset  <rmoris...@apple.com>
 
         Inlining of a function that ends in op_unreachable crashes

Modified: trunk/Source/_javascript_Core/shell/PlatformWin.cmake (226366 => 226367)


--- trunk/Source/_javascript_Core/shell/PlatformWin.cmake	2018-01-03 18:36:24 UTC (rev 226366)
+++ trunk/Source/_javascript_Core/shell/PlatformWin.cmake	2018-01-03 18:46:26 UTC (rev 226367)
@@ -26,8 +26,8 @@
 target_link_libraries(testRegExpLib _javascript_Core)
 
 add_library(testapiLib SHARED ${TESTAPI_SOURCES})
-set_source_files_properties(../API/tests/CustomGlobalObjectClassTest.c PROPERTIES COMPILE_FLAGS "/TP ${MSVC_RUNTIME_COMPILE_FLAG}")
-set_source_files_properties(../API/tests/testapi.c PROPERTIES COMPILE_FLAGS "/TP ${MSVC_RUNTIME_COMPILE_FLAG}")
+set_source_files_properties(../API/tests/CustomGlobalObjectClassTest.c PROPERTIES COMPILE_FLAGS "/TP")
+set_source_files_properties(../API/tests/testapi.c PROPERTIES COMPILE_FLAGS "/TP")
 add_executable(testapi ${JSC_SOURCES})
 set_target_properties(testapi PROPERTIES OUTPUT_NAME "testapi${DEBUG_SUFFIX}")
 target_link_libraries(testapi shlwapi)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to