FreeBSD uname -m outputs a different string than linux uname -m

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14871 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-09-27 18:11:09 +00:00
parent 5321711dd9
commit 5ec5f8abac

2
tools/configure vendored
View file

@ -133,7 +133,7 @@ simcc () {
;;
esac
if [ "`uname -m`" = "x86_64" ]; then
if [ "`uname -m`" = "x86_64" ] || [ "`uname -m`" = "amd64" ]; then
GCCOPTS="$GCCOPTS -fPIC" # needed to make shared objects link
fi