Skip to content

Commit 6f9d0f8

Browse files
committed
Add RISC-V and PPC64EL Linux builds.
1 parent 6dc8d81 commit 6f9d0f8

8 files changed

+115
-23
lines changed

.github/workflows/continuous-build-linux.yml

+13-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ jobs:
3636
pkgarch: arm64
3737
dependencies: g++-aarch64-linux-gnu nasm qemu qemu-user-static wget yasm
3838

39+
- os: ubuntu-20.04
40+
arch: riscv64
41+
host: riscv64-linux-gnu
42+
pkgarch: riscv64
43+
dependencies: g++-riscv64-linux-gnu nasm qemu qemu-user-static wget yasm meson
44+
45+
- os: ubuntu-20.04
46+
arch: ppc64el
47+
host: powerpc64le-linux-gnu
48+
pkgarch: ppc64el
49+
dependencies: g++-powerpc64le-linux-gnu nasm qemu qemu-user-static wget yasm meson
50+
3951
runs-on: ${{ matrix.os }}
4052

4153
steps:
@@ -61,7 +73,7 @@ jobs:
6173
sudo apt update
6274
sudo apt install -y --allow-downgrades libgd3=2.2.5-5.2ubuntu2.4 libodbc1=2.3.6-0.1build1 libpcre2-8-0=10.34-7ubuntu0.1 libpcre2-16-0=10.34-7ubuntu0.1 libpcre2-32-0=10.34-7ubuntu0.1 libpcre2-dev=10.34-7ubuntu0.1
6375
sudo apt install -y ${{ matrix.dependencies }}
64-
sudo apt install -y adwaita-icon-theme gnome-icon-theme libasound2-dev:${{ matrix.pkgarch }} libfuse2:${{ matrix.pkgarch }} libgdk-pixbuf2.0-dev:${{ matrix.pkgarch }} libgtk-3-dev:${{ matrix.pkgarch }} libncurses-dev:${{ matrix.pkgarch }} libpulse-dev:${{ matrix.pkgarch }} libssl-dev:${{ matrix.pkgarch }} libudev-dev:${{ matrix.pkgarch }}
76+
sudo apt install -y adwaita-icon-theme gnome-icon-theme libasound2-dev:${{ matrix.pkgarch }} libgdk-pixbuf2.0-dev:${{ matrix.pkgarch }} libgtk-3-dev:${{ matrix.pkgarch }} libncurses-dev:${{ matrix.pkgarch }} libpulse-dev:${{ matrix.pkgarch }} libssl-dev:${{ matrix.pkgarch }} libudev-dev:${{ matrix.pkgarch }} libzstd-dev:${{ matrix.pkgarch }}
6577
6678
- name: Prepare toolchain
6779
if: ${{ matrix.arch != 'i686' && matrix.arch != 'x86_64' }}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff -Naur type2-runtime/src/runtime/Makefile type2-runtime-build/src/runtime/Makefile
2+
--- type2-runtime/src/runtime/Makefile 2024-12-21 07:54:48.000000000 +0100
3+
+++ type2-runtime-build/src/runtime/Makefile 2025-02-10 21:56:32.860399400 +0100
4+
@@ -1,12 +1,12 @@
5+
GIT_COMMIT := $(shell cat version)
6+
-CC = clang
7+
-CFLAGS = -std=gnu99 -Os -D_FILE_OFFSET_BITS=64 -DGIT_COMMIT=\"$(GIT_COMMIT)\" -T data_sections.ld -ffunction-sections -fdata-sections -Wl,--gc-sections -static -Wall -Werror -static-pie
8+
-LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3
9+
+CC = gcc
10+
+CFLAGS = -std=gnu99 -Os -D_FILE_OFFSET_BITS=64 -DGIT_COMMIT=\"$(GIT_COMMIT)\" -T data_sections.ld -ffunction-sections -fdata-sections -Wl,--gc-sections -static -Wall
11+
+LIBS = -lsquashfuse -lsquashfuse_ll -lzstd -lz -lfuse3 -ldl -lpthread
12+
13+
all: runtime
14+
15+
runtime: runtime.c
16+
- $(CC) -I/usr/local/include/squashfuse -I/usr/include/fuse3 $(CFLAGS) $^ $(LIBS) -o $@
17+
+ $(CC) -I/usr/local/include -I/usr/local/include/fuse3 $(CFLAGS) $^ $(LIBS) -o $@
18+
19+
clean:
20+
rm -f runtime

.github/workflows/tools/build-appimage

+43-8
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ elif [ "$AppImageArch" = armhf ]; then
2222
export HOST=arm-linux-gnueabihf
2323
elif [ "$AppImageArch" = aarch64 ]; then
2424
export HOST=aarch64-linux-gnu
25+
elif [ "$AppImageArch" = riscv64 ]; then
26+
export HOST=riscv64-linux-gnu
27+
elif [ "$AppImageArch" = ppc64el ]; then
28+
export HOST=powerpc64le-linux-gnu
2529
fi
2630

2731
# Build libcdio
@@ -190,16 +194,47 @@ fi
190194

191195
strip --strip-all appdir/lib*.so*
192196

193-
# Create AppImage using appimagetool
194-
wget -c -nv "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$AppImageArch.AppImage"
195-
chmod a+x appimagetool-$AppImageArch.AppImage
197+
# Build custom AppImage runtime
198+
if [[ "$AppImageArch" = riscv64 || "$AppImageArch" = ppc64el ]]; then
199+
# Check out AppImage runtime
200+
git clone --depth=1 https://github.com/AppImage/type2-runtime.git
201+
202+
# Build custom libfuse3
203+
git clone --depth=1 --branch=fuse-3.16.2 https://github.com/libfuse/libfuse.git
204+
cd libfuse
205+
patch -p1 < ../type2-runtime/patches/libfuse/mount.c.diff
206+
mkdir build
207+
cd build
208+
meson setup -D default_library=both ..
209+
ninja && sudo ninja install
210+
cd ../..
211+
212+
# Build libsquashfuse
213+
git clone --depth=1 --branch=0.5.2 https://github.com/vasi/squashfuse.git
214+
cd squashfuse
215+
export pkgconfig_fuse3_CFLAGS="-I/usr/local/include/fuse3"
216+
export pkgconfig_fuse3_LIBS="-L/usr/local/lib/$HOST -lfuse3 -lpthread"
217+
autoreconf -i
218+
./configure
219+
make && sudo make install
220+
sudo cp fuseprivate.h /usr/local/include/squashfuse
221+
cd ..
222+
223+
# Build AppImage runtime
224+
cd type2-runtime
225+
patch -p1 < ../.github/workflows/patches/appimage-type2-runtime-build.patch
226+
cd src/runtime
227+
make
228+
cd ../../..
229+
fi
196230

197-
if [ "$AppImageArch" = armhf ]; then
198-
qemu-arm-static ./appimagetool-$AppImageArch.AppImage appdir freac-continuous-${OS,,}-$AppImageArch.AppImage
199-
elif [ "$AppImageArch" = aarch64 ]; then
200-
qemu-aarch64-static ./appimagetool-$AppImageArch.AppImage appdir freac-continuous-${OS,,}-$AppImageArch.AppImage
231+
# Create AppImage using appimagetool
232+
wget -c -nv "https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-x86_64.AppImage"
233+
chmod a+x appimagetool-x86_64.AppImage
234+
if [[ "$AppImageArch" = riscv64 || "$AppImageArch" = ppc64el ]]; then
235+
ARCH=x86_64 ./appimagetool-x86_64.AppImage --runtime-file=type2-runtime/src/runtime/runtime appdir freac-continuous-${OS,,}-$AppImageArch.AppImage
201236
else
202-
ARCH=$AppImageArch ./appimagetool-$AppImageArch.AppImage appdir freac-continuous-${OS,,}-$AppImageArch.AppImage
237+
ARCH=$AppImageArch ./appimagetool-x86_64.AppImage appdir freac-continuous-${OS,,}-$AppImageArch.AppImage
203238
fi
204239

205240
# Upload AppImage to GitHub

Makefile-options

+8-4
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,17 @@ else ifneq ($(findstring mips,$(MACHINE)),)
3939
ifneq ($(BUILD_MIPS),False)
4040
BUILD_MIPS = True
4141
endif
42+
else ifneq ($(findstring powerpc64,$(MACHINE)),)
43+
ifneq ($(BUILD_PPC64),False)
44+
BUILD_PPC64 = True
45+
endif
4246
else ifneq ($(findstring powerpc,$(MACHINE)),)
4347
ifneq ($(BUILD_PPC),False)
4448
BUILD_PPC = True
4549
endif
46-
else ifneq ($(findstring powerpc64,$(MACHINE)),)
47-
ifneq ($(BUILD_PPC64),False)
48-
BUILD_PPC64 = True
50+
else ifneq ($(findstring riscv64,$(MACHINE)),)
51+
ifneq ($(BUILD_RISCV64),False)
52+
BUILD_RISCV64 = True
4953
endif
5054
else ifneq ($(findstring x86_64,$(MACHINE)),)
5155
ifneq ($(BUILD_ARM64),True)
@@ -63,7 +67,7 @@ else ifneq ($(findstring amd64,$(MACHINE)),)
6367
endif
6468
endif
6569
endif
66-
else
70+
else ifneq ($(findstring i586,$(MACHINE))$(findstring i686,$(MACHINE)),)
6771
ifneq ($(BUILD_ARM64),True)
6872
ifneq ($(BUILD_X86),False)
6973
ifneq ($(BUILD_X86_64),True)

Readme

+2
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,8 @@ History
163163

164164
Version 1.1.8 (February 2025)
165165

166+
- added Linux AppImage packages for the RISC-V and PPC64EL architectures
167+
166168
- Improvements
167169

168170
- moved encoding to separate thread for improved performance

Readme.de

+2
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,8 @@ Geschichte
162162

163163
Version 1.1.8 (Februar 2025)
164164

165+
- Linux AppImage-Pakete für die Architekturen RISC-V und PPC64EL hinzugefügt
166+
165167
- Verbesserungen
166168

167169
- Verarbeitungsgeschwindigkeit durch Umstellung auf separaten Kodierungsthread verbessert

src/freac.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ String freac::freac::architecture = "ARM";
5656
String freac::freac::architecture = "ARM64";
5757
#elif defined __mips__
5858
String freac::freac::architecture = "MIPS";
59-
#elif defined __ppc__
59+
#elif defined __ppc__ || defined __powerpc__
6060
String freac::freac::architecture = "PPC";
61-
#elif defined __ppc64__
61+
#elif defined __ppc64__ || defined __powerpc64__
6262
String freac::freac::architecture = "PPC64";
6363
#elif defined __riscv
6464
String freac::freac::architecture = "RISC-V";

tools/build-codecs

+25-8
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,13 @@ elif [[ $machine == *aarch64* ]]; then
7171
elif [[ $machine == *arm* ]]; then
7272
cflags="$cflags -I/usr/local/include -march=armv7-a+simd"
7373
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
7581
cflags="$cflags -m32 -march=pentium4"
7682
ldflags="-m32"
7783
x86=true
@@ -94,6 +100,10 @@ if [[ $uname == Linux ]]; then
94100
host="aarch64-linux-gnu"
95101
elif [[ $arm == true ]]; then
96102
host="arm-linux-gnueabihf"
103+
elif [[ $riscv64 == true ]]; then
104+
host="riscv64-linux-gnu"
105+
elif [[ $ppc64el == true ]]; then
106+
host="powerpc64le-linux-gnu"
97107
fi
98108
fi
99109

@@ -203,6 +213,9 @@ vorbis_location=https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-$vorbi
203213
wavpack_location=https://www.wavpack.com/wavpack-$wavpack_version.tar.bz2
204214

205215
# Patch locations
216+
ffmpeg_patches=(https://freac.org/patches/ffmpeg-$ffmpeg_version-riscv.patch)
217+
ffmpeg_patch_levels=(1)
218+
206219
lame_patches=(https://freac.org/patches/lame-$lame_version-sse-20171014.diff https://freac.org/patches/lame-$lame_version-fastcrc.diff)
207220
lame_patch_levels=(0 1)
208221

@@ -410,14 +423,20 @@ for package in ${packages[@]}; do
410423

411424
elif [ $package == ffmpeg ]; then
412425
# Build ffmpeg
426+
patches=${ffmpeg_patches[@]}
427+
patch_levels=(${ffmpeg_patch_levels[@]})
413428
export CFLAGS="$cflags"
414429
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
416431
host_flags="--enable-cross-compile"
417-
if [[ $arm == true ]]; then
418-
host_flags="$host_flags --arch=arm"
419-
else
432+
if [[ $arm64 == true ]]; then
420433
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"
421440
fi
422441
if [[ $uname == Linux ]]; then
423442
host_flags="$host_flags --target-os=linux"
@@ -447,11 +466,9 @@ for package in ${packages[@]}; do
447466

448467
elif [ $package == flac ]; then
449468
# Build FLAC
450-
patches=${flac_patches[@]}
451-
patch_levels=(${flac_patch_levels[@]})
452469
export CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0"
453470
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
455472
if [[ $uname == *MINGW* ]]; then
456473
prepare="sed -i -e \"s/#undef FLAC__CPU_IA32//\" config.h.in"
457474
prepare="$prepare; sed -i -e \"s/ARCH_SUBDIRS = ia32/ARCH_SUBDIRS =/\" src/libFLAC/Makefile.in"

0 commit comments

Comments
 (0)