mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
34 lines
1 KiB
Text
34 lines
1 KiB
Text
# Set default version/arch/build. You can override these settings
|
|
# in the SlackBuild scripts for each package (koffice, for example,
|
|
# usually has a different version number), or by setting your own
|
|
# environment variables.
|
|
|
|
[ -z $VERSION ] && export VERSION=4.2.4
|
|
[ -z $ARCH ] && export ARCH=x86_64
|
|
[ -z $BUILD ] && export BUILD=1
|
|
|
|
# Use this as CFLAGS and CXXFLAGS:
|
|
if [ -z "$SLKCFLAGS" ]; then
|
|
if [ "$ARCH" = "i486" ]; then
|
|
export SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
export LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "s390" ]; then
|
|
export SLKCFLAGS="-O2"
|
|
export LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
|
export SLKCFLAGS="-O2 -fPIC"
|
|
export LIBDIRSUFFIX="64"
|
|
elif [ "$ARCH" = "arm" ]; then
|
|
export SLKCFLAGS="-O2 -march=armv4 -mtune=xscale"
|
|
export LIBDIRSUFFIX=""
|
|
elif [ "$ARCH" = "armel" ]; then
|
|
export SLKCFLAGS="-O2 -march=armv4t"
|
|
export LIBDIRSUFFIX=""
|
|
fi
|
|
fi
|
|
|
|
# Use this to set the number of parallel make jobs:
|
|
if [ -z "$NUMJOBS" ]; then
|
|
export NUMJOBS="-j7"
|
|
fi
|
|
|