如果你真有条件的话,自己下载slackware的源码进行rebuild吧,好像slackware已经在脚本中加了对amd64的支持,比如下面一段glibc的rebuild脚本:
#!/bin/sh
## build glibc-$VERSION for Slackware
## by Patrick J. Volkerding <volkerdi@slackware.com>
CWD=`pwd`
TMP=${TMP:-/tmp}
if [ ! -d $TMP ]; then
mkdir -p $TMP
fi
VERSION=${VERSION:-2.3.4}
CVSVER=2.3.4
# $ARCH may be preset, otherwise i486 compatibility with i686 binary
# structuring is the Slackware default now, since this is what gcc-3.2+
# requires for binary compatibility with previous releases.
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
# This should be i486 for all 32-bit x86 arch:
TARGET=${TARGET:-i486}
# I'll break this out as an option for fun :-)
if [ "$ARCH" = "i386" ]; then
OPTIMIZ="-O3 -march=i386 -mcpu=i686"
elif [ "$ARCH" = "i486" ]; then
OPTIMIZ="-O3 -march=i486 -mcpu=i686"
elif [ "$ARCH" = "i586" ]; then
OPTIMIZ="-O3 -march=i586"
elif [ "$ARCH" = "i686" ]; then
OPTIMIZ="-O3 -march=i686"
elif [ "$ARCH" = "athlon" ]; then
OPTIMIZ="-O3 -march=athlon"
elif [ "$ARCH" = "s390" ]; then
OPTIMIZ="-O3"
elif [ "$ARCH" = "x86_64" ]; then #这行就是支持amd64的!
OPTIMIZ="-O3"
else
OPTIMIZ="-O3"
fi
………略。
祝你好运! :cool: |