Title: [222275] trunk
Revision
222275
Author
[email protected]
Date
2017-09-20 12:04:05 -0700 (Wed, 20 Sep 2017)

Log Message

Fix HPPA and Alpha builds
https://bugs.webkit.org/show_bug.cgi?id=177224

Reviewed by Alex Christensen.

.:

* CMakeLists.txt:

Source/_javascript_Core:

* CMakeLists.txt:

Source/WTF:

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/CMakeLists.txt (222274 => 222275)


--- trunk/CMakeLists.txt	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/CMakeLists.txt	2017-09-20 19:04:05 UTC (rev 222275)
@@ -69,6 +69,8 @@
     set(WTF_CPU_ARM 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64")
     set(WTF_CPU_ARM64 1)
+elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "alpha*")
+    set(WTF_CPU_ALPHA 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^mips")
     set(WTF_CPU_MIPS 1)
 elseif (LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "sh4")

Modified: trunk/ChangeLog (222274 => 222275)


--- trunk/ChangeLog	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/ChangeLog	2017-09-20 19:04:05 UTC (rev 222275)
@@ -1,3 +1,12 @@
+2017-09-20  Alberto Garcia  <[email protected]>
+
+        Fix HPPA and Alpha builds
+        https://bugs.webkit.org/show_bug.cgi?id=177224
+
+        Reviewed by Alex Christensen.
+
+        * CMakeLists.txt:
+
 2017-09-19  Carlos Alberto Lopez Perez  <[email protected]>
 
         [CMake] Add ENABLE_WEB_CRYPTO option and make ENABLE_SUBTLE_CRYPTO depend on it.

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (222274 => 222275)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2017-09-20 19:04:05 UTC (rev 222275)
@@ -1555,6 +1555,7 @@
 
 if (WTF_CPU_ARM)
 elseif (WTF_CPU_ARM64)
+elseif (WTF_CPU_ALPHA)
 elseif (WTF_CPU_HPPA)
 elseif (WTF_CPU_PPC)
 elseif (WTF_CPU_PPC64)

Modified: trunk/Source/_javascript_Core/ChangeLog (222274 => 222275)


--- trunk/Source/_javascript_Core/ChangeLog	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/Source/_javascript_Core/ChangeLog	2017-09-20 19:04:05 UTC (rev 222275)
@@ -1,3 +1,12 @@
+2017-09-20  Alberto Garcia  <[email protected]>
+
+        Fix HPPA and Alpha builds
+        https://bugs.webkit.org/show_bug.cgi?id=177224
+
+        Reviewed by Alex Christensen.
+
+        * CMakeLists.txt:
+
 2017-09-18  Filip Pizlo  <[email protected]>
 
         ErrorInstance and Exception need destroy methods

Modified: trunk/Source/WTF/ChangeLog (222274 => 222275)


--- trunk/Source/WTF/ChangeLog	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/Source/WTF/ChangeLog	2017-09-20 19:04:05 UTC (rev 222275)
@@ -1,3 +1,12 @@
+2017-09-20  Alberto Garcia  <[email protected]>
+
+        Fix HPPA and Alpha builds
+        https://bugs.webkit.org/show_bug.cgi?id=177224
+
+        Reviewed by Alex Christensen.
+
+        * wtf/Platform.h:
+
 2017-09-19  Youenn Fablet  <[email protected]>
 
         Allow WTF::map to use any class that is iterable and has a size getter

Modified: trunk/Source/WTF/wtf/Platform.h (222274 => 222275)


--- trunk/Source/WTF/wtf/Platform.h	2017-09-20 19:04:00 UTC (rev 222274)
+++ trunk/Source/WTF/wtf/Platform.h	2017-09-20 19:04:05 UTC (rev 222275)
@@ -366,7 +366,7 @@
 
 #endif /* ARM */
 
-#if CPU(ARM) || CPU(MIPS) || CPU(SH4)
+#if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(ALPHA) || CPU(HPPA)
 #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to