Hi,
I am installing a program which needs to be compiled as a 64bit package.
I got the following info from
http://cblfs.cross-lfs.org/index.php/FFTW
CC="gcc ${BUILD64} -fPIC" CXX="g++ ${BUILD64} -fPIC" \
./configure --prefix=/usr --libdir=/usr/lib64 --enable-shared --enable-threads &&
make
So I want to add -fPIC to the gcc path. I don't know how though. And in the information above, what is ${BUILD64}?
Also, is CC= and CXX= supposed to be 2 separate command lines?
Only thing I know is when I type exactly that line:
CC="gcc ${BUILD64} -fPIC" CXX="g++ ${BUILD64} -fPIC" \
I get the following:
?
BUILD64: Undefined variable.
This might be super-easy? Haven't handled linux systems before...
Thanks /
Magnus