-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try #2 for fixing build of www/webkit2-gtk3 on armv6 by matching the …
…correct define and disabling the JIT compiler. PR: 207275 Submitted by: [email protected] Reported by: sbruno Reviewed by: bdrewery (implicit) Approved by: maintainer timeout
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- Source/WTF/wtf/Platform.h.orig 2016-07-20 UTC | ||
+++ Source/WTF/wtf/Platform.h | ||
@@ -218,6 +218,7 @@ | ||
#elif defined(__ARM_ARCH_6__) \ | ||
|| defined(__ARM_ARCH_6J__) \ | ||
|| defined(__ARM_ARCH_6K__) \ | ||
+ || defined(__ARM_ARCH_6KZ__) \ | ||
|| defined(__ARM_ARCH_6Z__) \ | ||
|| defined(__ARM_ARCH_6ZK__) \ | ||
|| defined(__ARM_ARCH_6T2__) \ | ||
@@ -264,6 +265,7 @@ | ||
|
||
#elif defined(__ARM_ARCH_6J__) \ | ||
|| defined(__ARM_ARCH_6K__) \ | ||
+ || defined(__ARM_ARCH_6KZ__) \ | ||
|| defined(__ARM_ARCH_6Z__) \ | ||
|| defined(__ARM_ARCH_6ZK__) \ | ||
|| defined(__ARM_ARCH_6M__) |