Merge pull request #868 from sva-img/develop

build fix for MIPS 32 bit
This commit is contained in:
Zhang Xianyi 2016-05-09 10:54:30 -04:00
commit 81794ccb9a
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ if (!$?) {
} }
#For gfortran MIPS #For gfortran MIPS
if ($?) { if ($?) {
$link = `$compiler $openmp -mabi=n32 -v ftest2.f 2>&1 && rm -f a.out a.exe`; $link = `$compiler $openmp -mabi=32 -v ftest2.f 2>&1 && rm -f a.out a.exe`;
} }
$binary = "" if ($?); $binary = "" if ($?);
} }