From f2e50be2f5b15c1985f9fcfb7ee1374dd6e94927 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Thu, 27 Feb 2003 08:26:02 +0000 Subject: Imported from pacman-2.3.tar.gz --- etc/makepkg.conf | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'etc/makepkg.conf') diff --git a/etc/makepkg.conf b/etc/makepkg.conf index 375851f3..c73d9889 100644 --- a/etc/makepkg.conf +++ b/etc/makepkg.conf @@ -2,8 +2,23 @@ # /etc/makepkg.conf # -export CFLAGS="-O2 -march=i686 -pipe" -export CXXFLAGS="-O2 -march=i686 -pipe" +# the top-level directory of all your PKGBUILDs +export ABSROOT="/usr/abs" +# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon optimized (but binaries +# will run on any x86 system) +#export CHOST="i686-pc-linux-gnu" +#export CFLAGS="-mcpu=i686 -O2 -pipe" +#export CXXFLAGS="-mcpu=i686 -O2 -pipe" + +# Pentium Pro/Pentium II/Pentium III+/Pentium 4/Athlon exclusive (binaries +# will use the P6 instruction set and only run on P6+ systems) +export CHOST="i686-pc-linux-gnu" +export CFLAGS="-march=i686 -O2 -pipe" +export CXXFLAGS="-march=i686 -O2 -pipe" + +# SMP Systems #export MAKEFLAGS="-j 2" +# if you want your name to show up in the packages you build, set this. +#export PACKAGER="John Doe " -- cgit v1.2.3-24-g4f1b