From 1e98af40a26334c4f78e1ac35b05f8659828125f Mon Sep 17 00:00:00 2001 From: MartinEesmaa Date: Sun, 30 Mar 2025 18:33:22 +1100 Subject: [PATCH] Warn SunOS when building VVC binaries For SunOS, as Oracle Solaris, compiling VVC binaries may fail due to errors. --- BuildVVC.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BuildVVC.sh b/BuildVVC.sh index 000f949..1f06ca4 100755 --- a/BuildVVC.sh +++ b/BuildVVC.sh @@ -17,6 +17,11 @@ if [ "$OS" = "Linux" ]; then echo "You're running on $OS of bash script version to compile VVC binaries" fi +if [ "$OS" = "SunOS" ]; then + echo "Sorry, SunOS like Oracle Solaris is not supported due to various error compilations for compiling VVC binaries." + exit 1 +fi + echo "Checking and installing required packages..." setup_debian() {