We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf37182 commit 70001e1Copy full SHA for 70001e1
1 file changed
c_check.pl
@@ -65,6 +65,7 @@
65
$compiler = SUN if ($data =~ /COMPILER_SUN/);
66
$compiler = IBM if ($data =~ /COMPILER_IBM/);
67
$compiler = DEC if ($data =~ /COMPILER_DEC/);
68
+$compiler = FUJITSU if ($data =~ /COMPILER_FUJITSU/);
69
$compiler = GCC if ($compiler eq "");
70
71
$os = Linux if ($data =~ /OS_LINUX/);
@@ -189,6 +190,10 @@
189
190
$openmp = "-fopenmp";
191
}
192
193
+if ($compiler eq "FUJITSU") {
194
+ $openmp = "-Kopenmp";
195
+}
196
+
197
if ($defined == 0) {
198
$compiler_name .= " -m32" if ($binary eq "32");
199
$compiler_name .= " -m64" if ($binary eq "64");
0 commit comments