- * Update to cef-140.1.15+gfaef09b (rhbz#2380429) (Asahi Lina) - * CVE-2025-9864: Use after free in V8 - * CVE-2025-9865: Inappropriate implementation in Toolbar - * CVE-2025-9866: Inappropriate implementation in Extensions - * CVE-2025-9867: Inappropriate implementation in Downloads
48 lines
1.9 KiB
Diff
48 lines
1.9 KiB
Diff
Index: chromium-140.0.7339.41/third_party/libvpx/generate_gni.sh
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/third_party/libvpx/generate_gni.sh
|
|
+++ chromium-140.0.7339.41/third_party/libvpx/generate_gni.sh
|
|
@@ -429,7 +429,7 @@ gen_config_files linux/mipsel "--target=
|
|
gen_config_files linux/mips64el "--target=mips64-linux-gcc ${all_platforms}"
|
|
gen_config_files linux/loongarch \
|
|
"--target=loongarch64-linux-gcc ${all_platforms}"
|
|
-gen_config_files linux/ppc64 "--target=ppc64le-linux-gcc ${all_platforms}"
|
|
+gen_config_files linux/ppc64 "--target=generic-gnu $HIGHBD ${all_platforms}"
|
|
gen_config_files linux/generic "--target=generic-gnu $HIGHBD ${all_platforms}"
|
|
gen_config_files win/arm64-highbd \
|
|
"--target=arm64-win64-vs15 ${all_platforms} ${HIGHBD} ${disable_sve}"
|
|
Index: chromium-140.0.7339.41/third_party/libvpx/source/libvpx/build/make/rtcd.pl
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/third_party/libvpx/source/libvpx/build/make/rtcd.pl
|
|
+++ chromium-140.0.7339.41/third_party/libvpx/source/libvpx/build/make/rtcd.pl
|
|
@@ -527,8 +527,9 @@ if ($opts{arch} eq 'x86') {
|
|
}
|
|
arm;
|
|
} elsif ($opts{arch} =~ /^ppc/ ) {
|
|
- @ALL_ARCHS = filter(qw/vsx/);
|
|
- ppc;
|
|
+ #@ALL_ARCHS = filter(qw/vsx/);
|
|
+ #ppc;
|
|
+ unoptimized;
|
|
} elsif ($opts{arch} =~ /loongarch/ ) {
|
|
@ALL_ARCHS = filter(qw/lsx lasx/);
|
|
loongarch;
|
|
Index: chromium-140.0.7339.41/third_party/libvpx/BUILD.gn
|
|
===================================================================
|
|
--- chromium-140.0.7339.41.orig/third_party/libvpx/BUILD.gn
|
|
+++ chromium-140.0.7339.41/third_party/libvpx/BUILD.gn
|
|
@@ -98,6 +98,14 @@ config("libvpx_config") {
|
|
"-Wno-sign-compare",
|
|
]
|
|
}
|
|
+
|
|
+ if (current_cpu == "ppc64") {
|
|
+ cflags += [
|
|
+ "-mcpu=power8",
|
|
+ "-maltivec",
|
|
+ "-mvsx",
|
|
+ ]
|
|
+ }
|
|
}
|
|
|
|
# This config is applied to targets that depend on libvpx.
|