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