@@ -71,7 +71,13 @@ elif [[ $machine == *aarch64* ]]; then
71
71
elif [[ $machine == * arm* ]]; then
72
72
cflags=" $cflags -I/usr/local/include -march=armv7-a+simd"
73
73
arm=true
74
- else
74
+ elif [[ $machine == * riscv64* ]]; then
75
+ cflags=" $cflags -I/usr/local/include -march=rv64gc"
76
+ riscv64=true
77
+ elif [[ $machine == * powerpc64le* ]]; then
78
+ cflags=" $cflags -I/usr/local/include -mcpu=powerpc64le"
79
+ ppc64el=true
80
+ elif [[ $machine == * i586* || $machine == * i686* ]] || [[ $BUILD_X86 == True ]]; then
75
81
cflags=" $cflags -m32 -march=pentium4"
76
82
ldflags=" -m32"
77
83
x86=true
@@ -94,6 +100,10 @@ if [[ $uname == Linux ]]; then
94
100
host=" aarch64-linux-gnu"
95
101
elif [[ $arm == true ]]; then
96
102
host=" arm-linux-gnueabihf"
103
+ elif [[ $riscv64 == true ]]; then
104
+ host=" riscv64-linux-gnu"
105
+ elif [[ $ppc64el == true ]]; then
106
+ host=" powerpc64le-linux-gnu"
97
107
fi
98
108
fi
99
109
@@ -203,6 +213,9 @@ vorbis_location=https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-$vorbi
203
213
wavpack_location=https://www.wavpack.com/wavpack-$wavpack_version .tar.bz2
204
214
205
215
# Patch locations
216
+ ffmpeg_patches=(https://freac.org/patches/ffmpeg-$ffmpeg_version -riscv.patch)
217
+ ffmpeg_patch_levels=(1)
218
+
206
219
lame_patches=(https://freac.org/patches/lame-$lame_version -sse-20171014.diff https://freac.org/patches/lame-$lame_version -fastcrc.diff)
207
220
lame_patch_levels=(0 1)
208
221
@@ -410,14 +423,20 @@ for package in ${packages[@]}; do
410
423
411
424
elif [ $package == ffmpeg ]; then
412
425
# Build ffmpeg
426
+ patches=${ffmpeg_patches[@]}
427
+ patch_levels=(${ffmpeg_patch_levels[@]} )
413
428
export CFLAGS=" $cflags "
414
429
configure_flags=" --disable-autodetect --disable-doc --enable-gpl --enable-small --enable-runtime-cpudetect"
415
- if [[ $arm == true || $arm64 == true ]] && [[ ` uname -m` == x86_64 ]]; then
430
+ if [[ $arm == true || $arm64 == true || $riscv64 == true || $ppc64el == true ]] && [[ ` uname -m` == x86_64 ]]; then
416
431
host_flags=" --enable-cross-compile"
417
- if [[ $arm == true ]]; then
418
- host_flags=" $host_flags --arch=arm"
419
- else
432
+ if [[ $arm64 == true ]]; then
420
433
host_flags=" $host_flags --arch=aarch64"
434
+ elif [[ $arm == true ]]; then
435
+ host_flags=" $host_flags --arch=arm"
436
+ elif [[ $riscv64 == true ]]; then
437
+ host_flags=" $host_flags --arch=riscv"
438
+ elif [[ $ppc64el == true ]]; then
439
+ host_flags=" $host_flags --arch=ppc64"
421
440
fi
422
441
if [[ $uname == Linux ]]; then
423
442
host_flags=" $host_flags --target-os=linux"
@@ -447,11 +466,9 @@ for package in ${packages[@]}; do
447
466
448
467
elif [ $package == flac ]; then
449
468
# Build FLAC
450
- patches=${flac_patches[@]}
451
- patch_levels=(${flac_patch_levels[@]} )
452
469
export CFLAGS=" $CFLAGS -D_FORTIFY_SOURCE=0"
453
470
configure_flags=" --disable-cpplibs --disable-doxygen-docs"
454
- if [[ $x86_64 == true ]] || [[ $arm64 == true ]]; then
471
+ if [[ $x86_64 == true ]] || [[ $arm64 == true ]] || [[ $riscv64 == true ]] || [[ $ppc64el == true ]] ; then
455
472
if [[ $uname == * MINGW* ]]; then
456
473
prepare=" sed -i -e \" s/#undef FLAC__CPU_IA32//\" config.h.in"
457
474
prepare=" $prepare ; sed -i -e \" s/ARCH_SUBDIRS = ia32/ARCH_SUBDIRS =/\" src/libFLAC/Makefile.in"
0 commit comments