We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 758e34e commit 1d72b8bCopy full SHA for 1d72b8b
f_check
@@ -211,6 +211,10 @@ if (!$?) {
211
if ($?) {
212
$link = `$compiler $openmp -q32 -v ftest2.f 2>&1 && rm -f a.out a.exe`;
213
}
214
+ #For gfortran MIPS
215
+ if ($?) {
216
+ $link = `$compiler $openmp -mabi=n32 -v ftest2.f 2>&1 && rm -f a.out a.exe`;
217
+ }
218
$binary = "" if ($?);
219
220
@@ -219,6 +223,10 @@ if (!$?) {
223
224
$link = `$compiler $openmp -q64 -v ftest2.f 2>&1 && rm -f a.out a.exe`;
221
225
226
227
228
+ $link = `$compiler $openmp -mabi=64 -v ftest2.f 2>&1 && rm -f a.out a.exe`;
229
222
230
231
232
0 commit comments