Skip to content

Commit

Permalink
Added autodetect for aarch64 (ARM) architecture in condor platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
mambelli committed Nov 28, 2022
1 parent 18bb26c commit de61ee5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion creation/web_base/condor_platform_select.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,11 @@ if [[ "$condor_arch" == "auto" ]]; then
condor_arch="ppc64le"
elif [[ "$condor_arch" == "ppc64" ]]; then
condor_arch="ppc64"
elif [[ "$condor_arch" == "aarch64" ]]; then
condor_arch="aarch64"
else
#echo "Not a x86 or PPC compatible system. Autodetect not supported" 1>&2
STR="Not a x86 or PPC compatible system. Autodetect not supported"
STR="Not a x86, ARM or PPC compatible system. Autodetect not supported"
"$error_gen" -error "condor_platform_select.sh" "Config" "$STR" "SupportAutodetect" "False" "ArchType" "Unknown"
exit 1
fi
Expand Down

0 comments on commit de61ee5

Please sign in to comment.