34 lines
1.6 KiB
Diff
34 lines
1.6 KiB
Diff
commit 981437bc846fcdb854062e89fd3d86f112e5f426
|
|
Author: q66 <daniel@octaforge.org>
|
|
Date: Sat Jun 25 12:35:37 2022 +0200
|
|
|
|
Use generic target for now.
|
|
|
|
This is because the source tree is missing vsx optimizations that
|
|
then do not get included and result in failed linking such as:
|
|
|
|
ld.lld: error: undefined symbol: vpx_mse16x16_vsx
|
|
|
|
diff --git a/third_party/libvpx/generate_gni.sh b/third_party/libvpx/generate_gni.sh
|
|
index 7429080..43ee29a 100755
|
|
--- a/third_party/libvpx/generate_gni.sh
|
|
+++ b/third_party/libvpx/generate_gni.sh
|
|
@@ -374,7 +374,7 @@ gen_config_files linux/arm-neon-highbd "--target=armv7-linux-gcc ${all_platforms
|
|
gen_config_files linux/arm64-highbd "--target=armv8-linux-gcc ${all_platforms} ${HIGHBD}"
|
|
gen_config_files linux/mipsel "--target=mips32-linux-gcc ${all_platforms}"
|
|
gen_config_files linux/mips64el "--target=mips64-linux-gcc ${all_platforms}"
|
|
-gen_config_files linux/ppc64 "--target=ppc64le-linux-gcc ${all_platforms}"
|
|
+gen_config_files linux/ppc64 "--target=generic-gnu ${all_platforms}"
|
|
gen_config_files linux/generic "--target=generic-gnu $HIGHBD ${all_platforms}"
|
|
gen_config_files win/arm64 "--target=arm64-win64-vs15 ${all_platforms} ${HIGHBD}"
|
|
gen_config_files win/ia32 "--target=x86-win32-vs14 ${all_platforms} ${x86_platforms}"
|
|
@@ -430,7 +430,7 @@ gen_rtcd_header linux/arm-neon-highbd armv7
|
|
gen_rtcd_header linux/arm64-highbd armv8
|
|
gen_rtcd_header linux/mipsel mipsel
|
|
gen_rtcd_header linux/mips64el mips64el
|
|
-gen_rtcd_header linux/ppc64 ppc
|
|
+gen_rtcd_header linux/ppc64 generic
|
|
gen_rtcd_header linux/generic generic
|
|
gen_rtcd_header win/arm64 armv8
|
|
gen_rtcd_header win/ia32 x86 "${require_sse2}"
|