-
-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #518 from jellyfin/ne10-opus
Add NE10 to enable more neon optimization for libopus
- Loading branch information
Showing
2 changed files
with
58 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
SCRIPT_REPO="https://github.com/gnattu/Ne10.git" | ||
SCRIPT_COMMIT="545f4f18014cdbf9fb5fb1a9f5d24000200dfa8b" | ||
|
||
ffbuild_enabled() { | ||
[[ $TARGET == win* ]] && return -1 | ||
[[ $TARGET == *arm64 ]] && return 0 | ||
return -1 | ||
} | ||
|
||
ffbuild_dockerbuild() { | ||
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" Ne10 | ||
cd Ne10 | ||
|
||
mkdir -p build && cd build | ||
|
||
local myconf=( | ||
-DGNULINUX_PLATFORM=ON # macOS is also "GNU Linux". This target means all unix-like target | ||
) | ||
|
||
if [[ $TARGET == linux* ]]; then | ||
myconf+=( | ||
-DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" | ||
) | ||
elif [[ $TARGET == mac* ]]; then | ||
: | ||
else | ||
echo "Unknown target" | ||
return -1 | ||
fi | ||
|
||
export NE10_LINUX_TARGET_ARCH=aarch64 | ||
cmake .. "${myconf[@]}" | ||
make -j$(nproc) | ||
# NE10 does not have install method, we have to copy files with shell command | ||
cp modules/libNE10.a "$FFBUILD_PREFIX"/lib/libNE10.a | ||
cp -R ../inc "$FFBUILD_PREFIX"/include/libNE10 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters