No strncasecmp with MSVC
[platform/upstream/openblas.git] / c_check
1 #!/usr/bin/perl
2
3 use File::Basename;
4 use File::Temp qw(tempfile);
5
6 # Checking cross compile
7 $hostos   = `uname -s | sed -e s/\-.*//`;    chop($hostos);
8 $hostarch = `uname -m | sed -e s/i.86/x86/`;chop($hostarch);
9 $hostarch = "x86_64" if ($hostarch eq "amd64");
10 $hostarch = "arm" if ($hostarch =~ /^arm.*/);
11 $hostarch = "arm64" if ($hostarch eq "aarch64");
12 $hostarch = "power" if ($hostarch =~ /^(powerpc|ppc).*/);
13 $hostarch = "zarch" if ($hostarch eq "s390x");
14
15 $tmpf = new File::Temp( UNLINK => 1 );
16 $binary = $ENV{"BINARY"};
17
18 $makefile = shift(@ARGV);
19 $config   = shift(@ARGV);
20
21 $compiler_name = join(" ", @ARGV);
22
23 # First, we need to know the target OS and compiler name
24
25 $data = `$compiler_name -E ctest.c`;
26
27 if ($?) {
28     printf STDERR "C Compiler ($compiler_name) is something wrong.\n";
29     die 1;
30 }
31
32 $cross_suffix = "";
33
34 if (dirname($compiler_name) ne ".") {
35     $cross_suffix .= dirname($compiler_name) . "/";
36 }
37
38 if (basename($compiler_name) =~ /([^\s]*-)(.*)/) {
39     $cross_suffix .= $1;
40 }
41
42 $compiler = "";
43 $compiler = LSB       if ($data =~ /COMPILER_LSB/);
44 $compiler = CLANG     if ($data =~ /COMPILER_CLANG/);
45 $compiler = PGI       if ($data =~ /COMPILER_PGI/);
46 $compiler = PATHSCALE if ($data =~ /COMPILER_PATHSCALE/);
47 $compiler = INTEL     if ($data =~ /COMPILER_INTEL/);
48 $compiler = OPEN64    if ($data =~ /COMPILER_OPEN64/);
49 $compiler = SUN       if ($data =~ /COMPILER_SUN/);
50 $compiler = IBM       if ($data =~ /COMPILER_IBM/);
51 $compiler = DEC       if ($data =~ /COMPILER_DEC/);
52 $compiler = GCC       if ($compiler eq "");
53
54 $os = Linux           if ($data =~ /OS_LINUX/);
55 $os = FreeBSD         if ($data =~ /OS_FREEBSD/);
56 $os = NetBSD          if ($data =~ /OS_NETBSD/);
57 $os = Darwin          if ($data =~ /OS_DARWIN/);
58 $os = SunOS           if ($data =~ /OS_SUNOS/);
59 $os = AIX             if ($data =~ /OS_AIX/);
60 $os = osf             if ($data =~ /OS_OSF/);
61 $os = WINNT           if ($data =~ /OS_WINNT/);
62 $os = CYGWIN_NT       if ($data =~ /OS_CYGWIN_NT/);
63 $os = Interix         if ($data =~ /OS_INTERIX/);
64 $os = Android         if ($data =~ /OS_ANDROID/);
65
66 $architecture = x86    if ($data =~ /ARCH_X86/);
67 $architecture = x86_64 if ($data =~ /ARCH_X86_64/);
68 $architecture = power  if ($data =~ /ARCH_POWER/);
69 $architecture = mips   if ($data =~ /ARCH_MIPS/);
70 $architecture = mips64 if ($data =~ /ARCH_MIPS64/);
71 $architecture = alpha  if ($data =~ /ARCH_ALPHA/);
72 $architecture = sparc  if ($data =~ /ARCH_SPARC/);
73 $architecture = ia64   if ($data =~ /ARCH_IA64/);
74 $architecture = arm    if ($data =~ /ARCH_ARM/);
75 $architecture = arm64  if ($data =~ /ARCH_ARM64/);
76 $architecture = zarch  if ($data =~ /ARCH_ZARCH/);
77
78 $defined = 0;
79
80 if ($os eq "AIX") {
81     $compiler_name .= " -maix32" if ($binary eq "32");
82     $compiler_name .= " -maix64" if ($binary eq "64");
83     $defined = 1;
84 }
85
86 if ($architecture eq "mips") {
87     $compiler_name .= " -mabi=32";
88     $defined = 1;
89 }
90
91 if ($architecture eq "mips64") {
92     $compiler_name .= " -mabi=n32" if ($binary eq "32");
93     $compiler_name .= " -mabi=64" if ($binary eq "64");
94     $defined = 1;
95 }
96
97 if (($architecture eq "arm") || ($architecture eq "arm64")) {
98     $defined = 1;
99 }
100
101 if ($architecture eq "zarch") {
102     $defined = 1;
103     $binary = 64;
104 }
105
106 if ($architecture eq "alpha") {
107     $defined = 1;
108     $binary = 64;
109 }
110
111 if ($architecture eq "ia64") {
112     $defined = 1;
113     $binary = 64;
114 }
115
116 if (($architecture eq "x86") && ($os ne Darwin) && ($os ne SunOS)) {
117     $defined = 1;
118     $binary =32;
119 }
120
121 if ($compiler eq "PGI") {
122     $compiler_name .= " -tp p7"    if ($binary eq "32");
123     $compiler_name .= " -tp p7-64" if ($binary eq "64");
124     $openmp = "-mp";
125     $defined = 1;
126 }
127
128 if ($compiler eq "IBM") {
129     $compiler_name .= " -q32"  if ($binary eq "32");
130     $compiler_name .= " -q64"  if ($binary eq "64");
131     $openmp = "-qsmp=omp";
132     $defined = 1;
133 }
134
135 if ($compiler eq "INTEL") {
136     $openmp = "-openmp";
137 }
138
139 if ($compiler eq "PATHSCALE") {
140     $openmp = "-mp";
141 }
142
143 if ($compiler eq "OPEN64") {
144     $openmp = "-mp";
145 }
146
147 if ($compiler eq "CLANG") {
148     $openmp = "-fopenmp";
149 }
150
151 if ($compiler eq "GCC" || $compiler eq "LSB") {
152     $openmp = "-fopenmp";
153 }
154
155 if ($defined == 0) {
156     $compiler_name .= " -m32" if ($binary eq "32");
157     $compiler_name .= " -m64" if ($binary eq "64");
158 }
159
160 # Do again
161
162 $data = `$compiler_name -E ctest.c`;
163
164 if ($?) {
165     printf STDERR "C Compiler ($compiler_name) is something wrong.\n";
166     die 1;
167 }
168
169 $have_msa = 0;
170 if (($architecture eq "mips") || ($architecture eq "mips64")) {
171     $code = '"addvi.b $w0, $w1, 1"';
172     $msa_flags = "-mmsa -mfp64 -msched-weight -mload-store-pairs";
173     print $tmpf "#include <msa.h>\n\n";
174     print $tmpf "void main(void){ __asm__ volatile($code); }\n";
175
176     $args = "$msa_flags -o $tmpf.o -x c $tmpf";
177     my @cmd = ("$compiler_name $args");
178     system(@cmd) == 0;
179     if ($? != 0) {
180         $have_msa = 0;
181     } else {
182         $have_msa = 1;
183     }
184     unlink("$tmpf.o");
185 }
186
187 $architecture = x86    if ($data =~ /ARCH_X86/);
188 $architecture = x86_64 if ($data =~ /ARCH_X86_64/);
189 $architecture = power  if ($data =~ /ARCH_POWER/);
190 $architecture = mips   if ($data =~ /ARCH_MIPS/);
191 $architecture = mips64 if ($data =~ /ARCH_MIPS64/);
192 $architecture = alpha  if ($data =~ /ARCH_ALPHA/);
193 $architecture = sparc  if ($data =~ /ARCH_SPARC/);
194 $architecture = ia64   if ($data =~ /ARCH_IA64/);
195 $architecture = arm    if ($data =~ /ARCH_ARM/);
196 $architecture = arm64  if ($data =~ /ARCH_ARM64/);
197 $architecture = zarch  if ($data =~ /ARCH_ZARCH/);
198
199 $binformat    = bin32;
200 $binformat    = bin64  if ($data =~ /BINARY_64/);
201
202 $data = `$compiler_name -S ctest1.c && grep globl ctest1.s | head -n 1 && rm -f ctest1.s`;
203
204 $data =~ /globl\s([_\.]*)(.*)/;
205
206 $need_fu      = $1;
207
208 $cross = 0;
209 $cross = 1 if ($os ne $hostos);
210
211 if ($architecture ne $hostarch) {
212     $cross = 1;
213     $cross = 0 if (($hostarch eq "x86_64") && ($architecture eq "x86"));
214     $cross = 0 if (($hostarch eq "mips64") && ($architecture eq "mips"));
215 }
216
217 $openmp = "" if $ENV{USE_OPENMP} != 1;
218
219 $linker_L = "";
220 $linker_l = "";
221 $linker_a = "";
222
223 {
224     $link = `$compiler_name -c ctest2.c -o ctest2.o 2>&1 && $compiler_name $openmp -v ctest2.o -o ctest2 2>&1 && rm -f ctest2.o ctest2 ctest2.exe`;
225
226     $link =~ s/\-Y\sP\,/\-Y/g;
227
228     @flags = split(/[\s\,\n]/, $link);
229     # remove leading and trailing quotes from each flag.
230     @flags = map {s/^['"]|['"]$//g; $_} @flags;
231
232     foreach $flags (@flags) {
233         if (
234             ($flags =~ /^\-L/)
235             && ($flags !~ /^-LIST:/)
236             && ($flags !~ /^-LANG:/)
237             ) {
238             $linker_L .= $flags . " "
239             }
240
241         if ($flags =~ /^\-Y/) {
242             $linker_L .= "-Wl,". $flags . " "
243             }
244
245         if ($flags =~ /^\--exclude-libs/) {
246             $linker_L .= "-Wl,". $flags . " ";
247             $flags="";
248            }
249
250         if (
251             ($flags =~ /^\-l/)
252             && ($flags !~ /gfortranbegin/)
253             && ($flags !~ /frtbegin/)
254             && ($flags !~ /pathfstart/)
255             && ($flags !~ /numa/)
256             && ($flags !~ /crt[0-9]/)
257             && ($flags !~ /gcc/)
258             && ($flags !~ /user32/)
259             && ($flags !~ /kernel32/)
260             && ($flags !~ /advapi32/)
261             && ($flags !~ /shell32/)
262             ) {
263             $linker_l .= $flags . " "
264         }
265
266         $linker_a .= $flags . " " if $flags =~ /\.a$/;
267     }
268
269 }
270
271 open(MAKEFILE, "> $makefile") || die "Can't create $makefile";
272 open(CONFFILE, "> $config"  ) || die "Can't create $config";
273
274 # print $data, "\n";
275
276 print MAKEFILE "OSNAME=$os\n";
277 print MAKEFILE "ARCH=$architecture\n";
278 print MAKEFILE "C_COMPILER=$compiler\n";
279 print MAKEFILE "BINARY32=\n" if $binformat ne bin32;
280 print MAKEFILE "BINARY64=\n" if $binformat ne bin64;
281 print MAKEFILE "BINARY32=1\n" if $binformat eq bin32;
282 print MAKEFILE "BINARY64=1\n" if $binformat eq bin64;
283 print MAKEFILE "FU=$need_fu\n" if $need_fu ne "";
284 print MAKEFILE "CROSS_SUFFIX=$cross_suffix\n" if $cross != 0 && $cross_suffix ne "";
285 print MAKEFILE "CROSS=1\n" if $cross != 0;
286 print MAKEFILE "CEXTRALIB=$linker_L $linker_l $linker_a\n";
287 print MAKEFILE "HAVE_MSA=1\n" if $have_msa eq 1;
288 print MAKEFILE "MSA_FLAGS=$msa_flags\n" if $have_msa eq 1;
289
290 $os           =~ tr/[a-z]/[A-Z]/;
291 $architecture =~ tr/[a-z]/[A-Z]/;
292 $compiler     =~ tr/[a-z]/[A-Z]/;
293
294 print CONFFILE "#define OS_$os\t1\n";
295 print CONFFILE "#define ARCH_$architecture\t1\n";
296 print CONFFILE "#define C_$compiler\t1\n";
297 print CONFFILE "#define __32BIT__\t1\n"  if $binformat eq bin32;
298 print CONFFILE "#define __64BIT__\t1\n"  if $binformat eq bin64;
299 print CONFFILE "#define FUNDERSCORE\t$need_fu\n" if $need_fu ne "";
300 print CONFFILE "#define HAVE_MSA\t1\n"  if $have_msa eq 1;
301
302 if ($os eq "LINUX") {
303
304 #    @pthread = split(/\s+/, `nm /lib/libpthread.so* | grep _pthread_create`);
305
306 #    if ($pthread[2] ne "") {
307 #       print CONFFILE "#define PTHREAD_CREATE_FUNC     $pthread[2]\n";
308 #    } else {
309         print CONFFILE "#define PTHREAD_CREATE_FUNC     pthread_create\n";
310 #    }
311 } else {
312     print CONFFILE "#define PTHREAD_CREATE_FUNC pthread_create\n";
313 }
314
315 close(MAKEFILE);
316 close(CONFFILE);