Browse Source

Merge pull request #2617 from martin-frbg/issue2616

Add workaround for unhandled  gmake jobserver flags in c_check/f_check
tags/v0.3.10^2
Martin Kroeker GitHub 6 years ago
parent
commit
cf46c9f84e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      c_check
  2. +1
    -0
      f_check

+ 1
- 0
c_check View File

@@ -310,6 +310,7 @@ $linker_a = "";
&& ($flags !~ /advapi32/)
&& ($flags !~ /shell32/)
&& ($flags !~ /omp/)
&& ($flags !~ /[0-9]+/)
) {
$linker_l .= $flags . " "
}


+ 1
- 0
f_check View File

@@ -335,6 +335,7 @@ if ($link ne "") {
&& ($flags !~ /advapi32/)
&& ($flags !~ /shell32/)
&& ($flags !~ /omp/)
&& ($flags !~ /[0-9]+/)
&& ($flags !~ /^\-l$/)
) {
$linker_l .= $flags . " ";


Loading…
Cancel
Save