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