Hi LAPACKers,
compiling LAPACK succeeded with gfortran after I removed the line
EXTERNAL etime
With that line, I get linking errors as LAPACK does not provide an
implementation of "etime" and gfortran thinks: "External? - Well, that's
not me then."
Using "INTRINSIC etime" (or as said without specifying
external/intrinsic) it works.
Tobias
diff -ru lapack-3.1.0.orig/INSTALL/dsecnd.f lapack-3.1.0/INSTALL/dsecnd.f
--- lapack-3.1.0.orig/INSTALL/dsecnd.f 2006-11-14 01:32:00.000000000 +0100
+++ lapack-3.1.0/INSTALL/dsecnd.f 2006-12-15 22:09:26.000000000 +0100
@@ -20,7 +20,6 @@
* ..
* .. External Functions ..
REAL ETIME
- EXTERNAL ETIME
* ..
* .. Executable Statements ..
*
diff -ru lapack-3.1.0.orig/INSTALL/second.f lapack-3.1.0/INSTALL/second.f
--- lapack-3.1.0.orig/INSTALL/second.f 2006-11-14 01:32:00.000000000 +0100
+++ lapack-3.1.0/INSTALL/second.f 2006-12-15 22:09:07.000000000 +0100
@@ -20,7 +20,6 @@
* ..
* .. External Functions ..
REAL ETIME
- EXTERNAL ETIME
* ..
* .. Executable Statements ..
*
|