Skip to content

Problems with Lapack's eigen() on 64-bit

2 messages · Liaw, Andy, Brian Ripley

#
On our Opteron with SLES8, the GCC 3.2 is only 32-bit, and does not support
the -mcpu=k8 flag.  I had to install GCC33 to get them.

Andy
#
AFIACS the gcc/g77/g++ flag for 64-bit generation is -m64, just as on 
Solaris:

       -m32
       -m64
           Generate code for a 32-bit or 64-bit environment.  The 32-bit envi-
           ronment sets int, long and pointer to 32 bits and generates code
           that runs on any i386 system.  The 64-bit environment sets int to
           32 bits and long and pointer to 64 bits and generates code for
           AMD's x86-64 architecture.

However, on FC2 -m64 appears to be the default (with gcc 3.3.3).
On Tue, 27 Jul 2004, Liaw, Andy wrote: