mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 04:57:40 +03:00
feat(install_server.sh): auto detect amd64-avx
This commit is contained in:
parent
dd4c17972f
commit
f203ab901e
1 changed files with 6 additions and 0 deletions
|
@ -307,6 +307,12 @@ check_environment_architecture() {
|
|||
;;
|
||||
'amd64' | 'x86_64')
|
||||
ARCHITECTURE='amd64'
|
||||
# check avx
|
||||
if [[ -z "$VERSION" ]] || [[ "$(vercmp "$VERSION" 'v1.3.2')" -ge 0 ]]; then
|
||||
if grep -qs 'flags\s*:.* avx ' /proc/cpuinfo; then
|
||||
ARCHITECTURE='amd64-avx'
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
'armv5tel' | 'armv6l' | 'armv7' | 'armv7l')
|
||||
ARCHITECTURE='arm'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue