Merge pull request #2785 from albertziegenhagel/always-generate-pkg-config
[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 = `uname -p` if ($hostos eq "AIX");
10 $hostarch = "x86_64" if ($hostarch eq "amd64");
11 $hostarch = "arm" if ($hostarch =~ /^arm.*/);
12 $hostarch = "arm64" if ($hostarch eq "aarch64");
13 $hostarch = "power" if ($hostarch =~ /^(powerpc|ppc).*/);
14 $hostarch = "zarch" if ($hostarch eq "s390x");
15
16 #$tmpf = new File::Temp( UNLINK => 1 );
17 $binary = $ENV{"BINARY"};
18
19 $makefile = shift(@ARGV);
20 $config   = shift(@ARGV);
21
22 $compiler_name = shift(@ARGV);
23 $flags = join(" ", @ARGV);
24
25 # First, we need to know the target OS and compiler name
26
27 $data = `$compiler_name $flags -E ctest.c`;
28
29 if ($?) {
30     printf STDERR "C Compiler ($compiler_name) is something wrong.\n";
31     die 1;
32 }
33
34 $cross_suffix = "";
35
36 eval "use File::Basename";
37 if ($@){ 
38     warn "could not load PERL module File::Basename, emulating its functionality";
39     my $dirnam = substr($compiler_name, 0, rindex($compiler_name, "/")-1 );
40     if ($dirnam ne ".") {
41         $cross_suffix .= $dirnam . "/";
42     }
43     my $basnam = substr($compiler_name, rindex($compiler_name,"/")+1, length($compiler_name)-rindex($compiler_name,"/")-1);
44         if ($basnam =~ /([^\s]*-)(.*)/) {
45         $cross_suffix .= $1;
46     }
47 } else {
48     if (dirname($compiler_name) ne ".") {
49         $cross_suffix .= dirname($compiler_name) . "/";
50     }
51
52     if (basename($compiler_name) =~ /([^\s]*-)(.*)/) {
53         $cross_suffix .= $1;
54     }
55 }
56
57 $compiler = "";
58 $compiler = LSB       if ($data =~ /COMPILER_LSB/);
59 $compiler = CLANG     if ($data =~ /COMPILER_CLANG/);
60 $compiler = PGI       if ($data =~ /COMPILER_PGI/);
61 $compiler = PATHSCALE if ($data =~ /COMPILER_PATHSCALE/);
62 $compiler = INTEL     if ($data =~ /COMPILER_INTEL/);
63 $compiler = OPEN64    if ($data =~ /COMPILER_OPEN64/);
64 $compiler = SUN       if ($data =~ /COMPILER_SUN/);
65 $compiler = IBM       if ($data =~ /COMPILER_IBM/);
66 $compiler = DEC       if ($data =~ /COMPILER_DEC/);
67 $compiler = GCC       if ($compiler eq "");
68
69 $os = Linux           if ($data =~ /OS_LINUX/);
70 $os = FreeBSD         if ($data =~ /OS_FREEBSD/);
71 $os = NetBSD          if ($data =~ /OS_NETBSD/);
72 $os = OpenBSD         if ($data =~ /OS_OPENBSD/);
73 $os = DragonFly       if ($data =~ /OS_DRAGONFLY/);
74 $os = Darwin          if ($data =~ /OS_DARWIN/);
75 $os = SunOS           if ($data =~ /OS_SUNOS/);
76 $os = AIX             if ($data =~ /OS_AIX/);
77 $os = osf             if ($data =~ /OS_OSF/);
78 $os = WINNT           if ($data =~ /OS_WINNT/);
79 $os = CYGWIN_NT       if ($data =~ /OS_CYGWIN_NT/);
80 $os = Interix         if ($data =~ /OS_INTERIX/);
81 $os = Android         if ($data =~ /OS_ANDROID/);
82 $os = Haiku           if ($data =~ /OS_HAIKU/);
83
84 $architecture = x86    if ($data =~ /ARCH_X86/);
85 $architecture = x86_64 if ($data =~ /ARCH_X86_64/);
86 $architecture = power  if ($data =~ /ARCH_POWER/);
87 $architecture = mips   if ($data =~ /ARCH_MIPS/);
88 $architecture = mips64 if ($data =~ /ARCH_MIPS64/);
89 $architecture = alpha  if ($data =~ /ARCH_ALPHA/);
90 $architecture = sparc  if ($data =~ /ARCH_SPARC/);
91 $architecture = ia64   if ($data =~ /ARCH_IA64/);
92 $architecture = arm    if ($data =~ /ARCH_ARM/);
93 $architecture = arm64  if ($data =~ /ARCH_ARM64/);
94 $architecture = zarch  if ($data =~ /ARCH_ZARCH/);
95
96 $defined = 0;
97
98 if ($os eq "AIX") {
99     $compiler_name .= " -maix32" if ($binary eq "32");
100     $compiler_name .= " -maix64" if ($binary eq "64");
101     $defined = 1;
102 }
103
104 if ($architecture eq "mips") {
105     $compiler_name .= " -mabi=32";
106     $defined = 1;
107 }
108
109 if ($architecture eq "mips64") {
110     $compiler_name .= " -mabi=n32" if ($binary eq "32");
111     $compiler_name .= " -mabi=64" if ($binary eq "64");
112     $defined = 1;
113 }
114
115 if (($architecture eq "arm") || ($architecture eq "arm64")) {
116     $defined = 1;
117 }
118
119 if ($architecture eq "zarch") {
120     $defined = 1;
121     $binary = 64;
122 }
123
124 if ($architecture eq "alpha") {
125     $defined = 1;
126     $binary = 64;
127 }
128
129 if ($architecture eq "ia64") {
130     $defined = 1;
131     $binary = 64;
132 }
133
134 if (($architecture eq "x86") && ($os ne Darwin) && ($os ne SunOS)) {
135     $defined = 1;
136     $binary =32;
137 }
138
139 if ($compiler eq "PGI") {
140     $compiler_name .= " -tp p7"    if ($binary eq "32");
141     $compiler_name .= " -tp p7-64" if ($binary eq "64");
142     $openmp = "-mp";
143     $defined = 1;
144 }
145
146 if ($compiler eq "IBM") {
147     $compiler_name .= " -q32"  if ($binary eq "32");
148     $compiler_name .= " -q64"  if ($binary eq "64");
149     $openmp = "-qsmp=omp";
150     $defined = 1;
151 }
152
153 if ($compiler eq "INTEL") {
154     $openmp = "-openmp";
155 }
156
157 if ($compiler eq "PATHSCALE") {
158     $openmp = "-mp";
159 }
160
161 if ($compiler eq "OPEN64") {
162     $openmp = "-mp";
163 }
164
165 if ($compiler eq "CLANG") {
166     $openmp = "-fopenmp";
167 }
168
169 if ($compiler eq "GCC" || $compiler eq "LSB") {
170     $openmp = "-fopenmp";
171 }
172
173 if ($defined == 0) {
174     $compiler_name .= " -m32" if ($binary eq "32");
175     $compiler_name .= " -m64" if ($binary eq "64");
176 }
177
178 # Do again
179
180 $data = `$compiler_name $flags -E ctest.c`;
181
182 if ($?) {
183     printf STDERR "C Compiler ($compiler_name) is something wrong.\n";
184     die 1;
185 }
186
187 $have_msa = 0;
188 if (($architecture eq "mips") || ($architecture eq "mips64")) {
189     eval "use File::Temp qw(tempfile)";
190     if ($@){ 
191         warn "could not load PERL module File::Temp, so could not check MSA capatibility";
192     } else {
193         $tmpf = new File::Temp( SUFFIX => '.c' , UNLINK => 1 );
194         $code = '"addvi.b $w0, $w1, 1"';
195         $msa_flags = "-mmsa -mfp64 -msched-weight -mload-store-pairs";
196         print $tmpf "#include <msa.h>\n\n";
197         print $tmpf "void main(void){ __asm__ volatile($code); }\n";
198
199         $args = "$msa_flags -o $tmpf.o $tmpf";
200         my @cmd = ("$compiler_name $flags $args >/dev/null 2>/dev/null");
201         system(@cmd) == 0;
202         if ($? != 0) {
203             $have_msa = 0;
204         } else {
205             $have_msa = 1;
206         }
207         unlink("$tmpf.o");
208     }
209 }
210
211 $architecture = x86    if ($data =~ /ARCH_X86/);
212 $architecture = x86_64 if ($data =~ /ARCH_X86_64/);
213 $architecture = power  if ($data =~ /ARCH_POWER/);
214 $architecture = mips   if ($data =~ /ARCH_MIPS/);
215 $architecture = mips64 if ($data =~ /ARCH_MIPS64/);
216 $architecture = alpha  if ($data =~ /ARCH_ALPHA/);
217 $architecture = sparc  if ($data =~ /ARCH_SPARC/);
218 $architecture = ia64   if ($data =~ /ARCH_IA64/);
219 $architecture = arm    if ($data =~ /ARCH_ARM/);
220 $architecture = arm64  if ($data =~ /ARCH_ARM64/);
221 $architecture = zarch  if ($data =~ /ARCH_ZARCH/);
222
223 $binformat    = bin32;
224 $binformat    = bin64  if ($data =~ /BINARY_64/);
225
226 $no_avx512= 0;
227 if (($architecture eq "x86") || ($architecture eq "x86_64")) {
228     eval "use File::Temp qw(tempfile)";
229     if ($@){ 
230         warn "could not load PERL module File::Temp, so could not check compiler compatibility with AVX512";
231         $no_avx512 = 0;
232     } else {
233 #       $tmpf = new File::Temp( UNLINK => 1 );
234         ($fh,$tmpf) = tempfile( SUFFIX => '.c' , UNLINK => 1 );
235         $code = '"vbroadcastss -4 * 4(%rsi), %zmm2"';
236         print $tmpf "#include <immintrin.h>\n\nint main(void){ __asm__ volatile($code); }\n";
237         $args = " -march=skylake-avx512 -c -o $tmpf.o $tmpf";
238         if ($compiler eq "PGI") {
239             $args = " -tp skylake -c -o $tmpf.o $tmpf";
240         }
241         my @cmd = ("$compiler_name $flags $args >/dev/null 2>/dev/null");
242         system(@cmd) == 0;
243         if ($? != 0) {
244             $no_avx512 = 1;
245         } else {
246             $no_avx512 = 0;
247         }
248         unlink("$tmpf.o");
249     }
250 }
251
252 $c11_atomics = 0;
253 if ($data =~ /HAVE_C11/) {
254     eval "use File::Temp qw(tempfile)";
255     if ($@){ 
256        warn "could not load PERL module File::Temp, so could not check compiler compatibility with C11";
257        $c11_atomics = 0;
258     } else {
259        ($fh,$tmpf) = tempfile( SUFFIX => '.c' , UNLINK => 1 );
260        print $tmpf "#include <stdatomic.h>\nint main(void){}\n";
261        $args = " -c -o $tmpf.o $tmpf";
262        my @cmd = ("$compiler_name $flags $args >/dev/null 2>/dev/null");
263        system(@cmd) == 0;
264        if ($? != 0) {
265            $c11_atomics = 0;
266        } else {
267            $c11_atomics = 1;
268        }
269        unlink("$tmpf.o");
270     }
271 }
272
273
274 $data = `$compiler_name $flags -S ctest1.c && grep globl ctest1.s | head -n 1 && rm -f ctest1.s`;
275
276 $data =~ /globl\s([_\.]*)(.*)/;
277
278 $need_fu      = $1;
279
280 $cross = 0;
281
282 if ($architecture ne $hostarch) {
283     $cross = 1;
284     $cross = 0 if (($hostarch eq "x86_64") && ($architecture eq "x86"));
285     $cross = 0 if (($hostarch eq "mips64") && ($architecture eq "mips"));
286 }
287
288 $cross = 1 if ($os ne $hostos);
289
290 $openmp = "" if $ENV{USE_OPENMP} != 1;
291
292 $linker_L = "";
293 $linker_l = "";
294 $linker_a = "";
295
296 {
297     $link = `$compiler_name $flags -c ctest2.c -o ctest2.o 2>&1 && $compiler_name $flags $openmp -v ctest2.o -o ctest2 2>&1 && rm -f ctest2.o ctest2 ctest2.exe`;
298
299     $link =~ s/\-Y\sP\,/\-Y/g;
300
301     @flags = split(/[\s\,\n]/, $link);
302     # remove leading and trailing quotes from each flag.
303     @flags = map {s/^['"]|['"]$//g; $_} @flags;
304
305     foreach $flags (@flags) {
306         if (
307             ($flags =~ /^\-L/)
308             && ($flags !~ /^-LIST:/)
309             && ($flags !~ /^-LANG:/)
310             ) {
311             $linker_L .= $flags . " "
312             }
313
314         if ($flags =~ /^\-Y/) {
315             $linker_L .= "-Wl,". $flags . " "
316             }
317
318         if ($flags =~ /^\--exclude-libs/) {
319             $linker_L .= "-Wl,". $flags . " ";
320             $flags="";
321            }
322
323         if (
324             ($flags =~ /^\-l/)
325             && ($flags !~ /gfortranbegin/)
326             && ($flags !~ /frtbegin/)
327             && ($flags !~ /pathfstart/)
328             && ($flags !~ /numa/)
329             && ($flags !~ /crt[0-9]/)
330             && ($flags !~ /gcc/)
331             && ($flags !~ /user32/)
332             && ($flags !~ /kernel32/)
333             && ($flags !~ /advapi32/)
334             && ($flags !~ /shell32/)
335             && ($flags !~ /omp/)
336             && ($flags !~ /[0-9]+/)
337             ) {
338             $linker_l .= $flags . " "
339         }
340
341         $linker_a .= $flags . " " if $flags =~ /\.a$/;
342     }
343
344 }
345
346 open(MAKEFILE, "> $makefile") || die "Can't create $makefile";
347 open(CONFFILE, "> $config"  ) || die "Can't create $config";
348
349 # print $data, "\n";
350
351 print MAKEFILE "OSNAME=$os\n";
352 print MAKEFILE "ARCH=$architecture\n";
353 print MAKEFILE "C_COMPILER=$compiler\n";
354 print MAKEFILE "BINARY32=\n" if $binformat ne bin32;
355 print MAKEFILE "BINARY64=\n" if $binformat ne bin64;
356 print MAKEFILE "BINARY32=1\n" if $binformat eq bin32;
357 print MAKEFILE "BINARY64=1\n" if $binformat eq bin64;
358 print MAKEFILE "FU=$need_fu\n" if $need_fu ne "";
359 print MAKEFILE "CROSS_SUFFIX=$cross_suffix\n" if $cross != 0 && $cross_suffix ne "";
360 print MAKEFILE "CROSS=1\n" if $cross != 0;
361 print MAKEFILE "CEXTRALIB=$linker_L $linker_l $linker_a\n";
362 print MAKEFILE "HAVE_MSA=1\n" if $have_msa eq 1;
363 print MAKEFILE "MSA_FLAGS=$msa_flags\n" if $have_msa eq 1;
364 print MAKEFILE "NO_AVX512=1\n" if $no_avx512 eq 1;
365
366 $os           =~ tr/[a-z]/[A-Z]/;
367 $architecture =~ tr/[a-z]/[A-Z]/;
368 $compiler     =~ tr/[a-z]/[A-Z]/;
369
370 print CONFFILE "#define OS_$os\t1\n";
371 print CONFFILE "#define ARCH_$architecture\t1\n";
372 print CONFFILE "#define C_$compiler\t1\n";
373 print CONFFILE "#define __32BIT__\t1\n"  if $binformat eq bin32;
374 print CONFFILE "#define __64BIT__\t1\n"  if $binformat eq bin64;
375 print CONFFILE "#define FUNDERSCORE\t$need_fu\n" if $need_fu ne "";
376 print CONFFILE "#define HAVE_MSA\t1\n"  if $have_msa eq 1;
377 print CONFFILE "#define HAVE_C11\t1\n" if $c11_atomics eq 1;
378
379
380 if ($os eq "LINUX") {
381
382 #    @pthread = split(/\s+/, `nm /lib/libpthread.so* | grep _pthread_create`);
383
384 #    if ($pthread[2] ne "") {
385 #       print CONFFILE "#define PTHREAD_CREATE_FUNC     $pthread[2]\n";
386 #    } else {
387         print CONFFILE "#define PTHREAD_CREATE_FUNC     pthread_create\n";
388 #    }
389 } else {
390     print CONFFILE "#define PTHREAD_CREATE_FUNC pthread_create\n";
391 }
392
393 close(MAKEFILE);
394 close(CONFFILE);