Title: [192781] trunk
Revision
192781
Author
[email protected]
Date
2015-11-27 06:16:31 -0800 (Fri, 27 Nov 2015)

Log Message

[cmake] Add testb3 to the build system
https://bugs.webkit.org/show_bug.cgi?id=151619

Reviewed by Gyuyoung Kim.

Source/_javascript_Core:

* shell/CMakeLists.txt:

Tools:

* Scripts/build-jsc:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (192780 => 192781)


--- trunk/Source/_javascript_Core/ChangeLog	2015-11-27 13:56:20 UTC (rev 192780)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-11-27 14:16:31 UTC (rev 192781)
@@ -1,5 +1,14 @@
 2015-11-27  Csaba Osztrogonác  <[email protected]>
 
+        [cmake] Add testb3 to the build system
+        https://bugs.webkit.org/show_bug.cgi?id=151619
+
+        Reviewed by Gyuyoung Kim.
+
+        * shell/CMakeLists.txt:
+
+2015-11-27  Csaba Osztrogonác  <[email protected]>
+
         Use mark pragmas only if it is supported
         https://bugs.webkit.org/show_bug.cgi?id=151621
 

Modified: trunk/Source/_javascript_Core/shell/CMakeLists.txt (192780 => 192781)


--- trunk/Source/_javascript_Core/shell/CMakeLists.txt	2015-11-27 13:56:20 UTC (rev 192780)
+++ trunk/Source/_javascript_Core/shell/CMakeLists.txt	2015-11-27 14:16:31 UTC (rev 192781)
@@ -39,3 +39,12 @@
 if (WIN32)
     add_dependencies(jsc jscLib)
 endif ()
+
+if (NOT WIN32)
+    set(TESTB3_SOURCES
+        ../b3/testb3.cpp
+    )
+
+    add_executable(testb3 ${TESTB3_SOURCES})
+    target_link_libraries(testb3 ${JSC_LIBRARIES})
+endif ()

Modified: trunk/Tools/ChangeLog (192780 => 192781)


--- trunk/Tools/ChangeLog	2015-11-27 13:56:20 UTC (rev 192780)
+++ trunk/Tools/ChangeLog	2015-11-27 14:16:31 UTC (rev 192781)
@@ -1,5 +1,14 @@
 2015-11-27  Csaba Osztrogonác  <[email protected]>
 
+        [cmake] Add testb3 to the build system
+        https://bugs.webkit.org/show_bug.cgi?id=151619
+
+        Reviewed by Gyuyoung Kim.
+
+        * Scripts/build-jsc:
+
+2015-11-27  Csaba Osztrogonác  <[email protected]>
+
         [jhbuild] Fix pixman build with clang
         https://bugs.webkit.org/show_bug.cgi?id=151441
 

Modified: trunk/Tools/Scripts/build-jsc (192780 => 192781)


--- trunk/Tools/Scripts/build-jsc	2015-11-27 13:56:20 UTC (rev 192780)
+++ trunk/Tools/Scripts/build-jsc	2015-11-27 14:16:31 UTC (rev 192781)
@@ -106,7 +106,7 @@
     unless (isAnyWindows()) {
         # By default we build using all of the available CPUs
         $makeArgs .= ($makeArgs ? " " : "") . "-j" . numberOfCPUs() if $makeArgs !~ /-j\s*\d+/;
-        $buildTarget = "jsc $makeArgs";
+        $buildTarget = "jsc testb3 $makeArgs";
     } elsif (canUseNinja()) {
         $buildTarget .= "jsc testapi";
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to