Title: [204541] trunk/Source/WTF
Revision
204541
Author
[email protected]
Date
2016-08-16 16:59:19 -0700 (Tue, 16 Aug 2016)

Log Message

Enable WebAssembly in the build.
https://bugs.webkit.org/show_bug.cgi?id=160916

Reviewed by Benjamin Poulain.

This patch turns on WebAssembly on all the platforms that support B3.
Turning on WebAssembly by default lets us check the build on every
platform.

* wtf/FeatureDefines.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (204540 => 204541)


--- trunk/Source/WTF/ChangeLog	2016-08-16 23:55:49 UTC (rev 204540)
+++ trunk/Source/WTF/ChangeLog	2016-08-16 23:59:19 UTC (rev 204541)
@@ -1,3 +1,16 @@
+2016-08-16  Keith Miller  <[email protected]>
+
+        Enable WebAssembly in the build.
+        https://bugs.webkit.org/show_bug.cgi?id=160916
+
+        Reviewed by Benjamin Poulain.
+
+        This patch turns on WebAssembly on all the platforms that support B3.
+        Turning on WebAssembly by default lets us check the build on every
+        platform.
+
+        * wtf/FeatureDefines.h:
+
 2016-08-16  Anders Carlsson  <[email protected]>
 
         Fix a thinko.

Modified: trunk/Source/WTF/wtf/FeatureDefines.h (204540 => 204541)


--- trunk/Source/WTF/wtf/FeatureDefines.h	2016-08-16 23:55:49 UTC (rev 204540)
+++ trunk/Source/WTF/wtf/FeatureDefines.h	2016-08-16 23:59:19 UTC (rev 204541)
@@ -157,8 +157,12 @@
 #endif
 
 #if !defined(ENABLE_WEBASSEMBLY)
+#if defined(ENABLE_B3_JIT)
+#define ENABLE_WEBASSEMBLY ENABLE_B3_JIT
+#else
 #define ENABLE_WEBASSEMBLY 0
 #endif
+#endif
 
 #if !defined(ENABLE_WEBGL)
 #define ENABLE_WEBGL 1
@@ -223,8 +227,12 @@
 #endif
 
 #if !defined(ENABLE_WEBASSEMBLY)
+#if defined(ENABLE_B3_JIT)
+#define ENABLE_WEBASSEMBLY ENABLE_B3_JIT
+#else
 #define ENABLE_WEBASSEMBLY 0
 #endif
+#endif
 
 #if !defined(ENABLE_WEB_ARCHIVE)
 #define ENABLE_WEB_ARCHIVE 1
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to