[Tool] __builtin_shufflevector needs higher version of gcc (#61512)

used by #60551

Signed-off-by: zombee0 <ewang2027@gmail.com>
This commit is contained in:
zombee0 2025-08-01 14:09:42 +08:00 committed by GitHub
parent 0dfbef56e5
commit c0587245cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

2
env.sh
View File

@ -50,7 +50,7 @@ if [[ -z ${STARROCKS_GCC_HOME} ]]; then
fi
gcc_ver=`${STARROCKS_GCC_HOME}/bin/gcc -dumpfullversion -dumpversion`
required_ver="5.3.1"
required_ver="12.1.0"
if [[ ! "$(printf '%s\n' "$required_ver" "$gcc_ver" | sort -V | head -n1)" = "$required_ver" ]]; then
echo "Error: GCC version (${gcc_ver}) must be greater than or equal to ${required_ver}"
exit 1