PKGBUILDs/extra/qt5-webengine/0001-ARM-toolchain-fixes.patch

59 lines
1.3 KiB
Diff
Raw Normal View History

2019-07-01 14:16:10 +00:00
From dd9b2eeaa1212cde95b26accbf271fb00f865331 Mon Sep 17 00:00:00 2001
2017-06-09 12:23:17 +00:00
From: Kevin Mihelich <kevin@archlinuxarm.org>
2017-07-04 18:33:40 +00:00
Date: Tue, 4 Jul 2017 11:54:39 -0600
2019-07-01 14:16:10 +00:00
Subject: [PATCH 1/2] ARM toolchain fixes
2017-06-09 12:23:17 +00:00
---
2017-07-04 18:33:40 +00:00
chromium/build/toolchain/linux/BUILD.gn | 24 ++++++++++--------------
1 file changed, 10 insertions(+), 14 deletions(-)
2017-06-09 12:23:17 +00:00
diff --git a/chromium/build/toolchain/linux/BUILD.gn b/chromium/build/toolchain/linux/BUILD.gn
2019-07-01 14:16:10 +00:00
index 1b0f2205927..9727519cdd0 100644
2017-06-09 12:23:17 +00:00
--- a/chromium/build/toolchain/linux/BUILD.gn
+++ b/chromium/build/toolchain/linux/BUILD.gn
2017-07-04 18:33:40 +00:00
@@ -22,15 +22,13 @@ clang_toolchain("clang_arm64") {
}
gcc_toolchain("arm64") {
- toolprefix = "aarch64-linux-gnu-"
-
- cc = "${toolprefix}gcc"
- cxx = "${toolprefix}g++"
+ cc = "gcc"
+ cxx = "g++"
- ar = "${toolprefix}ar"
+ ar = "ar"
ld = cxx
- readelf = "${toolprefix}readelf"
- nm = "${toolprefix}nm"
+ readelf = "readelf"
+ nm = "nm"
toolchain_args = {
current_cpu = "arm64"
@@ -40,15 +38,13 @@ gcc_toolchain("arm64") {
2017-06-09 12:23:17 +00:00
}
gcc_toolchain("arm") {
- toolprefix = "arm-linux-gnueabihf-"
2017-07-04 18:33:40 +00:00
-
- cc = "${toolprefix}gcc"
- cxx = "${toolprefix}g++"
+ cc = "gcc"
+ cxx = "g++"
2017-06-09 12:23:17 +00:00
2017-07-04 18:33:40 +00:00
- ar = "${toolprefix}ar"
+ ar = "ar"
ld = cxx
- readelf = "${toolprefix}readelf"
- nm = "${toolprefix}nm"
+ readelf = "readelf"
+ nm = "nm"
2017-06-09 12:23:17 +00:00
toolchain_args = {
2017-07-04 18:33:40 +00:00
current_cpu = "arm"
2017-06-09 12:23:17 +00:00
--
2019-07-01 14:16:10 +00:00
2.21.0
2017-06-09 12:23:17 +00:00