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 61659f8 commit e17f969Copy full SHA for e17f969
c_check
@@ -223,14 +223,15 @@ $data =~ /globl\s([_\.]*)(.*)/;
223
$need_fu = $1;
224
225
$cross = 0;
226
-$cross = 1 if ($os ne $hostos);
227
228
if ($architecture ne $hostarch) {
229
$cross = 1;
230
$cross = 0 if (($hostarch eq "x86_64") && ($architecture eq "x86"));
231
$cross = 0 if (($hostarch eq "mips64") && ($architecture eq "mips"));
232
}
233
+$cross = 1 if ($os ne $hostos);
234
+
235
$openmp = "" if $ENV{USE_OPENMP} != 1;
236
237
$linker_L = "";
0 commit comments