This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
OSchip
/
OpenBLAS
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
66
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Fix Fortran compiler detection
- Test with '-x' operator to ensure file is executable. - 'break' is not a valid Perl keyword.
tags/v0.2.0^2
Zaheer Chothia
13 years ago
parent
14c3511e92
commit
44124d3055
1 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-2
f_check
+ 3
- 2
f_check
View File
@@ -32,11 +32,12 @@ if ($compiler eq "") {
"pgf95", "pgf90", "pgf77",
"ifort");
OUTER:
foreach $lists (@lists) {
foreach $path (@path) {
if (-
f
$path . "/" . $lists) {
if (-
x
$path . "/" . $lists) {
$compiler = $lists;
break
;
last OUTER
;
}
}
}
Write
Preview
Loading…
Cancel
Save