Sebastian wrote:
>Thanks for your help, i found the problem.
>
>We have a Dell Precision 370 with Pentium D. This processor supports Intels
>EM64T architecture, that means he can 64-bit. Now it seems Suse has
>installed the 64-bit system automaticly.
>
>I tried to give the gcc/g++ the flat -m32 with
>
>--with-cxxflags=-m32 and --with-cflags=-m32, but there was an error, how is
>the correct syntax?
>
>
>
I don't care to guess about the problem, without seeing the report. I
would normally set environment variables, rather than use --with-flags:
CFLAGS = '-O2 -fPIC -m32'
CXXFLAGS = '-O2 -fPIC -m32'
FFLAGS =-i-static
but I can't judge the pros and cons of that. I mentioned already
setting the ifort PATH and LD_LIBRARY_PATH, as the appropriate script
/opt/intel_fc_80/bin/ifortvars.sh (or .csh) would do, but many people
have been stuck by omitting this step.
|