Title: [270036] trunk/Source/_javascript_Core
Revision
270036
Author
[email protected]
Date
2020-11-19 09:37:31 -0800 (Thu, 19 Nov 2020)

Log Message

[JSC] Build failed due to unknown values in LLIntDesiredOffsets.h
https://bugs.webkit.org/show_bug.cgi?id=219158

Reviewed by Don Olmstead.

CMake uses the contents of the variables OFFLINE_ASM and GENERATOR as part of the
dependencies that cause LLIntDesiredOffsets.h to be regenerated, so add to them
those files missing from the lists.

* CMakeLists.txt: Update OFFLINE_ASM and GENERATOR lists.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/CMakeLists.txt (270035 => 270036)


--- trunk/Source/_javascript_Core/CMakeLists.txt	2020-11-19 17:32:25 UTC (rev 270035)
+++ trunk/Source/_javascript_Core/CMakeLists.txt	2020-11-19 17:37:31 UTC (rev 270036)
@@ -198,6 +198,8 @@
 set(OFFLINE_ASM
     offlineasm/arm.rb
     offlineasm/arm64.rb
+    offlineasm/arm64e.rb
+    offlineasm/asm.rb
     offlineasm/ast.rb
     offlineasm/backends.rb
     offlineasm/cloop.rb
@@ -218,6 +220,7 @@
 set(GENERATOR
     generator/Argument.rb
     generator/Assertion.rb
+    generator/Checkpoints.rb
     generator/DSL.rb
     generator/Fits.rb
     generator/GeneratedFile.rb
@@ -228,6 +231,7 @@
     generator/Section.rb
     generator/Template.rb
     generator/Type.rb
+    generator/Wasm.rb
     generator/main.rb
 )
 

Modified: trunk/Source/_javascript_Core/ChangeLog (270035 => 270036)


--- trunk/Source/_javascript_Core/ChangeLog	2020-11-19 17:32:25 UTC (rev 270035)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-11-19 17:37:31 UTC (rev 270036)
@@ -1,3 +1,16 @@
+2020-11-19  Adrian Perez de Castro  <[email protected]>
+
+        [JSC] Build failed due to unknown values in LLIntDesiredOffsets.h
+        https://bugs.webkit.org/show_bug.cgi?id=219158
+
+        Reviewed by Don Olmstead.
+
+        CMake uses the contents of the variables OFFLINE_ASM and GENERATOR as part of the
+        dependencies that cause LLIntDesiredOffsets.h to be regenerated, so add to them
+        those files missing from the lists.
+
+        * CMakeLists.txt: Update OFFLINE_ASM and GENERATOR lists.
+
 2020-11-18  Dmitry Bezhetskov  <[email protected]>
 
         [WASM-References] Remove subtyping rule for externref and funcref
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to