我正在尝试使用MinGW / Msys在Windows上编译LAPACK。
当我运行命令
时$ make lapacklib
我收到以下错误:
$ make lapacklib
( cd INSTALL; make; ./testlsame; ./testslamch; ./testdlamch
./testsecond; ./testdsecnd; ./testieee; ./testversi
make[1]: Entering directory `/c/lapack-3.5.0/INSTALL'
gfortran -O2 -frecursive -c lsame.f -o lsame.o
gfortran -O2 -frecursive -c lsametst.f -o lsametst.o
gfortran -o testlsame lsame.o lsametst.o
/usr/bin/ld: unrecognized option '-plugin'
/usr/bin/ld: use the --help option for usage information
collect2.exe: erreur: ld a retourné 1 code d'état d'exécuti
make[1]: *** [testlsame] Error 1
make[1]: Leaving directory `/c/lapack-3.5.0/INSTALL'
/bin/sh: ./testlsame: No such file or directory
/bin/sh: ./testslamch: No such file or directory
/bin/sh: ./testdlamch: No such file or directory
/bin/sh: line 1: ./testsecond: No such file or directory
/bin/sh: line 1: ./testdsecnd: No such file or directory
/bin/sh: line 1: ./testieee: No such file or directory
/bin/sh: line 1: ./testversion: No such file or directory
哪里可能是问题?
提前致谢。