Browse Source

ARM: recognize gfortran pre-releases

Without proper recognition of gfortran versions such as
> GNU Fortran (GCC) 4.9.x 20150123 (prerelease)
OpenBLAS assumes the presence of the G77 compiler. Consequently,
`-lgfortran` is missing from the pkg-config file.

The aforementioned compiler is the gfortran compiler in the Android repo
in a commit tagged as `ndk-r14`, cf. Paul Mustière's gfortran build
instructions for Android at https://github.com/buffer51/android-gfortran
tags/v0.3.0
Christoph Conrads 8 years ago
parent
commit
da611dd81a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      f_check

+ 1
- 1
f_check View File

@@ -71,7 +71,7 @@ if ($compiler eq "") {


if ($data =~ /GNU/) { if ($data =~ /GNU/) {


$data =~ /(\d)\.(\d).(\d)/;
$data =~ /(\d)\.(\d).(.)/;
$major = $1; $major = $1;
$minor = $2; $minor = $2;




Loading…
Cancel
Save