08bb839de5e4cf3e19796c7d1293928ded37909d
[openssl.git] / Configurations / 10-main.conf
1 ## -*- mode: perl; -*-
2 ## Standard openssl configuration targets.
3
4 # Helper functions for the Windows configs
5 my $vc_win64a_info = {};
6 sub vc_win64a_info {
7     unless (%$vc_win64a_info) {
8         if (`nasm -v 2>NUL` =~ /NASM version ([0-9]+\.[0-9]+)/ && $1 >= 2.0) {
9             $vc_win64a_info = { as        => "nasm",
10                                 asflags   => "-f win64 -DNEAR -Ox -g",
11                                 asoutflag => "-o" };
12         } elsif ($disabled{asm}) {
13             $vc_win64a_info = { as        => "ml64",
14                                 asflags   => "/c /Cp /Cx /Zi",
15                                 asoutflag => "/Fo" };
16         } else {
17             $die->("NASM not found - please read INSTALL and NOTES.WIN for further details\n");
18             $vc_win64a_info = { as        => "{unknown}",
19                                 asflags   => "",
20                                 asoutflag => "" };
21         }
22     }
23     return $vc_win64a_info;
24 }
25
26 my $vc_win32_info = {};
27 sub vc_win32_info {
28     unless (%$vc_win32_info) {
29         my $ver=`nasm -v 2>NUL`;
30         my $vew=`nasmw -v 2>NUL`;
31         if ($ver ne "" || $vew ne "") {
32             $vc_win32_info = { as        => $ver ge $vew ? "nasm" : "nasmw",
33                                asflags   => "-f win32",
34                                asoutflag => "-o",
35                                perlasm_scheme => "win32n" };
36         } elsif ($disabled{asm}) {
37             $vc_win32_info = { as        => "ml",
38                                asflags   => "/nologo /Cp /coff /c /Cx /Zi",
39                                asoutflag => "/Fo",
40                                perlasm_scheme => "win32" };
41         } else {
42             $die->("NASM not found - please read INSTALL and NOTES.WIN for further details\n");
43             $vc_win32_info = { as        => "{unknown}",
44                                asflags   => "",
45                                asoutflag => "",
46                                perlasm_scheme => "win32" };
47         }
48     }
49     return $vc_win32_info;
50 }
51
52 my $vc_wince_info = {};
53 sub vc_wince_info {
54     unless (%$vc_wince_info) {
55         # sanity check
56         $die->('%OSVERSION% is not defined') if (!defined(env('OSVERSION')));
57         $die->('%PLATFORM% is not defined')  if (!defined(env('PLATFORM')));
58         $die->('%TARGETCPU% is not defined') if (!defined(env('TARGETCPU')));
59
60         #
61         # Idea behind this is to mimic flags set by eVC++ IDE...
62         #
63         my $wcevers = env('OSVERSION');                     # WCENNN
64         my $wcevernum;
65         my $wceverdotnum;
66         if ($wcevers =~ /^WCE([1-9])([0-9]{2})$/) {
67             $wcevernum = "$1$2";
68             $wceverdotnum = "$1.$2";
69         } else {
70             $die->('%OSVERSION% value is insane');
71             $wcevernum = "{unknown}";
72             $wceverdotnum = "{unknown}";
73         }
74         my $wcecdefs = "-D_WIN32_WCE=$wcevernum -DUNDER_CE=$wcevernum"; # -D_WIN32_WCE=NNN
75         my $wcelflag = "/subsystem:windowsce,$wceverdotnum";        # ...,N.NN
76
77         my $wceplatf =  env('PLATFORM');
78
79         $wceplatf =~ tr/a-z0-9 /A-Z0-9_/;
80         $wcecdefs .= " -DWCE_PLATFORM_$wceplatf";
81
82         my $wcetgt = env('TARGETCPU');                      # just shorter name...
83       SWITCH: for($wcetgt) {
84           /^X86/        && do { $wcecdefs.=" -Dx86 -D_X86_ -D_i386_ -Di_386_";
85                                 $wcelflag.=" /machine:X86";     last; };
86           /^ARMV4[IT]/  && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
87                                 $wcecdefs.=" -DTHUMB -D_THUMB_" if($wcetgt=~/T$/);
88                                 $wcecdefs.=" -QRarch4T -QRinterwork-return";
89                                 $wcelflag.=" /machine:THUMB";   last; };
90           /^ARM/        && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
91                                 $wcelflag.=" /machine:ARM";     last; };
92           /^MIPSIV/     && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
93                                 $wcecdefs.=" -D_MIPS64 -QMmips4 -QMn32";
94                                 $wcelflag.=" /machine:MIPSFPU"; last; };
95           /^MIPS16/     && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
96                                 $wcecdefs.=" -DMIPSII -QMmips16";
97                                 $wcelflag.=" /machine:MIPS16";  last; };
98           /^MIPSII/     && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
99                                 $wcecdefs.=" -QMmips2";
100                                 $wcelflag.=" /machine:MIPS";    last; };
101           /^R4[0-9]{3}/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000";
102                                 $wcelflag.=" /machine:MIPS";    last; };
103           /^SH[0-9]/    && do { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_ -DSHx";
104                                 $wcecdefs.=" -Qsh4" if ($wcetgt =~ /^SH4/);
105                                 $wcelflag.=" /machine:$wcetgt"; last; };
106           { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_";
107             $wcelflag.=" /machine:$wcetgt";                     last; };
108       }
109
110         $vc_wince_info = { cflags => $wcecdefs,
111                            lflags => $wcelflag };
112     }
113     return $vc_wince_info;
114 }
115
116 # Helper functions for the VMS configs
117 my $vms_info = {};
118 sub vms_info {
119     unless (%$vms_info) {
120         my $pointer_size = shift;
121         my $pointer_size_str = $pointer_size == 0 ? "" : "$pointer_size";
122
123         $vms_info->{disable_warns} = [ ];
124         $vms_info->{pointer_size} = $pointer_size_str;
125         if ($pointer_size == 64) {
126             `PIPE CC /NOCROSS_REFERENCE /NOLIST /NOOBJECT /WARNINGS = DISABLE = ( MAYLOSEDATA3, EMPTYFILE ) NL: 2> NL:`;
127             if ($? == 0) {
128                 push @{$vms_info->{disable_warns}}, "MAYLOSEDATA3";
129             }
130         }
131
132         unless ($disabled{zlib}) {
133             my $default_zlib = 'GNV$LIBZSHR' . $pointer_size_str;
134             if (defined($disabled{"zlib-dynamic"})) {
135                 $vms_info->{zlib} = $withargs{zlib_lib} || "$default_zlib/SHARE";
136             } else {
137                 $vms_info->{def_zlib} = $withargs{zlib_lib} || $default_zlib;
138                 # In case the --with-zlib-lib value contains something like
139                 # /SHARE or /LIB or so at the end, remove it.
140                 $vms_info->{def_zlib} =~ s|/.*$||g;
141             }
142         }
143     }
144     return $vms_info;
145 }
146
147 my %targets = (
148
149 #### Basic configs that should work on any 32-bit box
150     "gcc" => {
151         cc               => "gcc",
152         cflags           => picker(debug   => "-O0 -g",
153                                    release => "-O3"),
154         thread_scheme    => "(unknown)",
155         bn_ops           => "BN_LLONG",
156     },
157     "cc" => {
158         cc               => "cc",
159         cflags           => "-O",
160         thread_scheme    => "(unknown)",
161     },
162
163 #### VOS Configurations
164     "vos-gcc" => {
165         inherit_from     => [ "BASE_unix" ],
166         cc               => "gcc",
167         cflags           => picker(default => "-Wall -DOPENSSL_SYS_VOS -D_POSIX_C_SOURCE=200112L -D_BSD -D_VOS_EXTENDED_NAMES -DB_ENDIAN",
168                                    debug   => "-O0 -g",
169                                    release => "-O3"),
170         thread_scheme    => "(unknown)",
171         sys_id           => "VOS",
172         lflags           => "-Wl,-map",
173         bn_ops           => "BN_LLONG",
174         shared_extension => ".so",
175     },
176
177 #### Solaris configurations
178     "solaris-common" => {
179         inherit_from     => [ "BASE_unix" ],
180         template         => 1,
181         cflags           => "-DFILIO_H",
182         ex_libs          => add("-lsocket -lnsl -ldl"),
183         dso_scheme       => "dlfcn",
184         thread_scheme    => "pthreads",
185         shared_target    => "solaris-shared",
186         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
187     },
188 #### Solaris x86 with GNU C setups
189     "solaris-x86-gcc" => {
190         # NB. GNU C has to be configured to use GNU assembler, and not
191         # /usr/ccs/bin/as. Failure to comply will result in compile
192         # failures [at least] in 32-bit build.
193         inherit_from     => [ "solaris-common", asm("x86_elf_asm") ],
194         cc               => "gcc",
195         cflags           => add_before(picker(default => "-Wall -DL_ENDIAN",
196                                               debug   => "-O0 -g",
197                                               release => "-O3 -fomit-frame-pointer"),
198                                        threads("-pthread")),
199         bn_ops           => "BN_LLONG",
200         shared_cflag     => "-fPIC",
201         shared_ldflag    => "-shared -static-libgcc",
202     },
203     "solaris64-x86_64-gcc" => {
204         # -shared -static-libgcc might appear controversial, but modules
205         # taken from static libgcc do not have relocations and linking
206         # them into our shared objects doesn't have any negative side
207         # effects. On the contrary, doing so makes it possible to use
208         # gcc shared build with Sun C. Given that gcc generates faster
209         # code [thanks to inline assembler], I would actually recommend
210         # to consider using gcc shared build even with vendor compiler:-)
211         #                        -- <appro@openssl.org>
212         inherit_from     => [ "solaris-common", asm("x86_64_asm") ],
213         cc               => "gcc",
214         cflags           => add_before(picker(default => "-m64 -Wall -DL_ENDIAN",
215                                               debug   => "-O0 -g",
216                                               release => "-O3"),
217                                        threads("-pthread")),
218         bn_ops           => "SIXTY_FOUR_BIT_LONG",
219         perlasm_scheme   => "elf",
220         shared_cflag     => "-fPIC",
221         shared_ldflag    => "-shared -static-libgcc",
222         multilib         => "/64",
223     },
224
225 #### Solaris x86 with Sun C setups
226     # There used to be solaris-x86-cc target, but it was removed,
227     # primarily because vendor assembler can't assemble our modules
228     # with -KPIC flag. As result it, assembly support, was not even
229     # available as option. But its lack means lack of side-channel
230     # resistant code, which is incompatible with security by todays
231     # standards. Fortunately gcc is readily available prepackaged
232     # option, which we can firmly point at...
233     #
234     # On related note, solaris64-x86_64-cc target won't compile code
235     # paths utilizing AVX and post-Haswell instruction extensions.
236     # Consider switching to solaris64-x86_64-gcc even here...
237     #
238     "solaris64-x86_64-cc" => {
239         inherit_from     => [ "solaris-common", asm("x86_64_asm") ],
240         cc               => "cc",
241         cflags           => add_before(picker(default => "-xarch=generic64 -xstrconst -Xa -DL_ENDIAN",
242                                               debug   => "-g",
243                                               release => "-xO5 -xdepend -xbuiltin"),
244                                        threads("-D_REENTRANT")),
245         thread_scheme    => "pthreads",
246         lflags           => add(threads("-mt")),
247         ex_libs          => add(threads("-lpthread")),
248         bn_ops           => "SIXTY_FOUR_BIT_LONG",
249         perlasm_scheme   => "elf",
250         shared_cflag     => "-KPIC",
251         shared_ldflag    => "-G -dy -z text",
252         multilib         => "/64",
253     },
254
255 #### SPARC Solaris with GNU C setups
256     "solaris-sparcv7-gcc" => {
257         inherit_from     => [ "solaris-common" ],
258         cc               => "gcc",
259         cflags           => add_before(picker(default => "-Wall -DB_ENDIAN -DBN_DIV2W",
260                                               debug   => "-O0 -g",
261                                               release => "-O3"),
262                                        threads("-pthread")),
263         bn_ops           => "BN_LLONG RC4_CHAR",
264         shared_cflag     => "-fPIC",
265         shared_ldflag    => "-shared",
266     },
267     "solaris-sparcv8-gcc" => {
268         inherit_from     => [ "solaris-sparcv7-gcc", asm("sparcv8_asm") ],
269         cflags           => add_before("-mcpu=v8"),
270     },
271     "solaris-sparcv9-gcc" => {
272         # -m32 should be safe to add as long as driver recognizes
273         # -mcpu=ultrasparc
274         inherit_from     => [ "solaris-sparcv7-gcc", asm("sparcv9_asm") ],
275         cflags           => add_before("-m32 -mcpu=ultrasparc"),
276     },
277     "solaris64-sparcv9-gcc" => {
278         inherit_from     => [ "solaris-sparcv9-gcc" ],
279         cflags           => sub { my $f=join(" ",@_); $f =~ s/\-m32/-m64/; $f; },
280         bn_ops           => "BN_LLONG RC4_CHAR",
281         multilib         => "/64",
282     },
283
284 #### SPARC Solaris with Sun C setups
285 # SC4.0 doesn't pass 'make test', upgrade to SC5.0 or SC4.2.
286 # SC4.2 is ok, better than gcc even on bn as long as you tell it -xarch=v8
287 # SC5.0 note: Compiler common patch 107357-01 or later is required!
288     "solaris-sparcv7-cc" => {
289         inherit_from     => [ "solaris-common" ],
290         cc               => "cc",
291         cflags           => add_before(picker(default => "-xstrconst -Xa -DB_ENDIAN -DBN_DIV2W",
292                                               debug   => "-g",
293                                               release => "-xO5 -xdepend"),
294                                        threads("-D_REENTRANT")),
295         lflags           => add(threads("-mt")),
296         ex_libs          => add(threads("-lpthread")),
297         bn_ops           => "BN_LLONG RC4_CHAR",
298         shared_cflag     => "-KPIC",
299         shared_ldflag    => "-G -dy -z text",
300     },
301 ####
302     "solaris-sparcv8-cc" => {
303         inherit_from     => [ "solaris-sparcv7-cc", asm("sparcv8_asm") ],
304         cflags           => add_before("-xarch=v8"),
305     },
306     "solaris-sparcv9-cc" => {
307         inherit_from     => [ "solaris-sparcv7-cc", asm("sparcv9_asm") ],
308         cflags           => add_before("-xarch=v8plus"),
309     },
310     "solaris64-sparcv9-cc" => {
311         inherit_from     => [ "solaris-sparcv7-cc", asm("sparcv9_asm") ],
312         cflags           => add_before("-xarch=v9"),
313         bn_ops           => "BN_LLONG RC4_CHAR",
314         multilib         => "/64",
315     },
316
317 #### IRIX 6.x configs
318 # Only N32 and N64 ABIs are supported.
319     "irix-mips3-gcc" => {
320         inherit_from     => [ "BASE_unix", asm("mips64_asm") ],
321         cc               => "gcc",
322         cflags           => combine(picker(default => "-mabi=n32 -DB_ENDIAN -DBN_DIV3W",
323                                            debug   => "-g -O0",
324                                            release => "-O3"),
325                                     threads("-D_SGI_MP_SOURCE")),
326         ex_libs          => add(threads("-lpthread")),
327         bn_ops           => "RC4_CHAR SIXTY_FOUR_BIT",
328         thread_scheme    => "pthreads",
329         perlasm_scheme   => "n32",
330         dso_scheme       => "dlfcn",
331         shared_target    => "irix-shared",
332         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
333         multilib         => "32",
334     },
335     "irix-mips3-cc" => {
336         inherit_from     => [ "BASE_unix", asm("mips64_asm") ],
337         cc               => "cc",
338         cflags           => combine(picker(default => "-n32 -mips3 -use_readonly_const -G0 -rdata_shared -DB_ENDIAN -DBN_DIV3W",
339                                            debug   => "-g -O0",
340                                            release => "-O2"),
341                                     threads("-D_SGI_MP_SOURCE")),
342         ex_libs          => add(threads("-lpthread")),
343         bn_ops           => "RC4_CHAR SIXTY_FOUR_BIT",
344         thread_scheme    => "pthreads",
345         perlasm_scheme   => "n32",
346         dso_scheme       => "dlfcn",
347         shared_target    => "irix-shared",
348         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
349         multilib         => "32",
350     },
351     # N64 ABI builds.
352     "irix64-mips4-gcc" => {
353         inherit_from     => [ "BASE_unix", asm("mips64_asm") ],
354         cc               => "gcc",
355         cflags           => combine(picker(default => "-mabi=64 -mips4 -DB_ENDIAN -DBN_DIV3W",
356                                            debug   => "-g -O0",
357                                            release => "-O3"),
358                                     threads("-D_SGI_MP_SOURCE")),
359         ex_libs          => add(threads("-lpthread")),
360         bn_ops           => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
361         thread_scheme    => "pthreads",
362         perlasm_scheme   => "64",
363         dso_scheme       => "dlfcn",
364         shared_target    => "irix-shared",
365         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
366         multilib         => "64",
367     },
368     "irix64-mips4-cc" => {
369         inherit_from     => [ "BASE_unix", asm("mips64_asm") ],
370         cc               => "cc",
371         cflags           => combine(picker(default => "-64 -mips4 -use_readonly_const -G0 -rdata_shared -DB_ENDIAN -DBN_DIV3W",
372                                            debug   => "-g -O0",
373                                            release => "-O2"),
374                                     threads("-D_SGI_MP_SOURCE")),
375         ex_libs          => add(threads("-lpthread")),
376         bn_ops           => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
377         thread_scheme    => "pthreads",
378         perlasm_scheme   => "64",
379         dso_scheme       => "dlfcn",
380         shared_target    => "irix-shared",
381         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
382         multilib         => "64",
383     },
384
385 #### Unified HP-UX ANSI C configs.
386 # Special notes:
387 # - Originally we were optimizing at +O4 level. It should be noted
388 #   that the only difference between +O3 and +O4 is global inter-
389 #   procedural analysis. As it has to be performed during the link
390 #   stage the compiler leaves behind certain pseudo-code in lib*.a
391 #   which might be release or even patch level specific. Generating
392 #   the machine code for and analyzing the *whole* program appears
393 #   to be *extremely* memory demanding while the performance gain is
394 #   actually questionable. The situation is intensified by the default
395 #   HP-UX data set size limit (infamous 'maxdsiz' tunable) of 64MB
396 #   which is way too low for +O4. In other words, doesn't +O3 make
397 #   more sense?
398 # - Keep in mind that the HP compiler by default generates code
399 #   suitable for execution on the host you're currently compiling at.
400 #   If the toolkit is meant to be used on various PA-RISC processors
401 #   consider './Configure hpux-parisc-[g]cc +DAportable'.
402 # - -DMD32_XARRAY triggers workaround for compiler bug we ran into in
403 #   32-bit message digests. (For the moment of this writing) HP C
404 #   doesn't seem to "digest" too many local variables (they make "him"
405 #   chew forever:-). For more details look-up MD32_XARRAY comment in
406 #   crypto/sha/sha_lcl.h.
407 # - originally there were 32-bit hpux-parisc2-* targets. They were
408 #   scrapped, because a) they were not interchangeable with other 32-bit
409 #   targets; b) performance-critical 32-bit assembly modules implement
410 #   even PA-RISC 2.0-specific code paths, which are chosen at run-time,
411 #   thus adequate performance is provided even with PA-RISC 1.1 build.
412     "hpux-parisc-gcc" => {
413         inherit_from     => [ "BASE_unix" ],
414         cc               => "gcc",
415         cflags           => combine(picker(default => "-DB_ENDIAN -DBN_DIV2W",
416                                            debug   => "-O0 -g",
417                                            release => "-O3"),
418                                     threads("-pthread")),
419         ex_libs          => add("-Wl,+s -ldld"),
420         bn_ops           => "BN_LLONG",
421         thread_scheme    => "pthreads",
422         dso_scheme       => "dl",
423         shared_target    => "hpux-shared",
424         shared_cflag     => "-fPIC",
425         shared_ldflag    => "-shared",
426         shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
427     },
428     "hpux-parisc1_1-gcc" => {
429         inherit_from     => [ "hpux-parisc-gcc", asm("parisc11_asm") ],
430         multilib         => "/pa1.1",
431     },
432     "hpux64-parisc2-gcc" => {
433         inherit_from     => [ "BASE_unix", asm("parisc20_64_asm") ],
434         cc               => "gcc",
435         cflags           => combine(picker(default => "-DB_ENDIAN",
436                                            debug   => "-O0 -g",
437                                            release => "-O3"),
438                                     threads("-D_REENTRANT")),
439         ex_libs          => add("-ldl"),
440         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
441         thread_scheme    => "pthreads",
442         dso_scheme       => "dlfcn",
443         shared_target    => "hpux-shared",
444         shared_cflag     => "-fpic",
445         shared_ldflag    => "-shared",
446         shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
447         multilib         => "/pa20_64",
448     },
449
450     # More attempts at unified 10.X and 11.X targets for HP C compiler.
451     "hpux-parisc-cc" => {
452         inherit_from     => [ "BASE_unix" ],
453         cc               => "cc",
454         cflags           => combine(picker(default => "+Optrs_strongly_typed -Ae +ESlit -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY",
455                                            debug   => "+O0 +d -g",
456                                            release => "+O3"),
457                                     threads("-D_REENTRANT")),
458         ex_libs          => add("-Wl,+s -ldld",threads("-lpthread")),
459         bn_ops           => "RC4_CHAR",
460         thread_scheme    => "pthreads",
461         dso_scheme       => "dl",
462         shared_target    => "hpux-shared",
463         shared_cflag     => "+Z",
464         shared_ldflag    => "-b",
465         shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
466     },
467     "hpux-parisc1_1-cc" => {
468         inherit_from     => [ "hpux-parisc-cc", asm("parisc11_asm") ],
469         cflags           => add_before("+DA1.1"),
470         multilib         => "/pa1.1",
471     },
472     "hpux64-parisc2-cc" => {
473         inherit_from     => [ "BASE_unix", asm("parisc20_64_asm") ],
474         cc               => "cc",
475         cflags           => combine(picker(default => "+DD64 +Optrs_strongly_typed -Ae +ESlit -DB_ENDIAN -DMD32_XARRAY",
476                                            debug   => "+O0 +d -g",
477                                            release => "+O3"),
478                                     threads("-D_REENTRANT")),
479         ex_libs          => add("-ldl",threads("-lpthread")),
480         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
481         thread_scheme    => "pthreads",
482         dso_scheme       => "dlfcn",
483         shared_target    => "hpux-shared",
484         shared_cflag     => "+Z",
485         shared_ldflag    => "-b",
486         shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
487         multilib         => "/pa20_64",
488     },
489
490     # HP/UX IA-64 targets
491     "hpux-ia64-cc" => {
492         inherit_from     => [ "BASE_unix", asm("ia64_asm") ],
493         cc               => "cc",
494         cflags           => combine(picker(default => "-Ae +DD32 +Olit=all -z -DB_ENDIAN",
495                                            debug   => "+O0 +d -g",
496                                            release => "+O2"),
497                                     threads("-D_REENTRANT")),
498         ex_libs          => add("-ldl",threads("-lpthread")),
499         bn_ops           => "SIXTY_FOUR_BIT",
500         thread_scheme    => "pthreads",
501         dso_scheme       => "dlfcn",
502         shared_target    => "hpux-shared",
503         shared_cflag     => "+Z",
504         shared_ldflag    => "-b",
505         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
506         multilib         => "/hpux32",
507     },
508     "hpux64-ia64-cc" => {
509         inherit_from     => [ "BASE_unix", asm("ia64_asm") ],
510         cc               => "cc",
511         cflags           => combine(picker(default => "-Ae +DD64 +Olit=all -z -DB_ENDIAN",
512                                            debug   => "+O0 +d -g",
513                                            release => "+O3"),
514                                     threads("-D_REENTRANT")),
515         ex_libs          => add("-ldl", threads("-lpthread")),
516         bn_ops           => "SIXTY_FOUR_BIT_LONG",
517         thread_scheme    => "pthreads",
518         dso_scheme       => "dlfcn",
519         shared_target    => "hpux-shared",
520         shared_cflag     => "+Z",
521         shared_ldflag    => "-b",
522         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
523         multilib         => "/hpux64",
524     },
525     # GCC builds...
526     "hpux-ia64-gcc" => {
527         inherit_from     => [ "BASE_unix", asm("ia64_asm") ],
528         cc               => "gcc",
529         cflags           => combine(picker(default => "-DB_ENDIAN",
530                                            debug   => "-O0 -g",
531                                            release => "-O3"),
532                                     threads("-pthread")),
533         ex_libs          => add("-ldl"),
534         bn_ops           => "SIXTY_FOUR_BIT",
535         thread_scheme    => "pthreads",
536         dso_scheme       => "dlfcn",
537         shared_target    => "hpux-shared",
538         shared_cflag     => "-fpic",
539         shared_ldflag    => "-shared",
540         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
541         multilib         => "/hpux32",
542     },
543     "hpux64-ia64-gcc" => {
544         inherit_from     => [ "BASE_unix", asm("ia64_asm") ],
545         cc               => "gcc",
546         cflags           => combine(picker(default => "-mlp64 -DB_ENDIAN",
547                                            debug   => "-O0 -g",
548                                            release => "-O3"),
549                                     threads("-pthread")),
550         ex_libs          => add("-ldl"),
551         bn_ops           => "SIXTY_FOUR_BIT_LONG",
552         thread_scheme    => "pthreads",
553         dso_scheme       => "dlfcn",
554         shared_target    => "hpux-shared",
555         shared_cflag     => "-fpic",
556         shared_ldflag    => "-shared",
557         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
558         multilib         => "/hpux64",
559     },
560
561 #### HP MPE/iX http://jazz.external.hp.com/src/openssl/
562     "MPE/iX-gcc" => {
563         inherit_from     => [ "BASE_unix" ],
564         cc               => "gcc",
565         cflags           => "-D_ENDIAN -DBN_DIV2W -O3 -D_POSIX_SOURCE -D_SOCKET_SOURCE -I/SYSLOG/PUB",
566         sys_id           => "MPE",
567         ex_libs          => add("-L/SYSLOG/PUB -lsyslog -lsocket -lcurses"),
568         thread_scheme    => "(unknown)",
569         bn_ops           => "BN_LLONG",
570     },
571
572 #### DEC Alpha Tru64 targets. Tru64 is marketing name for OSF/1 version 4
573 #### and forward. In reality 'uname -s' still returns "OSF1". Originally
574 #### there were even osf1-* configs targeting prior versions provided,
575 #### but not anymore...
576     "tru64-alpha-gcc" => {
577         inherit_from     => [ "BASE_unix", asm("alpha_asm") ],
578         cc               => "gcc",
579         cflags           => combine("-std=c9x -D_XOPEN_SOURCE=500 -D_OSF_SOURCE -O3",
580                                     threads("-pthread")),
581         ex_libs          => "-lrt",    # for mlock(2)
582         bn_ops           => "SIXTY_FOUR_BIT_LONG",
583         thread_scheme    => "pthreads",
584         dso_scheme       => "dlfcn",
585         shared_target    => "alpha-osf1-shared",
586         shared_extension => ".so",
587     },
588     "tru64-alpha-cc" => {
589         inherit_from     => [ "BASE_unix", asm("alpha_asm") ],
590         cc               => "cc",
591         cflags           => combine("-std1 -D_XOPEN_SOURCE=500 -D_OSF_SOURCE -tune host -fast -readonly_strings",
592                                     threads("-pthread")),
593         ex_libs          => "-lrt",    # for mlock(2)
594         bn_ops           => "SIXTY_FOUR_BIT_LONG",
595         thread_scheme    => "pthreads",
596         dso_scheme       => "dlfcn",
597         shared_target    => "alpha-osf1-shared",
598         shared_ldflag    => "-msym",
599         shared_extension => ".so",
600     },
601
602 ####
603 #### Variety of LINUX:-)
604 ####
605 # *-generic* is endian-neutral target, but ./config is free to
606 # throw in -D[BL]_ENDIAN, whichever appropriate...
607     "linux-generic32" => {
608         inherit_from     => [ "BASE_unix" ],
609         cc               => "gcc",
610         cxx              => "g++",
611         cflags           => combine(picker(default => "-Wall",
612                                            debug   => "-O0 -g",
613                                            release => "-O3"),
614                                     threads("-pthread")),
615         ex_libs          => add("-ldl"),
616         bn_ops           => "BN_LLONG RC4_CHAR",
617         thread_scheme    => "pthreads",
618         dso_scheme       => "dlfcn",
619         shared_target    => "linux-shared",
620         shared_cflag     => "-fPIC -DOPENSSL_USE_NODELETE",
621         shared_ldflag    => "-Wl,-znodelete",
622         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
623     },
624     "linux-generic64" => {
625         inherit_from     => [ "linux-generic32" ],
626         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
627     },
628
629     "linux-ppc" => {
630         inherit_from     => [ "linux-generic32", asm("ppc32_asm") ],
631         perlasm_scheme   => "linux32",
632     },
633     "linux-ppc64" => {
634         inherit_from     => [ "linux-generic64", asm("ppc64_asm") ],
635         cflags           => add("-m64 -DB_ENDIAN"),
636         perlasm_scheme   => "linux64",
637         multilib         => "64",
638     },
639     "linux-ppc64le" => {
640         inherit_from     => [ "linux-generic64", asm("ppc64_asm") ],
641         cflags           => add("-m64 -DL_ENDIAN"),
642         perlasm_scheme   => "linux64le",
643     },
644
645     "linux-armv4" => {
646         ################################################################
647         # Note that -march is not among compiler options in linux-armv4
648         # target description. Not specifying one is intentional to give
649         # you choice to:
650         #
651         # a) rely on your compiler default by not specifying one;
652         # b) specify your target platform explicitly for optimal
653         # performance, e.g. -march=armv6 or -march=armv7-a;
654         # c) build "universal" binary that targets *range* of platforms
655         # by specifying minimum and maximum supported architecture;
656         #
657         # As for c) option. It actually makes no sense to specify
658         # maximum to be less than ARMv7, because it's the least
659         # requirement for run-time switch between platform-specific
660         # code paths. And without run-time switch performance would be
661         # equivalent to one for minimum. Secondly, there are some
662         # natural limitations that you'd have to accept and respect.
663         # Most notably you can *not* build "universal" binary for
664         # big-endian platform. This is because ARMv7 processor always
665         # picks instructions in little-endian order. Another similar
666         # limitation is that -mthumb can't "cross" -march=armv6t2
667         # boundary, because that's where it became Thumb-2. Well, this
668         # limitation is a bit artificial, because it's not really
669         # impossible, but it's deemed too tricky to support. And of
670         # course you have to be sure that your binutils are actually
671         # up to the task of handling maximum target platform. With all
672         # this in mind here is an example of how to configure
673         # "universal" build:
674         #
675         # ./Configure linux-armv4 -march=armv6 -D__ARM_MAX_ARCH__=8
676         #
677         inherit_from     => [ "linux-generic32", asm("armv4_asm") ],
678         perlasm_scheme   => "linux32",
679     },
680     "linux-aarch64" => {
681         inherit_from     => [ "linux-generic64", asm("aarch64_asm") ],
682         perlasm_scheme   => "linux64",
683     },
684     "linux-arm64ilp32" => {  # https://wiki.linaro.org/Platform/arm64-ilp32
685         inherit_from     => [ "linux-generic32", asm("aarch64_asm") ],
686         cflags           => add("-mabi=ilp32"),
687         bn_ops           => "SIXTY_FOUR_BIT RC4_CHAR",
688         perlasm_scheme   => "linux64",
689     },
690
691     "linux-mips32" => {
692         # Configure script adds minimally required -march for assembly
693         # support, if no -march was specified at command line.
694         inherit_from     => [ "linux-generic32", asm("mips32_asm") ],
695         cflags           => add("-mabi=32 -DBN_DIV3W"),
696         perlasm_scheme   => "o32",
697     },
698     # mips32 and mips64 below refer to contemporary MIPS Architecture
699     # specifications, MIPS32 and MIPS64, rather than to kernel bitness.
700     "linux-mips64" => {
701         inherit_from     => [ "linux-generic32", asm("mips64_asm") ],
702         cflags           => add("-mabi=n32 -DBN_DIV3W"),
703         bn_ops           => "SIXTY_FOUR_BIT RC4_CHAR",
704         perlasm_scheme   => "n32",
705         multilib         => "32",
706     },
707     "linux64-mips64" => {
708         inherit_from     => [ "linux-generic64", asm("mips64_asm") ],
709         cflags           => add("-mabi=64 -DBN_DIV3W"),
710         perlasm_scheme   => "64",
711         multilib         => "64",
712     },
713
714     #### IA-32 targets...
715     #### These two targets are a bit aged and are to be used on older Linux
716     #### machines where gcc doesn't understand -m32 and -m64
717     "linux-elf" => {
718         inherit_from     => [ "linux-generic32", asm("x86_elf_asm") ],
719         cflags           => add(picker(default => "-DL_ENDIAN",
720                                        release => "-fomit-frame-pointer")),
721         bn_ops           => "BN_LLONG",
722     },
723     "linux-aout" => {
724         inherit_from     => [ "BASE_unix", asm("x86_asm") ],
725         cc               => "gcc",
726         cflags           => add(picker(default => "-DL_ENDIAN -Wall",
727                                        debug   => "-O0 -g",
728                                        release => "-O3 -fomit-frame-pointer")),
729         bn_ops           => "BN_LLONG",
730         thread_scheme    => "(unknown)",
731         perlasm_scheme   => "a.out",
732     },
733
734     #### X86 / X86_64 targets
735     "linux-x86" => {
736         inherit_from     => [ "linux-generic32", asm("x86_asm") ],
737         cflags           => add(picker(default => "-m32 -DL_ENDIAN",
738                                        release => "-fomit-frame-pointer")),
739         bn_ops           => "BN_LLONG",
740         perlasm_scheme   => "elf",
741     },
742     "linux-x86-clang" => {
743         inherit_from     => [ "linux-x86" ],
744         cc               => "clang",
745         cxx              => "clang++",
746         cflags           => add("-Wextra"),
747     },
748     "linux-x86_64" => {
749         inherit_from     => [ "linux-generic64", asm("x86_64_asm") ],
750         cflags           => add("-m64 -DL_ENDIAN"),
751         bn_ops           => "SIXTY_FOUR_BIT_LONG",
752         perlasm_scheme   => "elf",
753         multilib         => "64",
754     },
755     "linux-x86_64-clang" => {
756         inherit_from     => [ "linux-x86_64" ],
757         cc               => "clang",
758         cxx              => "clang++",
759         cflags           => add("-Wextra"),
760     },
761     "linux-x32" => {
762         inherit_from     => [ "linux-generic32", asm("x86_64_asm") ],
763         cflags           => add("-mx32 -DL_ENDIAN"),
764         bn_ops           => "SIXTY_FOUR_BIT",
765         perlasm_scheme   => "elf32",
766         multilib         => "x32",
767     },
768
769     "linux-ia64" => {
770         inherit_from     => [ "linux-generic64", asm("ia64_asm") ],
771         bn_ops           => "SIXTY_FOUR_BIT_LONG",
772     },
773
774     "linux64-s390x" => {
775         inherit_from     => [ "linux-generic64", asm("s390x_asm") ],
776         cflags           => add("-m64 -DB_ENDIAN"),
777         perlasm_scheme   => "64",
778         multilib         => "64",
779     },
780     "linux32-s390x" => {
781         #### So called "highgprs" target for z/Architecture CPUs
782         # "Highgprs" is kernel feature first implemented in Linux
783         # 2.6.32, see /proc/cpuinfo. The idea is to preserve most
784         # significant bits of general purpose registers not only
785         # upon 32-bit process context switch, but even on
786         # asynchronous signal delivery to such process. This makes
787         # it possible to deploy 64-bit instructions even in legacy
788         # application context and achieve better [or should we say
789         # adequate] performance. The build is binary compatible with
790         # linux-generic32, and the idea is to be able to install the
791         # resulting libcrypto.so alongside generic one, e.g. as
792         # /lib/highgprs/libcrypto.so.x.y, for ldconfig and run-time
793         # linker to autodiscover. Unfortunately it doesn't work just
794         # yet, because of couple of bugs in glibc
795         # sysdeps/s390/dl-procinfo.c affecting ldconfig and ld.so.1...
796         #
797         inherit_from     => [ "linux-generic32", asm("s390x_asm") ],
798         cflags           => add("-m31 -Wa,-mzarch -DB_ENDIAN"),
799         bn_asm_src       => sub { my $r=join(" ",@_); $r=~s|asm/s390x\.S|bn_asm.c|; $r; },
800         perlasm_scheme   => "31",
801         multilib         => "/highgprs",
802     },
803
804     #### SPARC Linux setups
805     "linux-sparcv8" => {
806         inherit_from     => [ "linux-generic32", asm("sparcv8_asm") ],
807         cflags           => add("-mcpu=v8 -DB_ENDIAN -DBN_DIV2W"),
808     },
809     "linux-sparcv9" => {
810         # it's a real mess with -mcpu=ultrasparc option under Linux,
811         # but -Wa,-Av8plus should do the trick no matter what.
812         inherit_from     => [ "linux-generic32", asm("sparcv9_asm") ],
813         cflags           => add("-m32 -mcpu=ultrasparc -Wa,-Av8plus -DB_ENDIAN -DBN_DIV2W"),
814     },
815     "linux64-sparcv9" => {
816         # GCC 3.1 is a requirement
817         inherit_from     => [ "linux-generic64", asm("sparcv9_asm") ],
818         cflags           => add("-m64 -mcpu=ultrasparc -DB_ENDIAN"),
819         bn_ops           => "BN_LLONG RC4_CHAR",
820         multilib         => "64",
821     },
822
823     "linux-alpha-gcc" => {
824         inherit_from     => [ "linux-generic64", asm("alpha_asm") ],
825         cflags           => add("-DL_ENDIAN"),
826         bn_ops           => "SIXTY_FOUR_BIT_LONG",
827     },
828     "linux-c64xplus" => {
829         inherit_from     => [ "BASE_unix" ],
830         # TI_CGT_C6000_7.3.x is a requirement
831         cc               => "cl6x",
832         cflags           => combine("--linux -ea=.s -eo=.o -mv6400+ -o2 -ox -ms -pden -DOPENSSL_SMALL_FOOTPRINT",
833                                     threads("-D_REENTRANT")),
834         bn_ops           => "BN_LLONG",
835         cpuid_asm_src    => "c64xpluscpuid.s",
836         bn_asm_src       => "asm/bn-c64xplus.asm c64xplus-gf2m.s",
837         aes_asm_src      => "aes-c64xplus.s aes_cbc.c aes-ctr.fake",
838         sha1_asm_src     => "sha1-c64xplus.s sha256-c64xplus.s sha512-c64xplus.s",
839         rc4_asm_src      => "rc4-c64xplus.s",
840         modes_asm_src    => "ghash-c64xplus.s",
841         chacha_asm_src   => "chacha-c64xplus.s",
842         poly1305_asm_src => "poly1305-c64xplus.s",
843         thread_scheme    => "pthreads",
844         perlasm_scheme   => "void",
845         dso_scheme       => "dlfcn",
846         shared_target    => "linux-shared",
847         shared_cflag     => "--pic",
848         shared_ldflag    => add("-z --sysv --shared"),
849         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
850         ranlib           => "true",
851     },
852
853 #### Android: linux-* but without pointers to headers and libs.
854     #
855     # It takes pair of prior-set environment variables to make it work:
856     #
857     # CROSS_SYSROOT=/some/where/android-ndk-<ver>/platforms/android-<apiver>/arch-<arch>
858     # CROSS_COMPILE=<prefix>
859     #
860     # As well as PATH adjusted to cover ${CROSS_COMPILE}gcc and company.
861     # For example to compile for ICS and ARM with NDK 10d, you'd:
862     #
863     # ANDROID_NDK=/some/where/android-ndk-10d
864     # CROSS_SYSROOT=$ANDROID_NDK/platforms/android-14/arch-arm
865     # CROSS_COMPILE=arm-linux-adroideabi-
866     # PATH=$ANDROID_NDK/toolchains/arm-linux-androideabi-4.8/prebuild/linux-x86_64/bin
867     #
868     "android" => {
869         inherit_from     => [ "linux-generic32" ],
870         # Special note about unconditional -fPIC and -pie. The underlying
871         # reason is that Lollipop refuses to run non-PIE. But what about
872         # older systems and NDKs? -fPIC was never problem, so the only
873         # concern is -pie. Older toolchains, e.g. r4, appear to handle it
874         # and binaries turn mostly functional. "Mostly" means that oldest
875         # Androids, such as Froyo, fail to handle executable, but newer
876         # systems are perfectly capable of executing binaries targeting
877         # Froyo. Keep in mind that in the nutshell Android builds are
878         # about JNI, i.e. shared libraries, not applications.
879         cflags           => add(picker(default => "-mandroid -fPIC --sysroot=\$(CROSS_SYSROOT) -Wa,--noexecstack")),
880         bin_cflags       => "-pie",
881     },
882     "android-x86" => {
883         inherit_from     => [ "android", asm("x86_asm") ],
884         cflags           => add(picker(release => "-fomit-frame-pointer")),
885         bn_ops           => "BN_LLONG",
886         perlasm_scheme   => "android",
887     },
888     ################################################################
889     # Contemporary Android applications can provide multiple JNI
890     # providers in .apk, targeting multiple architectures. Among
891     # them there is "place" for two ARM flavours: generic eabi and
892     # armv7-a/hard-float. However, it should be noted that OpenSSL's
893     # ability to engage NEON is not constrained by ABI choice, nor
894     # is your ability to call OpenSSL from your application code
895     # compiled with floating-point ABI other than default 'soft'.
896     # [Latter thanks to __attribute__((pcs("aapcs"))) declaration.]
897     # This means that choice of ARM libraries you provide in .apk
898     # is driven by application needs. For example if application
899     # itself benefits from NEON or is floating-point intensive, then
900     # it might be appropriate to provide both libraries. Otherwise
901     # just generic eabi would do. But in latter case it would be
902     # appropriate to
903     #
904     #   ./Configure android-armeabi -D__ARM_MAX_ARCH__=8
905     #
906     # in order to build "universal" binary and allow OpenSSL take
907     # advantage of NEON when it's available.
908     #
909     "android-armeabi" => {
910         inherit_from     => [ "android", asm("armv4_asm") ],
911     },
912     "android-mips" => {
913         inherit_from     => [ "android", asm("mips32_asm") ],
914         perlasm_scheme   => "o32",
915     },
916
917     "android64" => {
918         inherit_from     => [ "linux-generic64" ],
919         cflags           => add(picker(default => "-mandroid -fPIC --sysroot=\$(CROSS_SYSROOT) -Wa,--noexecstack")),
920         bin_cflags       => "-pie",
921     },
922     "android64-aarch64" => {
923         inherit_from     => [ "android64", asm("aarch64_asm") ],
924         perlasm_scheme   => "linux64",
925     },
926     "android64-x86_64" => {
927         inherit_from     => [ "android64", asm("x86_64_asm") ],
928         perlasm_scheme   => "elf",
929     },
930     "android64-mips64" => {
931         ############################################################
932         # You are more than likely have to specify target processor
933         # on ./Configure command line. Trouble is that toolchain's
934         # default is MIPS64r6 (at least in r10d), but there are no
935         # such processors around (or they are too rare to spot one).
936         # Actual problem is that MIPS64r6 is binary incompatible
937         # with previous MIPS ISA versions, in sense that unlike
938         # prior versions original MIPS binary code will fail.
939         #
940         inherit_from     => [ "android64", asm("mips64_asm") ],
941         perlasm_scheme   => "64",
942     },
943
944 #### *BSD
945     "BSD-generic32" => {
946         # As for thread cflag. Idea is to maintain "collective" set of
947         # flags, which would cover all BSD flavors. -pthread applies
948         # to them all, but is treated differently. OpenBSD expands is
949         # as -D_POSIX_THREAD -lc_r, which is sufficient. FreeBSD 4.x
950         # expands it as -lc_r, which has to be accompanied by explicit
951         # -D_THREAD_SAFE and sometimes -D_REENTRANT. FreeBSD 5.x
952         # expands it as -lc_r, which seems to be sufficient?
953         inherit_from     => [ "BASE_unix" ],
954         cc               => "cc",
955         cflags           => combine(picker(default => "-Wall",
956                                            debug   => "-O0 -g",
957                                            release => "-O3"),
958                                     threads("-pthread -D_THREAD_SAFE -D_REENTRANT")),
959         enable           => add("devcryptoeng"),
960         bn_ops           => "BN_LLONG",
961         thread_scheme    => "pthreads",
962         dso_scheme       => "dlfcn",
963         shared_target    => "bsd-gcc-shared",
964         shared_cflag     => "-fPIC",
965         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
966     },
967     "BSD-generic64" => {
968         inherit_from     => [ "BSD-generic32" ],
969         bn_ops           => "SIXTY_FOUR_BIT_LONG",
970     },
971
972     "BSD-x86" => {
973         inherit_from     => [ "BSD-generic32", asm("x86_asm") ],
974         cflags           => add(picker(default => "-DL_ENDIAN",
975                                        release => "-fomit-frame-pointer")),
976         bn_ops           => "BN_LLONG",
977         shared_target    => "bsd-shared",
978         perlasm_scheme   => "a.out",
979     },
980     "BSD-x86-elf" => {
981         inherit_from     => [ "BSD-x86" ],
982         perlasm_scheme   => "elf",
983     },
984
985     "BSD-sparcv8" => {
986         inherit_from     => [ "BSD-generic32", asm("sparcv8_asm") ],
987         cflags           => add("-mcpu=v8 -DB_ENDIAN"),
988     },
989     "BSD-sparc64" => {
990         # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it
991         # simply *happens* to work around a compiler bug in gcc 3.3.3,
992         # triggered by RIPEMD160 code.
993         inherit_from     => [ "BSD-generic64", asm("sparcv9_asm") ],
994         cflags           => add("-DB_ENDIAN -DMD32_REG_T=int"),
995         bn_ops           => "BN_LLONG",
996     },
997
998     "BSD-ia64" => {
999         inherit_from     => [ "BSD-generic64", asm("ia64_asm") ],
1000         cflags           => add_before("-DL_ENDIAN"),
1001         bn_ops           => "SIXTY_FOUR_BIT_LONG",
1002     },
1003
1004     "BSD-x86_64" => {
1005         inherit_from     => [ "BSD-generic64", asm("x86_64_asm") ],
1006         cflags           => add_before("-DL_ENDIAN"),
1007         bn_ops           => "SIXTY_FOUR_BIT_LONG",
1008         perlasm_scheme   => "elf",
1009     },
1010
1011     "bsdi-elf-gcc" => {
1012         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1013         cc               => "gcc",
1014         cflags           => "-DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -Wall",
1015         ex_libs          => add("-ldl"),
1016         bn_ops           => "BN_LLONG",
1017         thread_scheme    => "(unknown)",
1018         dso_scheme       => "dlfcn",
1019         shared_target    => "bsd-gcc-shared",
1020         shared_cflag     => "-fPIC",
1021         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1022     },
1023
1024     "nextstep" => {
1025         inherit_from     => [ "BASE_unix" ],
1026         cc               => "cc",
1027         cflags           => "-O -Wall",
1028         unistd           => "<libc.h>",
1029         bn_ops           => "BN_LLONG",
1030         thread_scheme    => "(unknown)",
1031     },
1032     "nextstep3.3" => {
1033         inherit_from     => [ "BASE_unix" ],
1034         cc               => "cc",
1035         cflags           => "-O3 -Wall",
1036         unistd           => "<libc.h>",
1037         bn_ops           => "BN_LLONG",
1038         thread_scheme    => "(unknown)",
1039     },
1040
1041 # QNX
1042     "qnx4" => {
1043         inherit_from     => [ "BASE_unix" ],
1044         cc               => "cc",
1045         cflags           => "-DL_ENDIAN -DTERMIO",
1046         thread_scheme    => "(unknown)",
1047     },
1048     "QNX6" => {
1049         inherit_from     => [ "BASE_unix" ],
1050         cc               => "gcc",
1051         ex_libs          => add("-lsocket"),
1052         dso_scheme       => "dlfcn",
1053         shared_target    => "bsd-gcc-shared",
1054         shared_cflag     => "-fPIC",
1055         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1056     },
1057     "QNX6-i386" => {
1058         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1059         cc               => "gcc",
1060         cflags           => "-DL_ENDIAN -O2 -Wall",
1061         ex_libs          => add("-lsocket"),
1062         dso_scheme       => "dlfcn",
1063         shared_target    => "bsd-gcc-shared",
1064         shared_cflag     => "-fPIC",
1065         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1066     },
1067
1068 #### SCO/Caldera targets.
1069 #
1070 # Originally we had like unixware-*, unixware-*-pentium, unixware-*-p6, etc.
1071 # Now we only have blended unixware-* as it's the only one used by ./config.
1072 # If you want to optimize for particular microarchitecture, bypass ./config
1073 # and './Configure unixware-7 -Kpentium_pro' or whatever appropriate.
1074 # Note that not all targets include assembler support. Mostly because of
1075 # lack of motivation to support out-of-date platforms with out-of-date
1076 # compiler drivers and assemblers.
1077 #
1078 # UnixWare 2.0x fails destest with -O.
1079     "unixware-2.0" => {
1080         inherit_from     => [ "BASE_unix" ],
1081         cc               => "cc",
1082         cflags           => combine("-DFILIO_H -DNO_STRINGS_H",
1083                                     threads("-Kthread")),
1084         ex_libs          => add("-lsocket -lnsl -lresolv -lx"),
1085         thread_scheme    => "uithreads",
1086     },
1087     "unixware-2.1" => {
1088         inherit_from     => [ "BASE_unix" ],
1089         cc               => "cc",
1090         cflags           => combine("-O -DFILIO_H",
1091                                     threads("-Kthread")),
1092         ex_libs          => add("-lsocket -lnsl -lresolv -lx"),
1093         thread_scheme    => "uithreads",
1094     },
1095     "unixware-7" => {
1096         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1097         cc               => "cc",
1098         cflags           => combine("-O -DFILIO_H -Kalloca",
1099                                     threads("-Kthread")),
1100         ex_libs          => add("-lsocket -lnsl"),
1101         thread_scheme    => "uithreads",
1102         bn_ops           => "BN_LLONG",
1103         perlasm_scheme   => "elf-1",
1104         dso_scheme       => "dlfcn",
1105         shared_target    => "svr5-shared",
1106         shared_cflag     => "-Kpic",
1107         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1108     },
1109     "unixware-7-gcc" => {
1110         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1111         cc               => "gcc",
1112         cflags           => combine("-DL_ENDIAN -DFILIO_H -O3 -fomit-frame-pointer -Wall",
1113                                     threads("-D_REENTRANT")),
1114         ex_libs          => add("-lsocket -lnsl"),
1115         bn_ops           => "BN_LLONG",
1116         thread_scheme    => "pthreads",
1117         perlasm_scheme   => "elf-1",
1118         dso_scheme       => "dlfcn",
1119         shared_target    => "gnu-shared",
1120         shared_cflag     => "-fPIC",
1121         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1122     },
1123 # SCO 5 - Ben Laurie says the -O breaks the SCO cc.
1124     "sco5-cc" => {
1125         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1126         cc               => "cc",
1127         cflags           => "-belf",
1128         ex_libs          => add("-lsocket -lnsl"),
1129         thread_scheme    => "(unknown)",
1130         perlasm_scheme   => "elf-1",
1131         dso_scheme       => "dlfcn",
1132         shared_target    => "svr3-shared",
1133         shared_cflag     => "-Kpic",
1134         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1135     },
1136     "sco5-gcc" => {
1137         inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
1138         cc               => "gcc",
1139         cflags           => "-O3 -fomit-frame-pointer",
1140         ex_libs          => add("-lsocket -lnsl"),
1141         bn_ops           => "BN_LLONG",
1142         thread_scheme    => "(unknown)",
1143         perlasm_scheme   => "elf-1",
1144         dso_scheme       => "dlfcn",
1145         shared_target    => "svr3-shared",
1146         shared_cflag     => "-fPIC",
1147         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1148     },
1149
1150 #### IBM's AIX.
1151     # Below targets assume AIX >=5. Caveat lector. If you are accustomed
1152     # to control compilation "bitness" by setting $OBJECT_MODE environment
1153     # variable, then you should know that in OpenSSL case it's considered
1154     # only in ./config. Once configured, build procedure remains "deaf" to
1155     # current value of $OBJECT_MODE.
1156     "aix-gcc" => {
1157         inherit_from     => [ "BASE_unix", asm("ppc32_asm") ],
1158         cc               => "gcc",
1159         cflags           => combine(picker(default => "-DB_ENDIAN",
1160                                            debug   => "-O0 -g",
1161                                            release => "-O"),
1162                                     threads("-pthread")),
1163         sys_id           => "AIX",
1164         bn_ops           => "BN_LLONG RC4_CHAR",
1165         thread_scheme    => "pthreads",
1166         perlasm_scheme   => "aix32",
1167         dso_scheme       => "dlfcn",
1168         shared_target    => "aix-shared",
1169         shared_ldflag    => "-shared -static-libgcc -Wl,-G",
1170         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1171         arflags          => "-X32",
1172     },
1173     "aix64-gcc" => {
1174         inherit_from     => [ "BASE_unix", asm("ppc64_asm") ],
1175         cc               => "gcc",
1176         cflags           => combine(picker(default => "-maix64 -DB_ENDIAN",
1177                                            debug   => "-O0 -g",
1178                                            release => "-O"),
1179                                     threads("-pthread")),
1180         sys_id           => "AIX",
1181         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
1182         thread_scheme    => "pthreads",
1183         perlasm_scheme   => "aix64",
1184         dso_scheme       => "dlfcn",
1185         shared_target    => "aix-shared",
1186         shared_ldflag    => "-shared -static-libgcc -Wl,-G",
1187         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1188         arflags          => "-X64",
1189     },
1190     "aix-cc" => {
1191         inherit_from     => [ "BASE_unix", asm("ppc32_asm") ],
1192         cc               => "cc",
1193         cflags           => combine(picker(default => "-q32 -DB_ENDIAN -qmaxmem=16384 -qro -qroconst",
1194                                            debug   => "-O0 -g",
1195                                            release => "-O"),
1196                                     threads("-qthreaded -D_THREAD_SAFE")),
1197         sys_id           => "AIX",
1198         bn_ops           => "BN_LLONG RC4_CHAR",
1199         thread_scheme    => "pthreads",
1200         ex_libs          => threads("-lpthreads"),
1201         perlasm_scheme   => "aix32",
1202         dso_scheme       => "dlfcn",
1203         shared_target    => "aix-shared",
1204         shared_ldflag    => "-G",
1205         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1206         arflags          => "-X 32",
1207     },
1208     "aix64-cc" => {
1209         inherit_from     => [ "BASE_unix", asm("ppc64_asm") ],
1210         cc               => "cc",
1211         cflags           => combine(picker(default => "-q64 -DB_ENDIAN -qmaxmem=16384 -qro -qroconst",
1212                                            debug   => "-O0 -g",
1213                                            release => "-O"),
1214                                     threads("-qthreaded -D_THREAD_SAFE")),
1215         sys_id           => "AIX",
1216         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
1217         thread_scheme    => "pthreads",
1218         ex_libs          => threads("-lpthreads"),
1219         perlasm_scheme   => "aix64",
1220         dso_scheme       => "dlfcn",
1221         shared_target    => "aix-shared",
1222         shared_ldflag    => "-G",
1223         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1224         arflags          => "-X 64",
1225     },
1226
1227 # SIEMENS BS2000/OSD: an EBCDIC-based mainframe
1228     "BS2000-OSD" => {
1229         inherit_from     => [ "BASE_unix" ],
1230         cc               => "c89",
1231         cflags           => "-O -XLLML -XLLMK -XL -DB_ENDIAN -DCHARSET_EBCDIC",
1232         ex_libs          => add("-lsocket -lnsl"),
1233         bn_ops           => "THIRTY_TWO_BIT RC4_CHAR",
1234         thread_scheme    => "(unknown)",
1235     },
1236
1237 #### Visual C targets
1238 #
1239 # Win64 targets, WIN64I denotes IA-64 and WIN64A - AMD64
1240 #
1241 # Note about -wd4090, disable warning C4090. This warning returns false
1242 # positives in some situations. Disabling it altogether masks both
1243 # legitimate and false cases, but as we compile on multiple platforms,
1244 # we rely on other compilers to catch legitimate cases.
1245 #
1246 # Also note that we force threads no matter what.  Configuring "no-threads"
1247 # is ignored.
1248     "VC-common" => {
1249         inherit_from     => [ "BASE_Windows" ],
1250         template         => 1,
1251         cc               => "cl",
1252         cflags           => "-W3 -wd4090 -Gs0 -GF -Gy -nologo -DOPENSSL_SYS_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -D_CRT_SECURE_NO_DEPRECATE -D_WINSOCK_DEPRECATED_NO_WARNINGS",
1253         defines          => add(sub { my @defs = ();
1254                                       unless ($disabled{"zlib-dynamic"}) {
1255                                           my $zlib =
1256                                               $withargs{zlib_lib} // "ZLIB1";
1257                                           push @defs,
1258                                               quotify("perl",
1259                                                       'LIBZ="' . $zlib . '"');
1260                                       }
1261                                       return [ @defs ];
1262                                     }),
1263         coutflag         => "/Fo",
1264         lib_cflags       => add("/Zi /Fdossl_static"),
1265         dso_cflags       => "/Zi /Fddso",
1266         bin_cflags       => "/Zi /Fdapp",
1267         lflags           => add("/debug"),
1268         shared_ldflag    => "/dll",
1269         shared_target    => "win-shared", # meaningless except it gives Configure a hint
1270         thread_scheme    => "winthreads",
1271         dso_scheme       => "win32",
1272         apps_aux_src     => add("win32_init.c"),
1273     },
1274     "VC-noCE-common" => {
1275         inherit_from     => [ "VC-common" ],
1276         template         => 1,
1277         cflags           => add(picker(default => "-DUNICODE -D_UNICODE",
1278                                        debug   =>
1279                                        sub {
1280                                            ($disabled{shared} ? "" : "/MDd")
1281                                                ." /Od -DDEBUG -D_DEBUG";
1282                                        },
1283                                        release =>
1284                                        sub {
1285                                            ($disabled{shared} ? "" : "/MD")
1286                                                ." /O2";
1287                                        })),
1288         lib_cflags       => add(sub { $disabled{shared} ? "/MT /Zl" : () }),
1289         # Following might/should appears controversial, i.e. defining
1290         # /MDd without evaluating $disabled{shared}. It works in
1291         # non-shared build because static library is compiled with /Zl
1292         # and bares no reference to specific RTL. And it works in
1293         # shared build because multiple /MDd options are not prohibited.
1294         # But why /MDd in static build? Well, basically this is just a
1295         # reference point, which allows to catch eventual errors that
1296         # would prevent those who want to wrap OpenSSL into own .DLL.
1297         # Why not /MD in release build then? Well, some are likely to
1298         # prefer [non-debug] openssl.exe to be free from Micorosoft RTL
1299         # redistributable.
1300         bin_cflags       => add(picker(debug   => "/MDd",
1301                                        release => sub { $disabled{shared} ? "/MT" : () },
1302                                       )),
1303         bin_lflags       => add("/subsystem:console /opt:ref"),
1304         ex_libs          => add(sub {
1305             my @ex_libs = ();
1306             push @ex_libs, 'ws2_32.lib' unless $disabled{sock};
1307             push @ex_libs, 'gdi32.lib advapi32.lib crypt32.lib user32.lib';
1308             return join(" ", @ex_libs);
1309         }),
1310     },
1311     "VC-WIN64-common" => {
1312         inherit_from     => [ "VC-noCE-common" ],
1313         template         => 1,
1314         ex_libs          => add(sub {
1315             my @ex_libs = ();
1316             push @ex_libs, 'bufferoverflowu.lib' if (`cl 2>&1` =~ /14\.00\.4[0-9]{4}\./);
1317             return join(" ", @_, @ex_libs);
1318         }),
1319         bn_ops           => "SIXTY_FOUR_BIT EXPORT_VAR_AS_FN",
1320         build_scheme     => add("VC-W64", { separator => undef }),
1321     },
1322     "VC-WIN64I" => {
1323         inherit_from     => [ "VC-WIN64-common", asm("ia64_asm"),
1324                               sub { $disabled{shared} ? () : "ia64_uplink" } ],
1325         as               => "ias",
1326         asflags          => "-d debug",
1327         asoutflag        => "-o",
1328         sys_id           => "WIN64I",
1329         bn_asm_src       => sub { return undef unless @_;
1330                                   my $r=join(" ",@_); $r=~s|bn-ia64.s|bn_asm.c|; $r; },
1331         perlasm_scheme   => "ias",
1332         multilib         => "-ia64",
1333     },
1334     "VC-WIN64A" => {
1335         inherit_from     => [ "VC-WIN64-common", asm("x86_64_asm"),
1336                               sub { $disabled{shared} ? () : "x86_64_uplink" } ],
1337         as               => sub { vc_win64a_info()->{as} },
1338         asflags          => sub { vc_win64a_info()->{asflags} },
1339         asoutflag        => sub { vc_win64a_info()->{asoutflag} },
1340         sys_id           => "WIN64A",
1341         bn_asm_src       => sub { return undef unless @_;
1342                                   my $r=join(" ",@_); $r=~s|asm/x86_64-gcc|bn_asm|; $r; },
1343         perlasm_scheme   => "auto",
1344         multilib         => "-x64",
1345     },
1346     "VC-WIN32" => {
1347         # x86 Win32 target defaults to ANSI API, if you want UNICODE,
1348         # configure with 'perl Configure VC-WIN32 -DUNICODE -D_UNICODE'
1349         inherit_from     => [ "VC-noCE-common", asm("x86_asm"),
1350                               sub { $disabled{shared} ? () : "uplink_common" } ],
1351         cflags           => add("-WX"),
1352         as               => sub { vc_win32_info()->{as} },
1353         asflags          => sub { vc_win32_info()->{asflags} },
1354         asoutflag        => sub { vc_win32_info()->{asoutflag} },
1355         ex_libs          => add(sub {
1356             my @ex_libs = ();
1357             # WIN32 UNICODE build gets linked with unicows.lib for
1358             # backward compatibility with Win9x.
1359             push @ex_libs, 'unicows.lib'
1360                 if (grep { $_ eq "UNICODE" } @user_defines);
1361             return join(" ", @ex_libs, @_);
1362         }),
1363         sys_id           => "WIN32",
1364         bn_ops           => "BN_LLONG EXPORT_VAR_AS_FN",
1365         perlasm_scheme   => sub { vc_win32_info()->{perlasm_scheme} },
1366         build_scheme     => add("VC-W32", { separator => undef }),
1367     },
1368     "VC-CE" => {
1369         inherit_from     => [ "VC-common" ],
1370         as               => "ml",
1371         asflags          => "/nologo /Cp /coff /c /Cx /Zi",
1372         asoutflag        => "/Fo",
1373         cc               => "cl",
1374         cflags           =>
1375             picker(default =>
1376                    combine('/W3 /WX /GF /Gy /nologo -DUNICODE -D_UNICODE -DOPENSSL_SYS_WINCE -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32 -DNO_CHMOD -DOPENSSL_SMALL_FOOTPRINT',
1377                            sub { vc_wince_info()->{cflags}; },
1378                            sub { defined(env('WCECOMPAT'))
1379                                      ? '-I$(WCECOMPAT)/include' : (); },
1380                            sub { defined(env('PORTSDK_LIBPATH'))
1381                                      ? '-I$(PORTSDK_LIBPATH)/../../include' : (); },
1382                            sub { `cl 2>&1` =~ /Version ([0-9]+)\./ && $1>=14
1383                                      ? ($disabled{shared} ? " /MT" : " /MD")
1384                                      : " /MC"; }),
1385                    debug   => "/Od -DDEBUG -D_DEBUG",
1386                    release => "/O1i"),
1387         lflags           => combine("/nologo /opt:ref",
1388                                     sub { vc_wince_info()->{lflags}; },
1389                                     sub { defined(env('PORTSDK_LIBPATH'))
1390                                               ? "/entry:mainCRTstartup" : (); }),
1391         sys_id           => "WINCE",
1392         bn_ops           => "BN_LLONG EXPORT_VAR_AS_FN",
1393         ex_libs          => add(sub {
1394             my @ex_libs = ();
1395             push @ex_libs, 'ws2.lib' unless $disabled{sock};
1396             push @ex_libs, 'crypt32.lib';
1397             if (defined(env('WCECOMPAT'))) {
1398                 my $x = '$(WCECOMPAT)/lib';
1399                 if (-f "$x/env('TARGETCPU')/wcecompatex.lib") {
1400                     $x .= '/$(TARGETCPU)/wcecompatex.lib';
1401                 } else {
1402                     $x .= '/wcecompatex.lib';
1403                 }
1404                 push @ex_libs, $x;
1405             }
1406             push @ex_libs, '$(PORTSDK_LIBPATH)/portlib.lib'
1407                 if (defined(env('PORTSDK_LIBPATH')));
1408             push @ex_libs, ' /nodefaultlib coredll.lib corelibc.lib'
1409                 if (env('TARGETCPU') eq "X86");
1410             return @ex_libs;
1411         }),
1412         build_scheme     => add("VC-WCE", { separator => undef }),
1413     },
1414
1415 #### MinGW
1416     "mingw" => {
1417         inherit_from     => [ "BASE_unix", asm("x86_asm"),
1418                               sub { $disabled{shared} ? () : "x86_uplink" } ],
1419         cc               => "gcc",
1420         cflags           => combine(picker(default => "-DL_ENDIAN -DWIN32_LEAN_AND_MEAN -DUNICODE -D_UNICODE -m32 -Wall",
1421                                            debug   => "-g -O0",
1422                                            release => "-O3 -fomit-frame-pointer"),
1423                                     threads("-D_MT")),
1424         sys_id           => "MINGW32",
1425         ex_libs          => add("-lws2_32 -lgdi32 -lcrypt32"),
1426         bn_ops           => "BN_LLONG EXPORT_VAR_AS_FN",
1427         thread_scheme    => "winthreads",
1428         perlasm_scheme   => "coff",
1429         dso_scheme       => "win32",
1430         shared_target    => "mingw-shared",
1431         shared_cflag     => add("-D_WINDLL"),
1432         shared_ldflag    => "-static-libgcc",
1433         shared_rcflag    => "--target=pe-i386",
1434         shared_extension => ".dll",
1435         multilib         => "",
1436         apps_aux_src     => add("win32_init.c"),
1437     },
1438     "mingw64" => {
1439         # As for OPENSSL_USE_APPLINK. Applink makes it possible to use
1440         # .dll compiled with one compiler with application compiled with
1441         # another compiler. It's possible to engage Applink support in
1442         # mingw64 build, but it's not done, because till mingw64
1443         # supports structured exception handling, one can't seriously
1444         # consider its binaries for using with non-mingw64 run-time
1445         # environment. And as mingw64 is always consistent with itself,
1446         # Applink is never engaged and can as well be omitted.
1447         inherit_from     => [ "BASE_unix", asm("x86_64_asm") ],
1448         cc               => "gcc",
1449         cflags           => combine(picker(default => "-DL_ENDIAN -DWIN32_LEAN_AND_MEAN -DUNICODE -D_UNICODE -m64 -Wall",
1450                                            debug   => "-g -O0",
1451                                            release => "-O3"),
1452                                     threads("-D_MT")),
1453         sys_id           => "MINGW64",
1454         ex_libs          => add("-lws2_32 -lgdi32 -lcrypt32"),
1455         bn_ops           => "SIXTY_FOUR_BIT EXPORT_VAR_AS_FN",
1456         thread_scheme    => "winthreads",
1457         perlasm_scheme   => "mingw64",
1458         dso_scheme       => "win32",
1459         shared_target    => "mingw-shared",
1460         shared_cflag     => add("-D_WINDLL"),
1461         shared_ldflag    => "-static-libgcc",
1462         shared_rcflag    => "--target=pe-x86-64",
1463         shared_extension => ".dll",
1464         multilib         => "64",
1465         apps_aux_src     => add("win32_init.c"),
1466     },
1467
1468 #### UEFI
1469     "UEFI" => {
1470         inherit_from     => [ "BASE_unix" ],
1471         cc               => "cc",
1472         cflags           => "-DL_ENDIAN -O",
1473         sys_id           => "UEFI",
1474     },
1475
1476 #### UWIN
1477     "UWIN" => {
1478         inherit_from     => [ "BASE_unix" ],
1479         cc               => "cc",
1480         cflags           => "-DTERMIOS -DL_ENDIAN -O -Wall",
1481         sys_id           => "UWIN",
1482         bn_ops           => "BN_LLONG",
1483         dso_scheme       => "win32",
1484     },
1485
1486 #### Cygwin
1487     "Cygwin-x86" => {
1488         inherit_from     => [ "BASE_unix", asm("x86_asm") ],
1489         cc               => "gcc",
1490         cflags           => picker(default => "-DTERMIOS -DL_ENDIAN -Wall",
1491                                    debug   => "-g -O0",
1492                                    release => "-O3 -fomit-frame-pointer"),
1493         sys_id           => "CYGWIN",
1494         bn_ops           => "BN_LLONG",
1495         thread_scheme    => "pthread",
1496         perlasm_scheme   => "coff",
1497         dso_scheme       => "dlfcn",
1498         shared_target    => "cygwin-shared",
1499         shared_cflag     => "-D_WINDLL",
1500         shared_extension => ".dll",
1501     },
1502     "Cygwin-x86_64" => {
1503         inherit_from     => [ "BASE_unix", asm("x86_64_asm") ],
1504         cc               => "gcc",
1505         cflags           => picker(default => "-DTERMIOS -DL_ENDIAN -Wall",
1506                                    debug   => "-g -O0",
1507                                    release => "-O3"),
1508         sys_id           => "CYGWIN",
1509         bn_ops           => "SIXTY_FOUR_BIT_LONG",
1510         thread_scheme    => "pthread",
1511         perlasm_scheme   => "mingw64",
1512         dso_scheme       => "dlfcn",
1513         shared_target    => "cygwin-shared",
1514         shared_cflag     => "-D_WINDLL",
1515         shared_extension => ".dll",
1516     },
1517     # Backward compatibility for those using this target
1518     "Cygwin" => {
1519         inherit_from     => [ "Cygwin-x86" ]
1520     },
1521     # In case someone constructs the Cygwin target name themself
1522     "Cygwin-i386" => {
1523         inherit_from     => [ "Cygwin-x86" ]
1524     },
1525     "Cygwin-i486" => {
1526         inherit_from     => [ "Cygwin-x86" ]
1527     },
1528     "Cygwin-i586" => {
1529         inherit_from     => [ "Cygwin-x86" ]
1530     },
1531     "Cygwin-i686" => {
1532         inherit_from     => [ "Cygwin-x86" ]
1533     },
1534
1535 ##### MacOS X (a.k.a. Darwin) setup
1536     "darwin-common" => {
1537         inherit_from     => [ "BASE_unix" ],
1538         template         => 1,
1539         cc               => "cc",
1540         cflags           => combine(picker(default => "",
1541                                            debug   => "-g -O0",
1542                                            release => "-O3"),
1543                                    threads("-D_REENTRANT")),
1544         sys_id           => "MACOSX",
1545         plib_lflags      => "-Wl,-search_paths_first",
1546         bn_ops           => "BN_LLONG RC4_CHAR",
1547         thread_scheme    => "pthreads",
1548         perlasm_scheme   => "osx32",
1549         dso_scheme       => "dlfcn",
1550         ranlib           => "ranlib -c",
1551         shared_target    => "darwin-shared",
1552         shared_cflag     => "-fPIC",
1553         shared_extension => ".\$(SHLIB_VERSION_NUMBER).dylib",
1554     },
1555     # Option "freeze" such as -std=gnu9x can't negatively interfere
1556     # with future defaults for below two targets, because MacOS X
1557     # for PPC has no future, it was discontinued by vendor in 2009.
1558     "darwin-ppc-cc" => {
1559         inherit_from     => [ "darwin-common", asm("ppc32_asm") ],
1560         cflags           => add("-arch ppc -std=gnu9x -DB_ENDIAN -Wa,-force_cpusubtype_ALL"),
1561         perlasm_scheme   => "osx32",
1562     },
1563     "darwin64-ppc-cc" => {
1564         inherit_from     => [ "darwin-common", asm("ppc64_asm") ],
1565         cflags           => add("-arch ppc64 -std=gnu9x -DB_ENDIAN"),
1566         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
1567         perlasm_scheme   => "osx64",
1568     },
1569     "darwin-i386-cc" => {
1570         inherit_from     => [ "darwin-common", asm("x86_asm") ],
1571         cflags           => add(picker(default => "-arch i386 -DL_ENDIAN",
1572                                        release => "-fomit-frame-pointer")),
1573         bn_ops           => "BN_LLONG RC4_INT",
1574         perlasm_scheme   => "macosx",
1575     },
1576     "darwin64-x86_64-cc" => {
1577         inherit_from     => [ "darwin-common", asm("x86_64_asm") ],
1578         cflags           => add("-arch x86_64 -DL_ENDIAN -Wall"),
1579         bn_ops           => "SIXTY_FOUR_BIT_LONG",
1580         perlasm_scheme   => "macosx",
1581     },
1582
1583 #### iPhoneOS/iOS
1584 #
1585 # It takes three prior-set environment variables to make it work:
1586 #
1587 # CROSS_COMPILE=/where/toolchain/is/usr/bin/ [note ending slash]
1588 # CROSS_TOP=/where/SDKs/are
1589 # CROSS_SDK=iPhoneOSx.y.sdk
1590 #
1591 # Exact paths vary with Xcode releases, but for couple of last ones
1592 # they would look like this:
1593 #
1594 # CROSS_COMPILE=`xcode-select --print-path`/Toolchains/XcodeDefault.xctoolchain/usr/bin/
1595 # CROSS_TOP=`xcode-select --print-path`/Platforms/iPhoneOS.platform/Developer
1596 # CROSS_SDK=iPhoneOS.sdk
1597 #
1598     "iphoneos-cross" => {
1599         inherit_from     => [ "darwin-common" ],
1600         cflags           => add("-isysroot \$(CROSS_TOP)/SDKs/\$(CROSS_SDK) -fno-common"),
1601         sys_id           => "iOS",
1602     },
1603     "ios-cross" => {
1604         inherit_from     => [ "darwin-common", asm("armv4_asm") ],
1605         # It should be possible to go below iOS 6 and even add -arch armv6,
1606         # thus targeting iPhone pre-3GS, but it's assumed to be irrelevant
1607         # at this point.
1608         cflags           => add("-arch armv7 -mios-version-min=6.0.0 -isysroot \$(CROSS_TOP)/SDKs/\$(CROSS_SDK) -fno-common"),
1609         sys_id           => "iOS",
1610         perlasm_scheme   => "ios32",
1611     },
1612     "ios64-cross" => {
1613         inherit_from     => [ "darwin-common", asm("aarch64_asm") ],
1614         cflags           => add("-arch arm64 -mios-version-min=7.0.0 -isysroot \$(CROSS_TOP)/SDKs/\$(CROSS_SDK) -fno-common"),
1615         sys_id           => "iOS",
1616         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
1617         perlasm_scheme   => "ios64",
1618     },
1619
1620 ##### GNU Hurd
1621     "hurd-x86" => {
1622         inherit_from     => [ "BASE_unix" ],
1623         inherit_from     => [ asm("x86_elf_asm") ],
1624         cc               => "gcc",
1625         cflags           => combine("-DL_ENDIAN -O3 -fomit-frame-pointer -Wall",
1626                                     threads("-pthread")),
1627         ex_libs          => add("-ldl"),
1628         bn_ops           => "BN_LLONG",
1629         thread_scheme    => "pthreads",
1630         dso_scheme       => "dlfcn",
1631         shared_target    => "linux-shared",
1632         shared_cflag     => "-fPIC",
1633         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1634     },
1635
1636 ##### VxWorks for various targets
1637     "vxworks-ppc60x" => {
1638         inherit_from     => [ "BASE_unix" ],
1639         cc               => "ccppc",
1640         cflags           => "-D_REENTRANT -mrtp -mhard-float -mstrict-align -fno-implicit-fp -DPPC32_fp60x -O2 -fstrength-reduce -fno-builtin -fno-strict-aliasing -Wall -DCPU=PPC32 -DTOOL_FAMILY=gnu -DTOOL=gnu -I\$(WIND_BASE)/target/usr/h -I\$(WIND_BASE)/target/usr/h/wrn/coreip",
1641         sys_id           => "VXWORKS",
1642         ex_libs          => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000 -L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/common"),
1643     },
1644     "vxworks-ppcgen" => {
1645         inherit_from     => [ "BASE_unix" ],
1646         cc               => "ccppc",
1647         cflags           => "-D_REENTRANT -mrtp -msoft-float -mstrict-align -O1 -fno-builtin -fno-strict-aliasing -Wall -DCPU=PPC32 -DTOOL_FAMILY=gnu -DTOOL=gnu -I\$(WIND_BASE)/target/usr/h -I\$(WIND_BASE)/target/usr/h/wrn/coreip",
1648         sys_id           => "VXWORKS",
1649         ex_libs          => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000 -L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/sfcommon"),
1650     },
1651     "vxworks-ppc405" => {
1652         inherit_from     => [ "BASE_unix" ],
1653         cc               => "ccppc",
1654         cflags           => "-g -msoft-float -mlongcall -DCPU=PPC405 -I\$(WIND_BASE)/target/h",
1655         sys_id           => "VXWORKS",
1656         lflags           => "-r",
1657     },
1658     "vxworks-ppc750" => {
1659         inherit_from     => [ "BASE_unix" ],
1660         cc               => "ccppc",
1661         cflags           => "-ansi -nostdinc -DPPC750 -D_REENTRANT -fvolatile -fno-builtin -fno-for-scope -fsigned-char -Wall -msoft-float -mlongcall -DCPU=PPC604 -I\$(WIND_BASE)/target/h \$(DEBUG_FLAG)",
1662         sys_id           => "VXWORKS",
1663         lflags           => "-r",
1664     },
1665     "vxworks-ppc750-debug" => {
1666         inherit_from     => [ "BASE_unix" ],
1667         cc               => "ccppc",
1668         cflags           => "-ansi -nostdinc -DPPC750 -D_REENTRANT -fvolatile -fno-builtin -fno-for-scope -fsigned-char -Wall -msoft-float -mlongcall -DCPU=PPC604 -I\$(WIND_BASE)/target/h -DPEDANTIC -DDEBUG -g",
1669         sys_id           => "VXWORKS",
1670         lflags           => "-r",
1671     },
1672     "vxworks-ppc860" => {
1673         inherit_from     => [ "BASE_unix" ],
1674         cc               => "ccppc",
1675         cflags           => "-nostdinc -msoft-float -DCPU=PPC860 -DNO_STRINGS_H -I\$(WIND_BASE)/target/h",
1676         sys_id           => "VXWORKS",
1677         lflags           => "-r",
1678     },
1679     "vxworks-simlinux" => {
1680         inherit_from     => [ "BASE_unix" ],
1681         cc               => "ccpentium",
1682         cflags           => "-B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\" -DL_ENDIAN -DCPU=SIMLINUX -DTOOL_FAMILY=gnu -DTOOL=gnu -fno-builtin -fno-defer-pop -DNO_STRINGS_H -I\$(WIND_BASE)/target/h -I\$(WIND_BASE)/target/h/wrn/coreip -DOPENSSL_NO_HW_PADLOCK",
1683         sys_id           => "VXWORKS",
1684         lflags           => "-r",
1685         ranlib           => "ranlibpentium",
1686     },
1687     "vxworks-mips" => {
1688         inherit_from     => [ "BASE_unix", asm("mips32_asm") ],
1689         cc               => "ccmips",
1690         cflags           => combine("-mrtp -mips2 -O -G 0 -B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\" -DCPU=MIPS32 -msoft-float -mno-branch-likely -DTOOL_FAMILY=gnu -DTOOL=gnu -fno-builtin -fno-defer-pop -DNO_STRINGS_H -I\$(WIND_BASE)/target/usr/h -I\$(WIND_BASE)/target/h/wrn/coreip",
1691                                     threads("-D_REENTRANT")),
1692         sys_id           => "VXWORKS",
1693         ex_libs          => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000 -L \$(WIND_BASE)/target/usr/lib/mips/MIPSI32/sfcommon"),
1694         thread_scheme    => "pthreads",
1695         perlasm_scheme   => "o32",
1696         ranlib           => "ranlibmips",
1697     },
1698
1699 #### uClinux
1700     "uClinux-dist" => {
1701         inherit_from     => [ "BASE_unix" ],
1702         cc               => sub { env('CC') },
1703         cflags           => combine(threads("-D_REENTRANT")),
1704         ex_libs          => add("\$(LDLIBS)"),
1705         bn_ops           => "BN_LLONG",
1706         thread_scheme    => "pthreads",
1707         dso_scheme       => sub { env('LIBSSL_dlfcn') },
1708         shared_target    => "linux-shared",
1709         shared_cflag     => "-fPIC",
1710         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1711         ranlib           => sub { env('RANLIB') },
1712     },
1713     "uClinux-dist64" => {
1714         inherit_from     => [ "BASE_unix" ],
1715         cc               => sub { env('CC') },
1716         cflags           => combine(threads("-D_REENTRANT")),
1717         ex_libs          => add("\$(LDLIBS)"),
1718         bn_ops           => "SIXTY_FOUR_BIT_LONG",
1719         thread_scheme    => "pthreads",
1720         dso_scheme       => sub { env('LIBSSL_dlfcn') },
1721         shared_target    => "linux-shared",
1722         shared_cflag     => "-fPIC",
1723         shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
1724         ranlib           => sub { env('RANLIB') },
1725     },
1726
1727     ##### VMS
1728     "vms-generic" => {
1729         inherit_from     => [ "BASE_VMS" ],
1730         template         => 1,
1731         cc               => "CC/DECC",
1732         cflags           => picker(default => "/STANDARD=(ISOC94,RELAXED)/NOLIST/PREFIX=ALL",
1733                                    debug   => "/NOOPTIMIZE/DEBUG",
1734                                    release => "/OPTIMIZE/NODEBUG"),
1735         defines          => add("OPENSSL_USE_NODELETE"),
1736         lflags           => picker(default => "/MAP='F\$PARSE(\".MAP\",\"\$\@\")'",
1737                                    debug   => "/DEBUG/TRACEBACK",
1738                                    release => "/NODEBUG/NOTRACEBACK"),
1739         lib_cflags       => add("/NAMES=(AS_IS,SHORTENED)/EXTERN_MODEL=STRICT_REFDEF"),
1740         # no_inst_lib_cflags is used instead of lib_cflags by descrip.mms.tmpl
1741         # for object files belonging to selected internal libraries
1742         no_inst_lib_cflags => "",
1743         shared_target    => "vms-shared",
1744         dso_scheme       => "vms",
1745         thread_scheme    => "pthreads",
1746
1747         apps_aux_src     => "vms_decc_init.c vms_term_sock.c",
1748     },
1749
1750     "vms-alpha" => {
1751         inherit_from     => [ "vms-generic" ],
1752         cflags           => add(sub { my @warnings =
1753                                           @{vms_info(0)->{disable_warns}};
1754                                       @warnings
1755                                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : (); }),
1756         defines          =>
1757                     add(sub {
1758                             return vms_info(0)->{def_zlib}
1759                                 ? "LIBZ=\"\"\"".vms_info(0)->{def_zlib}."\"\"\"" : ();
1760                             }),
1761         ex_libs          => add(sub { return vms_info(0)->{zlib} || (); }),
1762         pointer_size     => sub { return vms_info(0)->{pointer_size} },
1763         #as               => "???",
1764         #debug_aflags     => "/NOOPTIMIZE/DEBUG",
1765         #release_aflags   => "/OPTIMIZE/NODEBUG",
1766         bn_opts          => "SIXTY_FOUR_BIT RC4_INT",
1767     },
1768     "vms-alpha-p32" => {
1769         inherit_from     => [ "vms-generic" ],
1770         cflags           =>
1771             add("/POINTER_SIZE=32",
1772                 sub { my @warnings =
1773                           @{vms_info(32)->{disable_warns}};
1774                       @warnings
1775                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : ();
1776                 } ),
1777         defines          =>
1778                     add(sub {
1779                             return vms_info(32)->{def_zlib}
1780                                 ? "LIBZ=\"\"\"".vms_info(32)->{def_zlib}."\"\"\"" : ();
1781                             }),
1782         ex_libs          => add(sub { return vms_info(32)->{zlib} || (); }),
1783         pointer_size     => sub { return vms_info(32)->{pointer_size} },
1784     },
1785     "vms-alpha-p64" => {
1786         inherit_from     => [ "vms-generic" ],
1787         cflags           =>
1788             add("/POINTER_SIZE=64=ARGV",
1789                 sub { my @warnings =
1790                           @{vms_info(64)->{disable_warns}};
1791                       @warnings
1792                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : ();
1793                 } ),
1794         defines          =>
1795                     add(sub {
1796                             return vms_info(64)->{def_zlib}
1797                                 ? "LIBZ=\"\"\"".vms_info(64)->{def_zlib}."\"\"\"" : ();
1798                             }),
1799         ex_libs          => add(sub { return vms_info(64)->{zlib} || (); }),
1800         pointer_size     => sub { return vms_info(64)->{pointer_size} },
1801     },
1802     "vms-ia64" => {
1803         inherit_from     => [ "vms-generic" ],
1804         cflags           => add(sub { my @warnings =
1805                                           @{vms_info(0)->{disable_warns}};
1806                                       @warnings
1807                                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : (); }),
1808         defines          =>
1809                     add(sub {
1810                             return vms_info(0)->{def_zlib}
1811                                 ? "LIBZ=\"\"\"".vms_info(0)->{def_zlib}."\"\"\"" : ();
1812                             }),
1813         ex_libs          => add(sub { return vms_info(0)->{zlib} || (); }),
1814         pointer_size     => sub { return vms_info(0)->{pointer_size} },
1815         #as               => "I4S",
1816         #debug_aflags     => "/NOOPTIMIZE/DEBUG",
1817         #release_aflags   => "/OPTIMIZE/NODEBUG",
1818         bn_opts          => "SIXTY_FOUR_BIT RC4_INT",
1819     },
1820     "vms-ia64-p32" => {
1821         inherit_from     => [ "vms-generic" ],
1822         cflags           =>
1823             add("/POINTER_SIZE=32",
1824                 sub { my @warnings =
1825                           @{vms_info(32)->{disable_warns}};
1826                       @warnings
1827                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : ();
1828                 } ),
1829         defines          =>
1830                     add(sub {
1831                             return vms_info(32)->{def_zlib}
1832                                 ? "LIBZ=\"\"\"".vms_info(32)->{def_zlib}."\"\"\"" : ();
1833                             }),
1834         ex_libs          => add(sub { return vms_info(32)->{zlib} || (); }),
1835         pointer_size     => sub { return vms_info(32)->{pointer_size} },
1836     },
1837     "vms-ia64-p64" => {
1838         inherit_from     => [ "vms-generic" ],
1839         cflags           =>
1840             add("/POINTER_SIZE=64=ARGV",
1841                 sub { my @warnings =
1842                           @{vms_info(64)->{disable_warns}};
1843                       @warnings
1844                           ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : ();
1845                 } ),
1846         defines          =>
1847                     add(sub {
1848                             return vms_info(64)->{def_zlib}
1849                                 ? "LIBZ=\"\"\"".vms_info(64)->{def_zlib}."\"\"\"" : ();
1850                             }),
1851         ex_libs          => add(sub { return vms_info(64)->{zlib} || (); }),
1852         pointer_size     => sub { return vms_info(64)->{pointer_size} },
1853     },
1854
1855 );