We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e121e commit 34c1667Copy full SHA for 34c1667
build.sh
@@ -53,9 +53,9 @@ if [ "$BUILD_LICENSE" == "gpl" ]; then
53
X265_ARGS="-DSTATIC_LINK_CRT=on"
54
fi
55
56
- if [[ "$BUILD_ARCH" = arm ]]; then
+ if [ "$BUILD_ARCH" == arm ]; then
57
X265_ARGS="$X265_ARGS -DCMAKE_SYSTEM_PROCESSOR=armv7l -DCROSS_COMPILE_ARM=ON"
58
- elif [[ "$BUILD_ARCH" = arm64 ]]; then
+ elif [ "$BUILD_ARCH" == arm64 ]; then
59
X265_ARGS="$X265_ARGS -DCMAKE_SYSTEM_PROCESSOR=arm64 -DCROSS_COMPILE_ARM64=ON"
60
61
0 commit comments