Title: [257695] trunk/Source/_javascript_Core
Revision
257695
Author
ctur...@igalia.com
Date
2020-03-01 16:06:35 -0800 (Sun, 01 Mar 2020)

Log Message

undefined reference to `JSC::ExecutableBase::hasJITCodeForCall() const'
https://bugs.webkit.org/show_bug.cgi?id=207890

Reviewed by Yusuke Suzuki.

Encountered on arm-buildroot-linux-gnueabihf with GCC 9.2.0.

* runtime/NativeExecutable.cpp: Inclusion of
ExecutableBaseInlines.h resolves the issue for me.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (257694 => 257695)


--- trunk/Source/_javascript_Core/ChangeLog	2020-03-01 23:36:03 UTC (rev 257694)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-03-02 00:06:35 UTC (rev 257695)
@@ -1,3 +1,15 @@
+2020-03-01  Charles Turner  <ctur...@igalia.com>
+
+        undefined reference to `JSC::ExecutableBase::hasJITCodeForCall() const'
+        https://bugs.webkit.org/show_bug.cgi?id=207890
+
+        Reviewed by Yusuke Suzuki.
+
+        Encountered on arm-buildroot-linux-gnueabihf with GCC 9.2.0.
+
+        * runtime/NativeExecutable.cpp: Inclusion of
+        ExecutableBaseInlines.h resolves the issue for me.
+
 2020-02-29  Yusuke Suzuki  <ysuz...@apple.com>
 
         Remove std::lock_guard

Modified: trunk/Source/_javascript_Core/runtime/NativeExecutable.cpp (257694 => 257695)


--- trunk/Source/_javascript_Core/runtime/NativeExecutable.cpp	2020-03-01 23:36:03 UTC (rev 257694)
+++ trunk/Source/_javascript_Core/runtime/NativeExecutable.cpp	2020-03-02 00:06:35 UTC (rev 257695)
@@ -28,6 +28,7 @@
 #include "BatchedTransitionOptimizer.h"
 #include "CodeBlock.h"
 #include "Debugger.h"
+#include "ExecutableBaseInlines.h"
 #include "JIT.h"
 #include "JSCInlines.h"
 #include "LLIntEntrypoint.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to