Chromium 138.0.7204.183
This commit is contained in:
parent
7c0b566a47
commit
404c44c8fa
117 changed files with 122161 additions and 0 deletions
31
chromium-lts/0001-add-xnn-ppc64el-support.patch
Normal file
31
chromium-lts/0001-add-xnn-ppc64el-support.patch
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
--- a/third_party/xnnpack/generate_build_gn.py
|
||||
+++ b/third_party/xnnpack/generate_build_gn.py
|
||||
@@ -236,7 +236,10 @@
|
||||
_Platform(gn_cpu='x64', bazel_cpu='k8', bazel_platform='//:linux_x64'),
|
||||
_Platform(gn_cpu='arm64',
|
||||
bazel_cpu='aarch64',
|
||||
- bazel_platform='//:linux_aarch64')
|
||||
+ bazel_platform='//:linux_aarch64'),
|
||||
+ _Platform(gn_cpu='ppc64',
|
||||
+ bazel_cpu='ppc64le',
|
||||
+ bazel_platform='//:linux_ppc64le')
|
||||
]
|
||||
|
||||
|
||||
--- a/third_party/xnnpack/bazelroot/BUILD
|
||||
+++ b/third_party/xnnpack/bazelroot/BUILD
|
||||
@@ -21,6 +21,14 @@
|
||||
],
|
||||
)
|
||||
|
||||
+platform(
|
||||
+ name = "linux_ppc64le",
|
||||
+ constraint_values = [
|
||||
+ "@platforms//os:linux",
|
||||
+ "@platforms//cpu:ppc64le",
|
||||
+ ],
|
||||
+)
|
||||
+
|
||||
# A dummy clang toolchain for building them for any arch.
|
||||
|
||||
filegroup(name = "empty")
|
||||
Loading…
Add table
Add a link
Reference in a new issue