Hi :-)

Here is the script to install VirtualBox on mac os x :

MY_ARCH=`uname -m`
if test "$MY_ARCH" = "x86_64"; then
  MY_ARCH="amd64"
else
  MY_ARCH="x86"
fi
set -e
for trg in `ls /Applications/VirtualBox.app/Contents/MacOS/*-$ {MY_ARCH}`;
do
    linkname=`echo "$trg" | sed -e 's|-'"${MY_ARCH}"'$||' `
    if test "$linkname" = "$trg"; then
        echo "oops: $trg" 1>&2
        exit 1;
    fi
    rm -f         "$linkname"
    ln -vh "$trg" "$linkname"
done


But, it seems that "uname -m" always gives "i386" on mac os x, even when the processor supports 64 bits

Well, is it a bug, or just 64 bits supports is planned but not finished ?


--
Téléassistance / Télémaintenance
http://www.portparallele.com/ThomasDECONTES/


_______________________________________________
vbox-users mailing list
[email protected]
http://vbox.innotek.de/mailman/listinfo/vbox-users

Reply via email to