Hi all,
I succesfully compile the lapack libraries and created "lapack_LINUX.a" and "blas_LINUX.a" using the gfortran compiler.
I am trying to compile a example code with,
gfortran -O2 -c example1.f -o example1.o ../lapack_LINUX.a ../blas_LINUX.a
the massage I got is,
gfortran: ../lapack_LINUX.a: linker input file unused because linking not done
gfortran: ../blas_LINUX.a: linker input file unused because linking not done
and it created a example1.o file. if I try to run it with ./example1.o , this is what I got,
./example1.o: Exec format error. Wrong Architecture.
could you please explain this to me. I would be greatful any help to run my code
Manori

