From 0adfeed1856ace9f3329a9ae25cd7d9709c8a03e Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 8 Oct 2004 00:55:43 +0000 Subject: Describe how to configure tests to work with f2c git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16829 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/TestingGuide.html | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'docs') diff --git a/docs/TestingGuide.html b/docs/TestingGuide.html index a6a44ef..ec9e40b 100644 --- a/docs/TestingGuide.html +++ b/docs/TestingGuide.html @@ -65,6 +65,32 @@ any other version. need zlib and SAX support enabled. +
F2C
+
For now, LLVM does not have a Fortran front-end, but using F2C, we can run +Fortran benchmarks. F2C support must be enabled via configure if not +installed in a standard place. F2C requires three items: the f2c +executable, f2c.h to compile the generated code, and libf2c.a +to link generated code. By default, given an F2C directory $DIR, the +configure script will search $DIR/bin for f2c, +$DIR/include for f2c.h, and $DIR/lib for +libf2c.a. The default $DIR values are: /usr, +/usr/local, /sw, and /opt. If you installed F2C in a +different location, you must tell configure: + +
+ -- cgit v1.1