You are not logged in.
Hello everyone!
this is my first post here in forum...
Today I decided to try ABS. I have read wiki page about that, but still have some questions.. Maybe it's not connected with ABS directly, but.. Nevermind... So: I have AMD Athlon64 processor and I want to build some certain packages for my system to perform better (or I hope, that after rebuilding packages they will perform better ).
Do I need to add some special flags to ./configure lines? Or simply copy PKGBUILD and "makepkg"? Will then be any difference between MY package and package downloaded by "pacman -S package"? What if there is no ./configure line?
Offline
you should at least modify $CHOST and $CARCH in your makepkg.conf along with $CFLAGS and $CXXFLAGS so that they do not include -march=i686 anymore. instead use your platform's full identifier string. example:
export CARCH="x86_64"
export CHOST="${CARCH}-pc-linux-gnu"
export CFLAGS="-march=${CARCH} -O2 -pipe"
export CXXLAGS="${CFLAGS}"
i do not know wether you should prefix with x86_64 or amd64. maybe a arch64 port maintainer can help us?
I recognize that while theory and practice are, in theory, the same, they are, in practice, different. -Mark Mitchell
Offline
I'm not clear on this, are you using the Arch64 port, or trying to compile packages under 32 bit (normal arch) mode?
Dusty
Offline
[...] or trying to compile packages under 32 bit (normal arch) mode?
Dusty
That's what I'm trying to do
Offline