mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
328 B

if [ "$ROCKCFG_X86_BITS" = 32 ] ; then
case "$ROCKCFG_X86_OPT" in
i?86)
arch_machine="$ROCKCFG_X86_OPT" ;;
pentium|pentium-mmx|k6*)
arch_machine="i586" ;;
pentium*|athlon*)
arch_machine="i686" ;;
esac
else
arch_sizeof_char_p=8
arch_machine="x86_64"
fi
arch_target="${arch_machine}-unknown-linux-gnu"