[LLVMbugs] [Bug 876] NEW: incorrect checking of the f2c / f95 library directory
bugzilla-daemon at cs.uiuc.edu
bugzilla-daemon at cs.uiuc.edu
Thu Aug 10 06:19:34 PDT 2006
http://llvm.org/bugs/show_bug.cgi?id=876
Summary: incorrect checking of the f2c / f95 library directory
Product: Test Suite
Version: 1.8
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: Programs Tests
AssignedTo: unassignedbugs at nondot.org
ReportedBy: kenneth.hoste at elis.ugent.be
In the configure file of llvm-test, libvar is used instead of libval, which
causes an incorrect error when specifying the F2C or F95 library directory using
--with-f2c-lib or --with-f95-lib.
Solution:
replace
eval libvar=\$\{f95libdir\}
with
eval libval=\$\{f95libdir\}
Idem for f2c:
eval libvar=\$\{f2clibdir\} -> eval libval=\$\{f2clibdir\}
Along with this, after checking if the specified directories are in fact
directories, the variable USE_F2C is set to 1, which is incorrect.
USE_F2C=1 should be replaced with USE_F2C="USE_F2C=1"
Same for USE_F95.
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
More information about the llvm-bugs
mailing list