]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/10-main.conf
AIX: Implement shared_target = "aix-solib" support
[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) {
abe256e7
RL
9 $vc_win64a_info = { AS => "nasm",
10 ASFLAGS => "-g",
11 asflags => "-Ox -f win64 -DNEAR",
a2608e4b
KP
12 asoutflag => "-o ",
13 perlasm_scheme => "nasm" };
43800958 14 } elsif ($disabled{asm}) {
c059564a 15 # assembler is still used to compile uplink shim
abe256e7 16 $vc_win64a_info = { AS => "ml64",
78a50c75 17 ASFLAGS => "/nologo /Zi",
abe256e7 18 asflags => "/c /Cp /Cx",
a2608e4b
KP
19 asoutflag => "/Fo",
20 perlasm_scheme => "masm" };
43800958 21 } else {
8937a4ed 22 $die->("NASM not found - make sure it's installed and available on %PATH%\n");
abe256e7
RL
23 $vc_win64a_info = { AS => "{unknown}",
24 ASFLAGS => "",
d63c12c6 25 asflags => "",
a2608e4b
KP
26 asoutflag => "",
27 perlasm_scheme => "auto" };
2fe73036
RL
28 }
29 }
30 return $vc_win64a_info;
31}
32
43800958
RL
33my $vc_win32_info = {};
34sub vc_win32_info {
35 unless (%$vc_win32_info) {
36 my $ver=`nasm -v 2>NUL`;
37 my $vew=`nasmw -v 2>NUL`;
38 if ($ver ne "" || $vew ne "") {
abe256e7
RL
39 $vc_win32_info = { AS => $ver ge $vew ? "nasm" : "nasmw",
40 ASFLAGS => "",
43800958 41 asflags => "-f win32",
b6954f3b 42 asoutflag => "-o ",
43800958
RL
43 perlasm_scheme => "win32n" };
44 } elsif ($disabled{asm}) {
c059564a 45 # not actually used, uplink shim is inlined into C code
abe256e7
RL
46 $vc_win32_info = { AS => "ml",
47 ASFLAGS => "/nologo /Zi",
48 asflags => "/Cp /coff /c /Cx",
43800958
RL
49 asoutflag => "/Fo",
50 perlasm_scheme => "win32" };
51 } else {
8937a4ed 52 $die->("NASM not found - make sure it's installed and available on %PATH%\n");
abe256e7
RL
53 $vc_win32_info = { AS => "{unknown}",
54 ASFLAGS => "",
d63c12c6
RL
55 asflags => "",
56 asoutflag => "",
57 perlasm_scheme => "win32" };
43800958
RL
58 }
59 }
60 return $vc_win32_info;
61}
62
2fe73036
RL
63my $vc_wince_info = {};
64sub vc_wince_info {
65 unless (%$vc_wince_info) {
66 # sanity check
17f16617
RL
67 $die->('%OSVERSION% is not defined') if (!defined(env('OSVERSION')));
68 $die->('%PLATFORM% is not defined') if (!defined(env('PLATFORM')));
69 $die->('%TARGETCPU% is not defined') if (!defined(env('TARGETCPU')));
2fe73036
RL
70
71 #
72 # Idea behind this is to mimic flags set by eVC++ IDE...
73 #
17f16617 74 my $wcevers = env('OSVERSION'); # WCENNN
d63c12c6
RL
75 my $wcevernum;
76 my $wceverdotnum;
77 if ($wcevers =~ /^WCE([1-9])([0-9]{2})$/) {
78 $wcevernum = "$1$2";
79 $wceverdotnum = "$1.$2";
80 } else {
81 $die->('%OSVERSION% value is insane');
82 $wcevernum = "{unknown}";
83 $wceverdotnum = "{unknown}";
84 }
85 my $wcecdefs = "-D_WIN32_WCE=$wcevernum -DUNDER_CE=$wcevernum"; # -D_WIN32_WCE=NNN
86 my $wcelflag = "/subsystem:windowsce,$wceverdotnum"; # ...,N.NN
2fe73036 87
17f16617 88 my $wceplatf = env('PLATFORM');
01d99976
RL
89
90 $wceplatf =~ tr/a-z0-9 /A-Z0-9_/;
91 $wcecdefs .= " -DWCE_PLATFORM_$wceplatf";
2fe73036 92
17f16617 93 my $wcetgt = env('TARGETCPU'); # just shorter name...
2fe73036
RL
94 SWITCH: for($wcetgt) {
95 /^X86/ && do { $wcecdefs.=" -Dx86 -D_X86_ -D_i386_ -Di_386_";
96 $wcelflag.=" /machine:X86"; last; };
97 /^ARMV4[IT]/ && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
98 $wcecdefs.=" -DTHUMB -D_THUMB_" if($wcetgt=~/T$/);
99 $wcecdefs.=" -QRarch4T -QRinterwork-return";
100 $wcelflag.=" /machine:THUMB"; last; };
101 /^ARM/ && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
102 $wcelflag.=" /machine:ARM"; last; };
103 /^MIPSIV/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
104 $wcecdefs.=" -D_MIPS64 -QMmips4 -QMn32";
105 $wcelflag.=" /machine:MIPSFPU"; last; };
106 /^MIPS16/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
107 $wcecdefs.=" -DMIPSII -QMmips16";
108 $wcelflag.=" /machine:MIPS16"; last; };
109 /^MIPSII/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
110 $wcecdefs.=" -QMmips2";
111 $wcelflag.=" /machine:MIPS"; last; };
112 /^R4[0-9]{3}/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000";
113 $wcelflag.=" /machine:MIPS"; last; };
114 /^SH[0-9]/ && do { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_ -DSHx";
115 $wcecdefs.=" -Qsh4" if ($wcetgt =~ /^SH4/);
116 $wcelflag.=" /machine:$wcetgt"; last; };
117 { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_";
118 $wcelflag.=" /machine:$wcetgt"; last; };
119 }
120
8c3bc594 121 $vc_wince_info = { cppflags => $wcecdefs,
2fe73036
RL
122 lflags => $wcelflag };
123 }
124 return $vc_wince_info;
125}
126
5fe5bc30
RL
127# Helper functions for the VMS configs
128my $vms_info = {};
129sub vms_info {
ab907189
RL
130 my $pointer_size_str = $config{target} =~ m|-p(\d+)$| ? $1 : "";
131
132 # For the case where Configure iterate through all config targets, such
133 # as when listing them and their details, we reset info if the pointer
134 # size changes.
135 if (%$vms_info && $vms_info->{pointer_size} ne $pointer_size_str) {
136 $vms_info = {};
137 }
0c9b1534 138
ab907189 139 unless (%$vms_info) {
58ad786a
RL
140 $vms_info->{disable_warns} = [
141 "CXXPRAGMANA", # Shut up about unknown / unsupported pragmas
142 ];
7878e536 143 $vms_info->{pointer_size} = $pointer_size_str;
ab907189 144 if ($pointer_size_str eq "64") {
0c9b1534
RL
145 `PIPE CC /NOCROSS_REFERENCE /NOLIST /NOOBJECT /WARNINGS = DISABLE = ( MAYLOSEDATA3, EMPTYFILE ) NL: 2> NL:`;
146 if ($? == 0) {
147 push @{$vms_info->{disable_warns}}, "MAYLOSEDATA3";
148 }
149 }
62890f47
RL
150
151 unless ($disabled{zlib}) {
0c9b1534 152 my $default_zlib = 'GNV$LIBZSHR' . $pointer_size_str;
62890f47 153 if (defined($disabled{"zlib-dynamic"})) {
0c9b1534 154 $vms_info->{zlib} = $withargs{zlib_lib} || "$default_zlib/SHARE";
62890f47 155 } else {
0c9b1534
RL
156 $vms_info->{def_zlib} = $withargs{zlib_lib} || $default_zlib;
157 # In case the --with-zlib-lib value contains something like
158 # /SHARE or /LIB or so at the end, remove it.
159 $vms_info->{def_zlib} =~ s|/.*$||g;
62890f47
RL
160 }
161 }
ab7134ef
RL
162
163 if ($config{target} =~ /-ia64/) {
164 `PIPE ias -H 2> NL:`;
165 if ($? == 0) {
abe256e7
RL
166 $vms_info->{AS} = "ias";
167 $vms_info->{ASFLAGS} = '-d debug';
168 $vms_info->{asflags} = '"-N" vms_upcase';
b6954f3b 169 $vms_info->{asoutflag} = "-o ";
ab7134ef
RL
170 $vms_info->{perlasm_scheme} = "ias";
171 }
172 }
5fe5bc30
RL
173 }
174 return $vms_info;
175}
2fe73036 176
3b6c4b07 177my %targets = (
f09e7ca9 178
7ead0c89 179#### Basic configs that should work on any 32-bit box
5e1b2353 180 "gcc" => {
d76117b9 181 inherit_from => [ "BASE_unix" ],
abe256e7
RL
182 CC => "gcc",
183 CFLAGS => picker(debug => "-O0 -g",
8864f0de 184 release => "-O3"),
9c62a279 185 thread_scheme => "(unknown)",
5e1b2353
RL
186 bn_ops => "BN_LLONG",
187 },
188 "cc" => {
d76117b9 189 inherit_from => [ "BASE_unix" ],
abe256e7
RL
190 CC => "cc",
191 CFLAGS => "-O",
9c62a279 192 thread_scheme => "(unknown)",
5e1b2353 193 },
f09e7ca9 194
7ead0c89 195#### VOS Configurations
5e1b2353 196 "vos-gcc" => {
d2b2221a 197 inherit_from => [ "BASE_unix" ],
abe256e7
RL
198 CC => "gcc",
199 CFLAGS => picker(default => "-Wall",
463a7b8c 200 debug => "-O0 -g",
8864f0de 201 release => "-O3"),
68b8bcf4
RL
202 cppflags => "-D_POSIX_C_SOURCE=200112L -D_BSD -D_VOS_EXTENDED_NAMES",
203 lib_cppflags => "-DB_ENDIAN",
9c62a279 204 thread_scheme => "(unknown)",
5e1b2353 205 sys_id => "VOS",
47eeaf45 206 lflags => add("-Wl,-map"),
5e1b2353
RL
207 bn_ops => "BN_LLONG",
208 shared_extension => ".so",
209 },
f09e7ca9 210
29d09327 211#### Solaris configurations
f6739c3d 212 "solaris-common" => {
d2b2221a 213 inherit_from => [ "BASE_unix" ],
f6739c3d 214 template => 1,
68b8bcf4 215 lib_cppflags => "-DFILIO_H",
8cfc21f5 216 ex_libs => add("-lsocket -lnsl -ldl"),
f6739c3d 217 dso_scheme => "dlfcn",
9c62a279 218 thread_scheme => "pthreads",
7b97581b
RL
219 },
220#### Solaris common with Sun C setups
221 "solaris-common-cc" => {
222 inherit_from => [ "solaris-common" ],
223 template => 1,
ef2dfc99 224 shared_target => "solaris",
dbb85890
AP
225 shared_ldflag => "-Wl,-Bsymbolic",
226 shared_defflag => "-Wl,-M,",
227 shared_sonameflag=> "-Wl,-h,",
f6739c3d 228 },
7b97581b
RL
229#### Solaris common with GNU C setups
230 "solaris-common-gcc" => {
231 inherit_from => [ "solaris-common" ],
232 template => 1,
3a19f1a9 233 shared_target => "solaris-gcc-shared", # The rest is on shared_info.pl
7b97581b 234 },
f09e7ca9 235#### Solaris x86 with GNU C setups
5e1b2353 236 "solaris-x86-gcc" => {
fe9e5b9c
AP
237 # NB. GNU C has to be configured to use GNU assembler, and not
238 # /usr/ccs/bin/as. Failure to comply will result in compile
239 # failures [at least] in 32-bit build.
7b97581b 240 inherit_from => [ "solaris-common-gcc" ],
abe256e7
RL
241 CC => "gcc",
242 CFLAGS => add_before(picker(default => "-Wall",
8864f0de 243 debug => "-O0 -g",
abe256e7 244 release => "-O3 -fomit-frame-pointer")),
68b8bcf4 245 lib_cppflags => add("-DL_ENDIAN"),
a01dab94 246 bn_ops => "BN_LLONG",
5e1b2353 247 shared_cflag => "-fPIC",
82b6b084 248 shared_ldflag => add_before("-shared -static-libgcc"),
e6f98ae4
RL
249 asm_arch => 'x86',
250 perlasm_scheme => 'elf',
5e1b2353 251 },
5e1b2353 252 "solaris64-x86_64-gcc" => {
7ead0c89
AP
253 # -shared -static-libgcc might appear controversial, but modules
254 # taken from static libgcc do not have relocations and linking
255 # them into our shared objects doesn't have any negative side
256 # effects. On the contrary, doing so makes it possible to use
257 # gcc shared build with Sun C. Given that gcc generates faster
258 # code [thanks to inline assembler], I would actually recommend
259 # to consider using gcc shared build even with vendor compiler:-)
e3713c36 260 # -- <appro@openssl.org>
7b97581b 261 inherit_from => [ "solaris-common-gcc" ],
abe256e7
RL
262 CC => "gcc",
263 CFLAGS => add_before(picker(default => "-Wall",
8864f0de 264 debug => "-O0 -g",
abe256e7 265 release => "-O3")),
f5b06306 266 cflags => add("-m64"),
68b8bcf4 267 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 268 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 269 asm_arch => 'x86_64',
5e1b2353 270 perlasm_scheme => "elf",
5e1b2353 271 shared_cflag => "-fPIC",
82b6b084 272 shared_ldflag => add_before("-shared -static-libgcc"),
5e1b2353
RL
273 multilib => "/64",
274 },
f09e7ca9
RS
275
276#### Solaris x86 with Sun C setups
216a0cc4
AP
277 # There used to be solaris-x86-cc target, but it was removed,
278 # primarily because vendor assembler can't assemble our modules
279 # with -KPIC flag. As result it, assembly support, was not even
280 # available as option. But its lack means lack of side-channel
79c44b4e 281 # resistant code, which is incompatible with security by today's
216a0cc4
AP
282 # standards. Fortunately gcc is readily available prepackaged
283 # option, which we can firmly point at...
284 #
285 # On related note, solaris64-x86_64-cc target won't compile code
286 # paths utilizing AVX and post-Haswell instruction extensions.
287 # Consider switching to solaris64-x86_64-gcc even here...
288 #
5e1b2353 289 "solaris64-x86_64-cc" => {
7b97581b 290 inherit_from => [ "solaris-common-cc" ],
abe256e7
RL
291 CC => "cc",
292 CFLAGS => add_before(picker(debug => "-g",
8c3bc594 293 release => "-xO5 -xdepend -xbuiltin")),
abe256e7 294 cflags => add_before("-xarch=generic64 -xstrconst -Xa"),
68b8bcf4
RL
295 cppflags => add(threads("-D_REENTRANT")),
296 lib_cppflags => add("-DL_ENDIAN"),
9c62a279 297 thread_scheme => "pthreads",
8dd0ff1c 298 lflags => add(threads("-mt")),
3e9e810f 299 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 300 asm_arch => 'x86_64',
5e1b2353 301 perlasm_scheme => "elf",
5e1b2353 302 shared_cflag => "-KPIC",
82b6b084 303 shared_ldflag => add_before("-G -dy -z text"),
5e1b2353
RL
304 multilib => "/64",
305 },
f09e7ca9
RS
306
307#### SPARC Solaris with GNU C setups
5e1b2353 308 "solaris-sparcv7-gcc" => {
7b97581b 309 inherit_from => [ "solaris-common-gcc" ],
abe256e7
RL
310 CC => "gcc",
311 CFLAGS => add_before(picker(default => "-Wall",
8864f0de 312 debug => "-O0 -g",
abe256e7 313 release => "-O3")),
68b8bcf4 314 lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
3e9e810f 315 bn_ops => "BN_LLONG RC4_CHAR",
5e1b2353 316 shared_cflag => "-fPIC",
1c529128 317 shared_ldflag => add_before("-shared -static-libgcc"),
5e1b2353 318 },
5e1b2353 319 "solaris-sparcv8-gcc" => {
30478c97 320 inherit_from => [ "solaris-sparcv7-gcc" ],
bdcd83e1 321 cflags => add_before("-mcpu=v8"),
e6f98ae4
RL
322 asm_arch => 'sparcv8',
323 perlasm_scheme => 'void',
5e1b2353 324 },
5e1b2353 325 "solaris-sparcv9-gcc" => {
7ead0c89 326 # -m32 should be safe to add as long as driver recognizes
f6739c3d 327 # -mcpu=ultrasparc
30478c97 328 inherit_from => [ "solaris-sparcv7-gcc" ],
463a7b8c 329 cflags => add_before("-m32 -mcpu=ultrasparc"),
e6f98ae4
RL
330 asm_arch => 'sparcv9',
331 perlasm_scheme => 'void',
5e1b2353
RL
332 },
333 "solaris64-sparcv9-gcc" => {
7ead0c89 334 inherit_from => [ "solaris-sparcv9-gcc" ],
f6739c3d 335 cflags => sub { my $f=join(" ",@_); $f =~ s/\-m32/-m64/; $f; },
3e9e810f 336 bn_ops => "BN_LLONG RC4_CHAR",
5e1b2353
RL
337 multilib => "/64",
338 },
f09e7ca9
RS
339
340#### SPARC Solaris with Sun C setups
341# SC4.0 doesn't pass 'make test', upgrade to SC5.0 or SC4.2.
342# SC4.2 is ok, better than gcc even on bn as long as you tell it -xarch=v8
343# SC5.0 note: Compiler common patch 107357-01 or later is required!
5e1b2353 344 "solaris-sparcv7-cc" => {
7b97581b 345 inherit_from => [ "solaris-common-cc" ],
abe256e7
RL
346 CC => "cc",
347 CFLAGS => add_before(picker(debug => "-g",
8c3bc594 348 release => "-xO5 -xdepend")),
abe256e7 349 cflags => add_before("-xstrconst -Xa"),
68b8bcf4
RL
350 cppflags => add(threads("-D_REENTRANT")),
351 lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
9c62a279 352 lflags => add(threads("-mt")),
3e9e810f 353 bn_ops => "BN_LLONG RC4_CHAR",
5e1b2353 354 shared_cflag => "-KPIC",
82b6b084 355 shared_ldflag => add_before("-G -dy -z text"),
5e1b2353 356 },
f09e7ca9 357####
5e1b2353 358 "solaris-sparcv8-cc" => {
30478c97 359 inherit_from => [ "solaris-sparcv7-cc" ],
bdcd83e1 360 cflags => add_before("-xarch=v8"),
e6f98ae4
RL
361 asm_arch => 'sparcv8',
362 perlasm_scheme => 'void',
5e1b2353
RL
363 },
364 "solaris-sparcv9-cc" => {
30478c97 365 inherit_from => [ "solaris-sparcv7-cc" ],
fa4618a2 366 cflags => add_before("-xarch=v8plus"),
e6f98ae4
RL
367 asm_arch => 'sparcv9',
368 perlasm_scheme => 'void',
5e1b2353
RL
369 },
370 "solaris64-sparcv9-cc" => {
30478c97 371 inherit_from => [ "solaris-sparcv7-cc" ],
691e2efa 372 cflags => add_before("-m64 -xarch=sparc"),
3e9e810f 373 bn_ops => "BN_LLONG RC4_CHAR",
e6f98ae4
RL
374 asm_arch => 'sparcv9',
375 perlasm_scheme => 'void',
5e1b2353
RL
376 multilib => "/64",
377 },
f09e7ca9 378
f09e7ca9 379#### IRIX 6.x configs
c21c7830 380# Only N32 and N64 ABIs are supported.
1b712f3f
AP
381 "irix-common" => {
382 inherit_from => [ "BASE_unix" ],
383 template => 1,
384 cppflags => threads("-D_SGI_MP_SOURCE"),
b34446cc 385 lib_cppflags => "-DB_ENDIAN",
1b712f3f
AP
386 ex_libs => add(threads("-lpthread")),
387 thread_scheme => "pthreads",
388 dso_scheme => "dlfcn",
389 shared_target => "self",
1b712f3f
AP
390 shared_ldflag => "-shared -Wl,-Bsymbolic",
391 shared_sonameflag=> "-Wl,-soname,",
392 },
5e1b2353 393 "irix-mips3-gcc" => {
30478c97 394 inherit_from => [ "irix-common" ],
abe256e7
RL
395 CC => "gcc",
396 CFLAGS => picker(debug => "-g -O0",
397 release => "-O3"),
1b712f3f 398 LDFLAGS => "-static-libgcc",
abe256e7 399 cflags => "-mabi=n32",
3e9e810f 400 bn_ops => "RC4_CHAR SIXTY_FOUR_BIT",
e6f98ae4 401 asm_arch => 'mips64',
5e1b2353 402 perlasm_scheme => "n32",
5e1b2353
RL
403 multilib => "32",
404 },
405 "irix-mips3-cc" => {
30478c97 406 inherit_from => [ "irix-common" ],
abe256e7
RL
407 CC => "cc",
408 CFLAGS => picker(debug => "-g -O0",
409 release => "-O2"),
410 cflags => "-n32 -mips3 -use_readonly_const -G0 -rdata_shared",
3e9e810f 411 bn_ops => "RC4_CHAR SIXTY_FOUR_BIT",
e6f98ae4 412 asm_arch => 'mips64',
5e1b2353 413 perlasm_scheme => "n32",
5e1b2353
RL
414 multilib => "32",
415 },
7ead0c89 416 # N64 ABI builds.
5e1b2353 417 "irix64-mips4-gcc" => {
30478c97 418 inherit_from => [ "irix-common" ],
abe256e7
RL
419 CC => "gcc",
420 CFLAGS => picker(debug => "-g -O0",
421 release => "-O3"),
1b712f3f 422 LDFLAGS => "-static-libgcc",
abe256e7 423 cflags => "-mabi=64 -mips4",
3e9e810f 424 bn_ops => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
e6f98ae4 425 asm_arch => 'mips64',
5e1b2353 426 perlasm_scheme => "64",
5e1b2353
RL
427 multilib => "64",
428 },
429 "irix64-mips4-cc" => {
30478c97 430 inherit_from => [ "irix-common" ],
abe256e7
RL
431 CC => "cc",
432 CFLAGS => picker(debug => "-g -O0",
433 release => "-O2"),
abe256e7 434 cflags => "-64 -mips4 -use_readonly_const -G0 -rdata_shared",
3e9e810f 435 bn_ops => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
e6f98ae4 436 asm_arch => 'mips64',
5e1b2353 437 perlasm_scheme => "64",
5e1b2353
RL
438 multilib => "64",
439 },
f09e7ca9
RS
440
441#### Unified HP-UX ANSI C configs.
442# Special notes:
443# - Originally we were optimizing at +O4 level. It should be noted
444# that the only difference between +O3 and +O4 is global inter-
445# procedural analysis. As it has to be performed during the link
446# stage the compiler leaves behind certain pseudo-code in lib*.a
447# which might be release or even patch level specific. Generating
448# the machine code for and analyzing the *whole* program appears
449# to be *extremely* memory demanding while the performance gain is
450# actually questionable. The situation is intensified by the default
451# HP-UX data set size limit (infamous 'maxdsiz' tunable) of 64MB
452# which is way too low for +O4. In other words, doesn't +O3 make
453# more sense?
454# - Keep in mind that the HP compiler by default generates code
455# suitable for execution on the host you're currently compiling at.
b6453a68 456# If the toolkit is meant to be used on various PA-RISC processors
7ead0c89 457# consider './Configure hpux-parisc-[g]cc +DAportable'.
f09e7ca9
RS
458# - -DMD32_XARRAY triggers workaround for compiler bug we ran into in
459# 32-bit message digests. (For the moment of this writing) HP C
460# doesn't seem to "digest" too many local variables (they make "him"
461# chew forever:-). For more details look-up MD32_XARRAY comment in
706457b7 462# crypto/sha/sha_local.h.
7ead0c89 463# - originally there were 32-bit hpux-parisc2-* targets. They were
b6453a68 464# scrapped, because a) they were not interchangeable with other 32-bit
0b919cc5
AP
465# targets; b) performance-critical 32-bit assembly modules implement
466# even PA-RISC 2.0-specific code paths, which are chosen at run-time,
467# thus adequate performance is provided even with PA-RISC 1.1 build.
3c3badcf
AP
468 "hpux-common" => {
469 inherit_from => [ "BASE_unix" ],
6e301900
AP
470 template => 1,
471 defines => add("_XOPEN_SOURCE", "_XOPEN_SOURCE_EXTENDED",
472 "_HPUX_ALT_XOPEN_SOCKET_API"),
3c3badcf
AP
473 lib_cppflags => "-DB_ENDIAN",
474 thread_scheme => "pthreads",
475 dso_scheme => "dlfcn", # overridden in 32-bit PA-RISC builds
0ef40b76
AP
476 shared_target => "self",
477 bin_lflags => "-Wl,+s,+cdp,../:,+cdp,./:",
478 shared_ldflag => "-Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+cdp,../:,+cdp,./:",
479 shared_sonameflag=> "-Wl,+h,",
6e301900 480 },
5e1b2353 481 "hpux-parisc-gcc" => {
3c3badcf 482 inherit_from => [ "hpux-common" ],
abe256e7
RL
483 CC => "gcc",
484 CFLAGS => picker(debug => "-O0 -g",
485 release => "-O3"),
486 cflags => add(threads("-pthread")),
3c3badcf 487 lib_cppflags => add("-DBN_DIV2W"),
6e301900 488 ex_libs => add("-ldld", threads("-pthread")),
3c3badcf 489 bn_ops => "BN_LLONG RC4_CHAR",
5e1b2353 490 dso_scheme => "dl",
5e1b2353 491 shared_cflag => "-fPIC",
0ef40b76 492 shared_ldflag => add_before("-shared"),
d4453024 493 shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
5e1b2353
RL
494 },
495 "hpux-parisc1_1-gcc" => {
30478c97 496 inherit_from => [ "hpux-parisc-gcc" ],
e6f98ae4
RL
497 asm_arch => 'parisc11',
498 perlasm_scheme => "32",
5e1b2353
RL
499 multilib => "/pa1.1",
500 },
5e1b2353 501 "hpux64-parisc2-gcc" => {
30478c97 502 inherit_from => [ "hpux-common" ],
abe256e7
RL
503 CC => "gcc",
504 CFLAGS => combine(picker(debug => "-O0 -g",
8c3bc594 505 release => "-O3")),
6e301900 506 cflags => add(threads("-pthread")),
6e301900 507 ex_libs => add("-ldl", threads("-pthread")),
3e9e810f 508 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
e6f98ae4
RL
509 asm_arch => 'parisc20_64',
510 perlasm_scheme => "64",
5e1b2353 511 shared_cflag => "-fpic",
0ef40b76 512 shared_ldflag => add_before("-shared"),
d4453024 513 shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
5e1b2353
RL
514 multilib => "/pa20_64",
515 },
f09e7ca9 516
7ead0c89 517 # More attempts at unified 10.X and 11.X targets for HP C compiler.
5e1b2353 518 "hpux-parisc-cc" => {
3c3badcf 519 inherit_from => [ "hpux-common" ],
abe256e7
RL
520 CC => "cc",
521 CFLAGS => picker(debug => "+O0 +d -g",
522 release => "+O3"),
523 cflags => "+Optrs_strongly_typed -Ae +ESlit",
68b8bcf4 524 cppflags => threads("-D_REENTRANT"),
3c3badcf 525 lib_cppflags => add("-DBN_DIV2W -DMD32_XARRAY"),
6e301900 526 ex_libs => add("-ldld", threads("-lpthread")),
3e9e810f 527 bn_ops => "RC4_CHAR",
5e1b2353 528 dso_scheme => "dl",
5e1b2353 529 shared_cflag => "+Z",
0ef40b76 530 shared_ldflag => add_before("-b"),
d4453024 531 shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
5e1b2353
RL
532 },
533 "hpux-parisc1_1-cc" => {
30478c97 534 inherit_from => [ "hpux-parisc-cc" ],
bdcd83e1 535 cflags => add_before("+DA1.1"),
e6f98ae4
RL
536 asm_arch => 'parisc11',
537 perlasm_scheme => "32",
5e1b2353
RL
538 multilib => "/pa1.1",
539 },
5e1b2353 540 "hpux64-parisc2-cc" => {
30478c97 541 inherit_from => [ "hpux-common" ],
abe256e7
RL
542 CC => "cc",
543 CFLAGS => picker(debug => "+O0 +d -g",
544 release => "+O3") ,
545 cflags => "+DD64 +Optrs_strongly_typed -Ae +ESlit",
68b8bcf4 546 cppflags => threads("-D_REENTRANT") ,
3c3badcf 547 lib_cppflags => add("-DMD32_XARRAY"),
6e301900 548 ex_libs => add("-ldl", threads("-lpthread")),
3e9e810f 549 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
e6f98ae4
RL
550 asm_arch => 'parisc20_64',
551 perlasm_scheme => "64",
5e1b2353 552 shared_cflag => "+Z",
0ef40b76 553 shared_ldflag => add_before("-b"),
d4453024 554 shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
5e1b2353
RL
555 multilib => "/pa20_64",
556 },
f09e7ca9 557
7ead0c89 558 # HP/UX IA-64 targets
5e1b2353 559 "hpux-ia64-cc" => {
30478c97 560 inherit_from => [ "hpux-common" ],
abe256e7
RL
561 CC => "cc",
562 CFLAGS => picker(debug => "+O0 +d -g",
563 release => "+O2"),
564 cflags => "-Ae +DD32 +Olit=all -z",
68b8bcf4 565 cppflags => add(threads("-D_REENTRANT")),
6e301900 566 ex_libs => add("-ldl", threads("-lpthread")),
3e9e810f 567 bn_ops => "SIXTY_FOUR_BIT",
e6f98ae4
RL
568 asm_arch => 'ia64',
569 perlasm_scheme => 'void',
5e1b2353 570 shared_cflag => "+Z",
0ef40b76 571 shared_ldflag => add_before("-b"),
5e1b2353
RL
572 multilib => "/hpux32",
573 },
5e1b2353 574 "hpux64-ia64-cc" => {
30478c97 575 inherit_from => [ "hpux-common" ],
abe256e7
RL
576 CC => "cc",
577 CFLAGS => picker(debug => "+O0 +d -g",
578 release => "+O3"),
579 cflags => "-Ae +DD64 +Olit=all -z",
68b8bcf4 580 cppflags => threads("-D_REENTRANT"),
9c62a279 581 ex_libs => add("-ldl", threads("-lpthread")),
3e9e810f 582 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
583 asm_arch => 'ia64',
584 perlasm_scheme => 'void',
5e1b2353 585 shared_cflag => "+Z",
0ef40b76 586 shared_ldflag => add_before("-b"),
5e1b2353
RL
587 multilib => "/hpux64",
588 },
7ead0c89 589 # GCC builds...
5e1b2353 590 "hpux-ia64-gcc" => {
30478c97 591 inherit_from => [ "hpux-common" ],
abe256e7
RL
592 CC => "gcc",
593 CFLAGS => picker(debug => "-O0 -g",
594 release => "-O3"),
595 cflags => add(threads("-pthread")),
fcd2ac80 596 ex_libs => add("-ldl", threads("-pthread")),
3e9e810f 597 bn_ops => "SIXTY_FOUR_BIT",
e6f98ae4
RL
598 asm_arch => 'ia64',
599 perlasm_scheme => 'void',
5e1b2353 600 shared_cflag => "-fpic",
0ef40b76 601 shared_ldflag => add_before("-shared"),
5e1b2353
RL
602 multilib => "/hpux32",
603 },
604 "hpux64-ia64-gcc" => {
30478c97 605 inherit_from => [ "hpux-common" ],
abe256e7
RL
606 CC => "gcc",
607 CFLAGS => picker(debug => "-O0 -g",
608 release => "-O3"),
609 cflags => combine("-mlp64", threads("-pthread")),
fcd2ac80 610 ex_libs => add("-ldl", threads("-pthread")),
3e9e810f 611 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
612 asm_arch => 'ia64',
613 perlasm_scheme => 'void',
5e1b2353 614 shared_cflag => "-fpic",
0ef40b76 615 shared_ldflag => add_before("-shared"),
5e1b2353
RL
616 multilib => "/hpux64",
617 },
f09e7ca9 618
f09e7ca9 619#### HP MPE/iX http://jazz.external.hp.com/src/openssl/
5e1b2353 620 "MPE/iX-gcc" => {
d2b2221a 621 inherit_from => [ "BASE_unix" ],
abe256e7
RL
622 CC => "gcc",
623 CFLAGS => "-O3",
68b8bcf4
RL
624 cppflags => "-D_POSIX_SOURCE -D_SOCKET_SOURCE",
625 includes => [ "/SYSLOG/PUB" ],
626 lib_cppflags => "-DBN_DIV2W",
5e1b2353 627 sys_id => "MPE",
47eeaf45
RL
628 lflags => add("-L/SYSLOG/PUB"),
629 ex_libs => add("-lsyslog -lsocket -lcurses"),
9c62a279 630 thread_scheme => "(unknown)",
3e9e810f 631 bn_ops => "BN_LLONG",
5e1b2353 632 },
f09e7ca9 633
b4de72bf
AP
634#### DEC Alpha Tru64 targets. Tru64 is marketing name for OSF/1 version 4
635#### and forward. In reality 'uname -s' still returns "OSF1". Originally
636#### there were even osf1-* configs targeting prior versions provided,
637#### but not anymore...
638 "tru64-alpha-gcc" => {
30478c97 639 inherit_from => [ "BASE_unix" ],
abe256e7
RL
640 CC => "gcc",
641 CFLAGS => "-O3",
642 cflags => add("-std=c9x", threads("-pthread")),
8c3bc594 643 cppflags => "-D_XOPEN_SOURCE=500 -D_OSF_SOURCE",
fcd2ac80 644 ex_libs => add("-lrt", threads("-pthread")), # for mlock(2)
3e9e810f 645 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
646 asm_arch => 'alpha',
647 perlasm_scheme => "void",
b4de72bf 648 thread_scheme => "pthreads",
5e1b2353
RL
649 dso_scheme => "dlfcn",
650 shared_target => "alpha-osf1-shared",
651 shared_extension => ".so",
652 },
653 "tru64-alpha-cc" => {
30478c97 654 inherit_from => [ "BASE_unix" ],
abe256e7
RL
655 CC => "cc",
656 CFLAGS => "-tune host -fast",
657 cflags => add("-std1 -readonly_strings",
658 threads("-pthread")),
8c3bc594 659 cppflags => "-D_XOPEN_SOURCE=500 -D_OSF_SOURCE",
fcd2ac80 660 ex_libs => add("-lrt", threads("-pthread")), # for mlock(2)
3e9e810f 661 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
662 asm_arch => 'alpha',
663 perlasm_scheme => "void",
9c62a279 664 thread_scheme => "pthreads",
5e1b2353
RL
665 dso_scheme => "dlfcn",
666 shared_target => "alpha-osf1-shared",
667 shared_ldflag => "-msym",
668 shared_extension => ".so",
669 },
f09e7ca9
RS
670
671####
672#### Variety of LINUX:-)
673####
674# *-generic* is endian-neutral target, but ./config is free to
675# throw in -D[BL]_ENDIAN, whichever appropriate...
cdf2986a 676 "linux-generic32" => {
d2b2221a 677 inherit_from => [ "BASE_unix" ],
abe256e7
RL
678 CC => "gcc",
679 CXX => "g++",
680 CFLAGS => picker(default => "-Wall",
681 debug => "-O0 -g",
682 release => "-O3"),
683 CXXFLAGS => picker(default => "-Wall",
684 debug => "-O0 -g",
685 release => "-O3"),
686 cflags => threads("-pthread"),
687 cxxflags => combine("-std=c++11", threads("-pthread")),
68b8bcf4 688 lib_cppflags => "-DOPENSSL_USE_NODELETE",
fcd2ac80 689 ex_libs => add("-ldl", threads("-pthread")),
3e9e810f 690 bn_ops => "BN_LLONG RC4_CHAR",
9c62a279 691 thread_scheme => "pthreads",
5e1b2353
RL
692 dso_scheme => "dlfcn",
693 shared_target => "linux-shared",
8c3bc594 694 shared_cflag => "-fPIC",
41999e7d 695 shared_ldflag => sub { $disabled{pinshared} ? () : "-Wl,-znodelete" },
9e381e8a 696 enable => [ "afalgeng" ],
5e1b2353 697 },
cdf2986a
TM
698 "linux-latomic" => {
699 inherit_from => [ "linux-generic32" ],
535130c3 700 ex_libs => add(threads("-latomic")),
535130c3 701 },
7ead0c89 702 "linux-generic64" => {
cdf2986a 703 inherit_from => [ "linux-generic32" ],
3e9e810f 704 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
7ead0c89
AP
705 },
706
5e1b2353 707 "linux-ppc" => {
cdf2986a 708 inherit_from => [ "linux-latomic" ],
e6f98ae4 709 asm_arch => 'ppc32',
5e1b2353 710 perlasm_scheme => "linux32",
52c6c12c 711 lib_cppflags => add("-DB_ENDIAN"),
7ead0c89
AP
712 },
713 "linux-ppc64" => {
30478c97 714 inherit_from => [ "linux-generic64" ],
8c3bc594 715 cflags => add("-m64"),
72d7f221 716 cxxflags => add("-m64"),
68b8bcf4 717 lib_cppflags => add("-DB_ENDIAN"),
e6f98ae4 718 asm_arch => 'ppc64',
7ead0c89 719 perlasm_scheme => "linux64",
7ead0c89
AP
720 multilib => "64",
721 },
722 "linux-ppc64le" => {
30478c97 723 inherit_from => [ "linux-generic64" ],
8c3bc594 724 cflags => add("-m64"),
72d7f221 725 cxxflags => add("-m64"),
68b8bcf4 726 lib_cppflags => add("-DL_ENDIAN"),
e6f98ae4 727 asm_arch => 'ppc64',
7ead0c89 728 perlasm_scheme => "linux64le",
5e1b2353 729 },
f09e7ca9 730
5e1b2353 731 "linux-armv4" => {
7ead0c89
AP
732 ################################################################
733 # Note that -march is not among compiler options in linux-armv4
734 # target description. Not specifying one is intentional to give
735 # you choice to:
736 #
737 # a) rely on your compiler default by not specifying one;
738 # b) specify your target platform explicitly for optimal
739 # performance, e.g. -march=armv6 or -march=armv7-a;
740 # c) build "universal" binary that targets *range* of platforms
741 # by specifying minimum and maximum supported architecture;
742 #
743 # As for c) option. It actually makes no sense to specify
744 # maximum to be less than ARMv7, because it's the least
745 # requirement for run-time switch between platform-specific
746 # code paths. And without run-time switch performance would be
747 # equivalent to one for minimum. Secondly, there are some
748 # natural limitations that you'd have to accept and respect.
749 # Most notably you can *not* build "universal" binary for
750 # big-endian platform. This is because ARMv7 processor always
751 # picks instructions in little-endian order. Another similar
752 # limitation is that -mthumb can't "cross" -march=armv6t2
753 # boundary, because that's where it became Thumb-2. Well, this
754 # limitation is a bit artificial, because it's not really
755 # impossible, but it's deemed too tricky to support. And of
756 # course you have to be sure that your binutils are actually
757 # up to the task of handling maximum target platform. With all
758 # this in mind here is an example of how to configure
759 # "universal" build:
760 #
761 # ./Configure linux-armv4 -march=armv6 -D__ARM_MAX_ARCH__=8
762 #
cdf2986a 763 inherit_from => [ "linux-latomic" ],
e6f98ae4 764 asm_arch => 'armv4',
7ead0c89 765 perlasm_scheme => "linux32",
5e1b2353
RL
766 },
767 "linux-aarch64" => {
30478c97 768 inherit_from => [ "linux-generic64" ],
e6f98ae4 769 asm_arch => 'aarch64',
5e1b2353 770 perlasm_scheme => "linux64",
5e1b2353 771 },
a93d3e06 772 "linux-arm64ilp32" => { # https://wiki.linaro.org/Platform/arm64-ilp32
30478c97 773 inherit_from => [ "linux-generic32" ],
8864f0de 774 cflags => add("-mabi=ilp32"),
72d7f221 775 cxxflags => add("-mabi=ilp32"),
3e9e810f 776 bn_ops => "SIXTY_FOUR_BIT RC4_CHAR",
e6f98ae4 777 asm_arch => 'aarch64',
a93d3e06 778 perlasm_scheme => "linux64",
a93d3e06 779 },
7ead0c89 780
5e1b2353 781 "linux-mips32" => {
7ead0c89
AP
782 # Configure script adds minimally required -march for assembly
783 # support, if no -march was specified at command line.
cdf2986a 784 inherit_from => [ "linux-latomic" ],
8c3bc594 785 cflags => add("-mabi=32"),
72d7f221 786 cxxflags => add("-mabi=32"),
e6f98ae4 787 asm_arch => 'mips32',
5e1b2353 788 perlasm_scheme => "o32",
5e1b2353 789 },
7ead0c89
AP
790 # mips32 and mips64 below refer to contemporary MIPS Architecture
791 # specifications, MIPS32 and MIPS64, rather than to kernel bitness.
5e1b2353 792 "linux-mips64" => {
cdf2986a 793 inherit_from => [ "linux-latomic" ],
8c3bc594 794 cflags => add("-mabi=n32"),
72d7f221 795 cxxflags => add("-mabi=n32"),
d250e856 796 bn_ops => "RC4_CHAR SIXTY_FOUR_BIT",
e6f98ae4 797 asm_arch => 'mips64',
5e1b2353 798 perlasm_scheme => "n32",
5e1b2353
RL
799 multilib => "32",
800 },
801 "linux64-mips64" => {
30478c97 802 inherit_from => [ "linux-generic64" ],
8c3bc594 803 cflags => add("-mabi=64"),
72d7f221 804 cxxflags => add("-mabi=64"),
e6f98ae4 805 asm_arch => 'mips64',
5e1b2353 806 perlasm_scheme => "64",
5e1b2353
RL
807 multilib => "64",
808 },
7ead0c89 809
42ee6e7b 810 # riscv below refers to contemporary RISCV Architecture
c2955424 811 # specifications,
812 "linux64-riscv64" => {
813 inherit_from => [ "linux-generic64"],
814 perlasm_scheme => "linux64",
cb2764f2 815 asm_arch => 'riscv64',
c2955424 816 },
817
42ee6e7b 818 "linux32-riscv32" => {
d2e03c60 819 inherit_from => [ "linux-latomic" ],
42ee6e7b
HZZ
820 perlasm_scheme => "linux32",
821 asm_arch => 'riscv32',
822 },
823
e1002c84 824 # loongarch64 below refers to contemporary LoongArch Architecture
b625e21e
SP
825 # specifications,
826 "linux64-loongarch64" => {
827 inherit_from => [ "linux-generic64"],
828 perlasm_scheme => "linux64",
7f2d6188 829 asm_arch => 'loongarch64',
e1002c84 830 lib_cppflags => add("-DL_ENDIAN"),
b625e21e
SP
831 },
832
7ead0c89 833 #### IA-32 targets...
7fbc0bfd
RL
834 #### These two targets are a bit aged and are to be used on older Linux
835 #### machines where gcc doesn't understand -m32 and -m64
5e1b2353 836 "linux-elf" => {
30478c97 837 inherit_from => [ "linux-generic32" ],
abe256e7 838 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
68b8bcf4 839 lib_cppflags => add("-DL_ENDIAN"),
a01dab94 840 bn_ops => "BN_LLONG",
e6f98ae4
RL
841 asm_arch => 'x86',
842 perlasm_scheme => "elf",
5e1b2353
RL
843 },
844 "linux-aout" => {
30478c97 845 inherit_from => [ "BASE_unix" ],
abe256e7
RL
846 CC => "gcc",
847 CFLAGS => add(picker(default => "-Wall",
8864f0de
RL
848 debug => "-O0 -g",
849 release => "-O3 -fomit-frame-pointer")),
68b8bcf4 850 lib_cppflags => add("-DL_ENDIAN"),
a01dab94 851 bn_ops => "BN_LLONG",
9c62a279 852 thread_scheme => "(unknown)",
e6f98ae4 853 asm_arch => 'x86',
5e1b2353
RL
854 perlasm_scheme => "a.out",
855 },
7ead0c89 856
7fbc0bfd
RL
857 #### X86 / X86_64 targets
858 "linux-x86" => {
30478c97 859 inherit_from => [ "linux-generic32" ],
abe256e7
RL
860 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
861 cflags => add("-m32"),
72d7f221 862 cxxflags => add("-m32"),
68b8bcf4 863 lib_cppflags => add("-DL_ENDIAN"),
7fbc0bfd 864 bn_ops => "BN_LLONG",
e6f98ae4 865 asm_arch => 'x86',
7fbc0bfd 866 perlasm_scheme => "elf",
7fbc0bfd 867 },
e1b6ecba
BK
868 "linux-x86-latomic" => {
869 inherit_from => [ "linux-x86" ],
870 ex_libs => add(threads("-latomic")),
871 },
7fbc0bfd
RL
872 "linux-x86-clang" => {
873 inherit_from => [ "linux-x86" ],
abe256e7
RL
874 CC => "clang",
875 CXX => "clang++",
7ea01f52 876 ex_libs => add(threads("-latomic")),
7fbc0bfd 877 },
5e1b2353 878 "linux-x86_64" => {
30478c97 879 inherit_from => [ "linux-generic64" ],
8c3bc594 880 cflags => add("-m64"),
72d7f221 881 cxxflags => add("-m64"),
68b8bcf4 882 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 883 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 884 asm_arch => 'x86_64',
5e1b2353 885 perlasm_scheme => "elf",
5e1b2353
RL
886 multilib => "64",
887 },
7ead0c89
AP
888 "linux-x86_64-clang" => {
889 inherit_from => [ "linux-x86_64" ],
abe256e7
RL
890 CC => "clang",
891 CXX => "clang++",
7ead0c89 892 },
5e1b2353 893 "linux-x32" => {
30478c97 894 inherit_from => [ "linux-generic32" ],
8c3bc594 895 cflags => add("-mx32"),
72d7f221 896 cxxflags => add("-mx32"),
68b8bcf4 897 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 898 bn_ops => "SIXTY_FOUR_BIT",
e6f98ae4 899 asm_arch => 'x86_64',
2460c7f1 900 perlasm_scheme => "elf32",
5e1b2353
RL
901 multilib => "x32",
902 },
7ead0c89
AP
903
904 "linux-ia64" => {
30478c97 905 inherit_from => [ "linux-generic64" ],
3e9e810f 906 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
907 asm_arch => 'ia64',
908 perlasm_scheme => 'void',
7ead0c89
AP
909 },
910
5e1b2353 911 "linux64-s390x" => {
30478c97 912 inherit_from => [ "linux-generic64" ],
8c3bc594 913 cflags => add("-m64"),
72d7f221 914 cxxflags => add("-m64"),
68b8bcf4 915 lib_cppflags => add("-DB_ENDIAN"),
e6f98ae4 916 asm_arch => 's390x',
5e1b2353 917 perlasm_scheme => "64",
5e1b2353
RL
918 multilib => "64",
919 },
5e1b2353 920 "linux32-s390x" => {
7ead0c89
AP
921 #### So called "highgprs" target for z/Architecture CPUs
922 # "Highgprs" is kernel feature first implemented in Linux
923 # 2.6.32, see /proc/cpuinfo. The idea is to preserve most
924 # significant bits of general purpose registers not only
925 # upon 32-bit process context switch, but even on
926 # asynchronous signal delivery to such process. This makes
927 # it possible to deploy 64-bit instructions even in legacy
928 # application context and achieve better [or should we say
929 # adequate] performance. The build is binary compatible with
930 # linux-generic32, and the idea is to be able to install the
931 # resulting libcrypto.so alongside generic one, e.g. as
932 # /lib/highgprs/libcrypto.so.x.y, for ldconfig and run-time
933 # linker to autodiscover. Unfortunately it doesn't work just
934 # yet, because of couple of bugs in glibc
935 # sysdeps/s390/dl-procinfo.c affecting ldconfig and ld.so.1...
936 #
30478c97 937 inherit_from => [ "linux-generic32" ],
8c3bc594 938 cflags => add("-m31 -Wa,-mzarch"),
72d7f221 939 cxxflags => add("-m31 -Wa,-mzarch"),
68b8bcf4 940 lib_cppflags => add("-DB_ENDIAN"),
e6f98ae4 941 asm_arch => 's390x',
5e1b2353 942 perlasm_scheme => "31",
5e1b2353
RL
943 multilib => "/highgprs",
944 },
7ead0c89
AP
945
946 #### SPARC Linux setups
5e1b2353 947 "linux-sparcv8" => {
cdf2986a 948 inherit_from => [ "linux-latomic" ],
8c3bc594 949 cflags => add("-mcpu=v8"),
72d7f221 950 cxxflags => add("-mcpu=v8"),
abe256e7 951 lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
e6f98ae4
RL
952 asm_arch => 'sparcv8',
953 perlasm_scheme => 'void',
5e1b2353 954 },
5e1b2353 955 "linux-sparcv9" => {
7ead0c89
AP
956 # it's a real mess with -mcpu=ultrasparc option under Linux,
957 # but -Wa,-Av8plus should do the trick no matter what.
cdf2986a 958 inherit_from => [ "linux-latomic" ],
8c3bc594 959 cflags => add("-m32 -mcpu=ultrasparc -Wa,-Av8plus"),
72d7f221 960 cxxflags => add("-m32 -mcpu=ultrasparc -Wa,-Av8plus"),
abe256e7 961 lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
e6f98ae4
RL
962 asm_arch => 'sparcv9',
963 perlasm_scheme => 'void',
5e1b2353 964 },
5e1b2353 965 "linux64-sparcv9" => {
7ead0c89 966 # GCC 3.1 is a requirement
30478c97 967 inherit_from => [ "linux-generic64" ],
8c3bc594 968 cflags => add("-m64 -mcpu=ultrasparc"),
72d7f221 969 cxxflags => add("-m64 -mcpu=ultrasparc"),
abe256e7 970 lib_cppflags => add("-DB_ENDIAN"),
535130c3 971 ex_libs => add(threads("-latomic")),
3e9e810f 972 bn_ops => "BN_LLONG RC4_CHAR",
e6f98ae4
RL
973 asm_arch => 'sparcv9',
974 perlasm_scheme => 'void',
5e1b2353
RL
975 multilib => "64",
976 },
7ead0c89 977
5e1b2353 978 "linux-alpha-gcc" => {
30478c97 979 inherit_from => [ "linux-generic64" ],
abe256e7 980 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 981 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
982 asm_arch => 'alpha',
983 perlasm_scheme => "void",
5e1b2353 984 },
5e1b2353 985 "linux-c64xplus" => {
d2b2221a 986 inherit_from => [ "BASE_unix" ],
7ead0c89 987 # TI_CGT_C6000_7.3.x is a requirement
abe256e7
RL
988 CC => "cl6x",
989 CFLAGS => "-o2 -ox -ms",
990 cflags => "--linux -ea=.s -eo=.o -mv6400+ -pden",
72d7f221 991 cxxflags => "--linux -ea=.s -eo=.o -mv6400+ -pden",
8c3bc594 992 cppflags => combine("-DOPENSSL_SMALL_FOOTPRINT",
9c62a279 993 threads("-D_REENTRANT")),
5e1b2353 994 bn_ops => "BN_LLONG",
9c62a279 995 thread_scheme => "pthreads",
e6f98ae4 996 asm_arch => 'c64xplus',
5e1b2353
RL
997 perlasm_scheme => "void",
998 dso_scheme => "dlfcn",
999 shared_target => "linux-shared",
1000 shared_cflag => "--pic",
b6d5ba1a 1001 shared_ldflag => add("-z --sysv --shared"),
5e1b2353
RL
1002 ranlib => "true",
1003 },
f09e7ca9 1004
1818572d 1005#### *BSD
5e1b2353 1006 "BSD-generic32" => {
9c62a279 1007 # As for thread cflag. Idea is to maintain "collective" set of
1818572d
AP
1008 # flags, which would cover all BSD flavors. -pthread applies
1009 # to them all, but is treated differently. OpenBSD expands is
1010 # as -D_POSIX_THREAD -lc_r, which is sufficient. FreeBSD 4.x
1011 # expands it as -lc_r, which has to be accompanied by explicit
1012 # -D_THREAD_SAFE and sometimes -D_REENTRANT. FreeBSD 5.x
1013 # expands it as -lc_r, which seems to be sufficient?
d2b2221a 1014 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1015 CC => "cc",
1016 CFLAGS => picker(default => "-Wall",
1017 debug => "-O0 -g",
1018 release => "-O3"),
1019 cflags => threads("-pthread"),
8c3bc594 1020 cppflags => threads("-D_THREAD_SAFE -D_REENTRANT"),
fcd2ac80 1021 ex_libs => add(threads("-pthread")),
619eb33a 1022 enable => add("devcryptoeng"),
3e9e810f 1023 bn_ops => "BN_LLONG",
9c62a279 1024 thread_scheme => "pthreads",
5e1b2353
RL
1025 dso_scheme => "dlfcn",
1026 shared_target => "bsd-gcc-shared",
1027 shared_cflag => "-fPIC",
5e1b2353 1028 },
7ead0c89
AP
1029 "BSD-generic64" => {
1030 inherit_from => [ "BSD-generic32" ],
3e9e810f 1031 bn_ops => "SIXTY_FOUR_BIT_LONG",
5e1b2353 1032 },
7ead0c89
AP
1033
1034 "BSD-x86" => {
30478c97 1035 inherit_from => [ "BSD-generic32" ],
abe256e7 1036 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
68b8bcf4 1037 lib_cppflags => add("-DL_ENDIAN"),
a01dab94 1038 bn_ops => "BN_LLONG",
e6f98ae4 1039 asm_arch => 'x86',
7ead0c89 1040 perlasm_scheme => "a.out",
5e1b2353 1041 },
7ead0c89
AP
1042 "BSD-x86-elf" => {
1043 inherit_from => [ "BSD-x86" ],
1044 perlasm_scheme => "elf",
5e1b2353 1045 },
f09e7ca9 1046
7ead0c89 1047 "BSD-sparcv8" => {
30478c97 1048 inherit_from => [ "BSD-generic32" ],
8c3bc594 1049 cflags => add("-mcpu=v8"),
68b8bcf4 1050 lib_cppflags => add("-DB_ENDIAN"),
e6f98ae4
RL
1051 asm_arch => 'sparcv8',
1052 perlasm_scheme => 'void',
5e1b2353 1053 },
5e1b2353 1054 "BSD-sparc64" => {
7ead0c89
AP
1055 # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it
1056 # simply *happens* to work around a compiler bug in gcc 3.3.3,
1057 # triggered by RIPEMD160 code.
30478c97 1058 inherit_from => [ "BSD-generic64" ],
68b8bcf4 1059 lib_cppflags => add("-DB_ENDIAN -DMD32_REG_T=int"),
3e9e810f 1060 bn_ops => "BN_LLONG",
e6f98ae4
RL
1061 asm_arch => 'sparcv9',
1062 perlasm_scheme => 'void',
5e1b2353 1063 },
7ead0c89 1064
5e1b2353 1065 "BSD-ia64" => {
30478c97 1066 inherit_from => [ "BSD-generic64" ],
68b8bcf4 1067 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 1068 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4
RL
1069 asm_arch => 'ia64',
1070 perlasm_scheme => 'void',
5e1b2353 1071 },
7ead0c89 1072
5e1b2353 1073 "BSD-x86_64" => {
30478c97 1074 inherit_from => [ "BSD-generic64" ],
68b8bcf4 1075 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 1076 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 1077 asm_arch => 'x86_64',
5e1b2353 1078 perlasm_scheme => "elf",
5e1b2353 1079 },
f09e7ca9 1080
8e22f9d6
AJ
1081 "BSD-aarch64" => {
1082 inherit_from => [ "BSD-generic64" ],
1083 lib_cppflags => add("-DL_ENDIAN"),
1084 bn_ops => "SIXTY_FOUR_BIT_LONG",
1085 asm_arch => 'aarch64',
1086 perlasm_scheme => "linux64",
1087 },
1088
f5485b97 1089 "BSD-ppc" => {
1090 inherit_from => [ "BSD-generic32" ],
1091 asm_arch => 'ppc32',
1092 perlasm_scheme => "linux32",
1093 lib_cppflags => add("-DB_ENDIAN"),
1094 },
1095
1096 "BSD-ppc64" => {
1097 inherit_from => [ "BSD-generic64" ],
1098 cflags => add("-m64"),
1099 cxxflags => add("-m64"),
1100 lib_cppflags => add("-DB_ENDIAN"),
1101 asm_arch => 'ppc64',
1102 perlasm_scheme => "linux64",
1103 },
1104
1105 "BSD-ppc64le" => {
1106 inherit_from => [ "BSD-generic64" ],
1107 cflags => add("-m64"),
1108 cxxflags => add("-m64"),
1109 lib_cppflags => add("-DL_ENDIAN"),
1110 asm_arch => 'ppc64',
1111 perlasm_scheme => "linux64le",
1112 },
1113
42ee6e7b 1114 # riscv below refers to contemporary RISCV Architecture
c2d1ad0e
PK
1115 # specifications,
1116 "BSD-riscv64" => {
1117 inherit_from => [ "BSD-generic64"],
1118 perlasm_scheme => "linux64",
d1460afd 1119 asm_arch => 'riscv64',
c2d1ad0e
PK
1120 },
1121
42ee6e7b
HZZ
1122 "BSD-riscv32" => {
1123 inherit_from => [ "BSD-generic32"],
1124 perlasm_scheme => "linux32",
1125 asm_arch => 'riscv32',
1126 },
1127
a9389c0b
PK
1128 "BSD-armv4" => {
1129 ################################################################
1130 # Note that -march is not among compiler options in linux-armv4
1131 # target description. Not specifying one is intentional to give
1132 # you choice to:
1133 #
1134 # a) rely on your compiler default by not specifying one;
1135 # b) specify your target platform explicitly for optimal
1136 # performance, e.g. -march=armv6 or -march=armv7-a;
1137 # c) build "universal" binary that targets *range* of platforms
1138 # by specifying minimum and maximum supported architecture;
1139 #
1140 # As for c) option. It actually makes no sense to specify
1141 # maximum to be less than ARMv7, because it's the least
1142 # requirement for run-time switch between platform-specific
1143 # code paths. And without run-time switch performance would be
1144 # equivalent to one for minimum. Secondly, there are some
1145 # natural limitations that you'd have to accept and respect.
1146 # Most notably you can *not* build "universal" binary for
1147 # big-endian platform. This is because ARMv7 processor always
1148 # picks instructions in little-endian order. Another similar
1149 # limitation is that -mthumb can't "cross" -march=armv6t2
1150 # boundary, because that's where it became Thumb-2. Well, this
1151 # limitation is a bit artificial, because it's not really
1152 # impossible, but it's deemed too tricky to support. And of
1153 # course you have to be sure that your binutils are actually
1154 # up to the task of handling maximum target platform. With all
1155 # this in mind here is an example of how to configure
1156 # "universal" build:
1157 #
1158 # ./Configure BSD-armv4 -march=armv6 -D__ARM_MAX_ARCH__=8
1159 #
1160 inherit_from => [ "BSD-generic32" ],
1161 asm_arch => 'armv4',
1162 perlasm_scheme => "linux32",
1163 },
1164
5e1b2353 1165 "bsdi-elf-gcc" => {
30478c97 1166 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1167 CC => "gcc",
1168 CFLAGS => "-fomit-frame-pointer -O3 -Wall",
68b8bcf4 1169 lib_cppflags => "-DPERL5 -DL_ENDIAN",
98fdbce0 1170 ex_libs => add("-ldl"),
a01dab94 1171 bn_ops => "BN_LLONG",
e6f98ae4
RL
1172 asm_arch => 'x86',
1173 perlasm_scheme => "elf",
9c62a279 1174 thread_scheme => "(unknown)",
5e1b2353
RL
1175 dso_scheme => "dlfcn",
1176 shared_target => "bsd-gcc-shared",
1177 shared_cflag => "-fPIC",
5e1b2353 1178 },
c3bd630d
DC
1179#### *BSD-nodef
1180 "BSD-nodef-generic32" => {
1181 # As for thread cflag. Idea is to maintain "collective" set of
1182 # flags, which would cover all BSD flavors. -pthread applies
1183 # to them all, but is treated differently. OpenBSD expands is
1184 # as -D_POSIX_THREAD -lc_r, which is sufficient. FreeBSD 4.x
1185 # expands it as -lc_r, which has to be accompanied by explicit
1186 # -D_THREAD_SAFE and sometimes -D_REENTRANT. FreeBSD 5.x
1187 # expands it as -lc_r, which seems to be sufficient?
1188 inherit_from => [ "BASE_unix" ],
1189 CC => "cc",
1190 CFLAGS => picker(default => "-Wall",
1191 debug => "-O0 -g",
1192 release => "-O3"),
1193 cflags => threads("-pthread"),
1194 cppflags => threads("-D_THREAD_SAFE -D_REENTRANT"),
1195 ex_libs => add(threads("-pthread")),
1196 enable => add("devcryptoeng"),
1197 bn_ops => "BN_LLONG",
1198 thread_scheme => "pthreads",
1199 dso_scheme => "dlfcn",
1200 shared_target => "bsd-gcc-nodef-shared",
1201 shared_cflag => "-fPIC",
1202 },
1203 "BSD-nodef-generic64" => {
1204 inherit_from => [ "BSD-nodef-generic32" ],
1205 bn_ops => "SIXTY_FOUR_BIT_LONG",
1206 },
1207
1208 "BSD-nodef-x86" => {
1209 inherit_from => [ "BSD-nodef-generic32" ],
1210 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
1211 lib_cppflags => add("-DL_ENDIAN"),
1212 bn_ops => "BN_LLONG",
1213 asm_arch => 'x86',
1214 perlasm_scheme => "a.out",
1215 },
1216 "BSD-nodef-x86-elf" => {
1217 inherit_from => [ "BSD-nodef-x86" ],
1218 perlasm_scheme => "elf",
1219 },
1220
1221 "BSD-nodef-sparcv8" => {
1222 inherit_from => [ "BSD-nodef-generic32" ],
1223 cflags => add("-mcpu=v8"),
1224 lib_cppflags => add("-DB_ENDIAN"),
1225 asm_arch => 'sparcv8',
1226 perlasm_scheme => 'void',
1227 },
1228 "BSD-nodef-sparc64" => {
1229 # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it
1230 # simply *happens* to work around a compiler bug in gcc 3.3.3,
1231 # triggered by RIPEMD160 code.
1232 inherit_from => [ "BSD-nodef-generic64" ],
1233 lib_cppflags => add("-DB_ENDIAN -DMD32_REG_T=int"),
1234 bn_ops => "BN_LLONG",
1235 asm_arch => 'sparcv9',
1236 perlasm_scheme => 'void',
1237 },
1238
1239 "BSD-nodef-ia64" => {
1240 inherit_from => [ "BSD-nodef-generic64" ],
1241 lib_cppflags => add("-DL_ENDIAN"),
1242 bn_ops => "SIXTY_FOUR_BIT_LONG",
1243 asm_arch => 'ia64',
1244 perlasm_scheme => 'void',
1245 },
1246
1247 "BSD-nodef-x86_64" => {
1248 inherit_from => [ "BSD-nodef-generic64" ],
1249 lib_cppflags => add("-DL_ENDIAN"),
1250 bn_ops => "SIXTY_FOUR_BIT_LONG",
1251 asm_arch => 'x86_64',
1252 perlasm_scheme => "elf",
1253 },
f09e7ca9 1254
f09e7ca9
RS
1255#### SCO/Caldera targets.
1256#
1257# Originally we had like unixware-*, unixware-*-pentium, unixware-*-p6, etc.
1258# Now we only have blended unixware-* as it's the only one used by ./config.
1259# If you want to optimize for particular microarchitecture, bypass ./config
1260# and './Configure unixware-7 -Kpentium_pro' or whatever appropriate.
1261# Note that not all targets include assembler support. Mostly because of
1262# lack of motivation to support out-of-date platforms with out-of-date
e3713c36 1263# compiler drivers and assemblers.
f09e7ca9
RS
1264#
1265# UnixWare 2.0x fails destest with -O.
5e1b2353 1266 "unixware-2.0" => {
d2b2221a 1267 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1268 CC => "cc",
1269 cflags => threads("-Kthread"),
68b8bcf4 1270 lib_cppflags => "-DFILIO_H -DNO_STRINGS_H",
98fdbce0 1271 ex_libs => add("-lsocket -lnsl -lresolv -lx"),
9c62a279 1272 thread_scheme => "uithreads",
5e1b2353
RL
1273 },
1274 "unixware-2.1" => {
d2b2221a 1275 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1276 CC => "cc",
1277 CFLAGS => "-O",
1278 cflags => threads("-Kthread"),
68b8bcf4 1279 lib_cppflags => "-DFILIO_H",
98fdbce0 1280 ex_libs => add("-lsocket -lnsl -lresolv -lx"),
9c62a279 1281 thread_scheme => "uithreads",
5e1b2353
RL
1282 },
1283 "unixware-7" => {
30478c97 1284 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1285 CC => "cc",
1286 CFLAGS => "-O",
1287 cflags => combine("-Kalloca", threads("-Kthread")),
68b8bcf4 1288 lib_cppflags => "-DFILIO_H",
98fdbce0 1289 ex_libs => add("-lsocket -lnsl"),
9c62a279 1290 thread_scheme => "uithreads",
a01dab94 1291 bn_ops => "BN_LLONG",
e6f98ae4 1292 asm_arch => 'x86',
5e1b2353
RL
1293 perlasm_scheme => "elf-1",
1294 dso_scheme => "dlfcn",
1295 shared_target => "svr5-shared",
1296 shared_cflag => "-Kpic",
5e1b2353
RL
1297 },
1298 "unixware-7-gcc" => {
30478c97 1299 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1300 CC => "gcc",
1301 CFLAGS => "-O3 -fomit-frame-pointer -Wall",
68b8bcf4
RL
1302 cppflags => add(threads("-D_REENTRANT")),
1303 lib_cppflags => add("-DL_ENDIAN -DFILIO_H"),
98fdbce0 1304 ex_libs => add("-lsocket -lnsl"),
a01dab94 1305 bn_ops => "BN_LLONG",
9c62a279 1306 thread_scheme => "pthreads",
e6f98ae4 1307 asm_arch => 'x86',
5e1b2353
RL
1308 perlasm_scheme => "elf-1",
1309 dso_scheme => "dlfcn",
1310 shared_target => "gnu-shared",
1311 shared_cflag => "-fPIC",
5e1b2353 1312 },
e3713c36 1313# SCO 5 - Ben Laurie says the -O breaks the SCO cc.
5e1b2353 1314 "sco5-cc" => {
30478c97 1315 inherit_from => [ "BASE_unix" ],
5e1b2353
RL
1316 cc => "cc",
1317 cflags => "-belf",
98fdbce0 1318 ex_libs => add("-lsocket -lnsl"),
9c62a279 1319 thread_scheme => "(unknown)",
e6f98ae4 1320 asm_arch => 'x86',
5e1b2353
RL
1321 perlasm_scheme => "elf-1",
1322 dso_scheme => "dlfcn",
1323 shared_target => "svr3-shared",
1324 shared_cflag => "-Kpic",
5e1b2353
RL
1325 },
1326 "sco5-gcc" => {
30478c97 1327 inherit_from => [ "BASE_unix" ],
5e1b2353
RL
1328 cc => "gcc",
1329 cflags => "-O3 -fomit-frame-pointer",
98fdbce0 1330 ex_libs => add("-lsocket -lnsl"),
a01dab94 1331 bn_ops => "BN_LLONG",
9c62a279 1332 thread_scheme => "(unknown)",
e6f98ae4 1333 asm_arch => 'x86',
5e1b2353
RL
1334 perlasm_scheme => "elf-1",
1335 dso_scheme => "dlfcn",
1336 shared_target => "svr3-shared",
1337 shared_cflag => "-fPIC",
5e1b2353 1338 },
f09e7ca9
RS
1339
1340#### IBM's AIX.
f780eaad
AP
1341 # Below targets assume AIX >=5. Caveat lector. If you are accustomed
1342 # to control compilation "bitness" by setting $OBJECT_MODE environment
1343 # variable, then you should know that in OpenSSL case it's considered
1344 # only in ./config. Once configured, build procedure remains "deaf" to
1345 # current value of $OBJECT_MODE.
10aafed3
AP
1346 "aix-common" => {
1347 inherit_from => [ "BASE_unix" ],
1348 template => 1,
1349 sys_id => "AIX",
1350 lib_cppflags => "-DB_ENDIAN",
8f29569e 1351 lflags => "-Wl,-bsvr4",
10aafed3
AP
1352 thread_scheme => "pthreads",
1353 dso_scheme => "dlfcn",
ef2dfc99 1354 shared_target => "aix",
f3d6a364 1355 module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
c1b38462 1356 shared_ldflag => "-Wl,-G,-bsymbolic,-bnoentry",
d3273ef6 1357 shared_defflag => "-Wl,-bE:",
69e0f8cc 1358 shared_fipsflag => "-Wl,-binitfini:_init:_cleanup",
fb82cbfe 1359 perl_platform => 'AIX',
10aafed3 1360 },
5e1b2353 1361 "aix-gcc" => {
30478c97 1362 inherit_from => [ "aix-common" ],
abe256e7
RL
1363 CC => "gcc",
1364 CFLAGS => picker(debug => "-O0 -g",
1365 release => "-O"),
1366 cflags => add(threads("-pthread")),
b1f9db69 1367 ex_libs => add(threads("-pthread")),
5e1b2353 1368 bn_ops => "BN_LLONG RC4_CHAR",
e6f98ae4 1369 asm_arch => 'ppc32',
5e1b2353 1370 perlasm_scheme => "aix32",
82b6b084 1371 shared_ldflag => add_before("-shared -static-libgcc"),
2a23cd7f
AP
1372 AR => add("-X32"),
1373 RANLIB => add("-X32"),
5e1b2353
RL
1374 },
1375 "aix64-gcc" => {
30478c97 1376 inherit_from => [ "aix-common" ],
abe256e7
RL
1377 CC => "gcc",
1378 CFLAGS => picker(debug => "-O0 -g",
1379 release => "-O"),
1380 cflags => combine("-maix64", threads("-pthread")),
b1f9db69 1381 ex_libs => add(threads("-pthread")),
5e1b2353 1382 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
e6f98ae4 1383 asm_arch => 'ppc64',
5e1b2353 1384 perlasm_scheme => "aix64",
82b6b084 1385 shared_ldflag => add_before("-shared -static-libgcc"),
cff89b17 1386 shared_extension => "64.so.\$(SHLIB_VERSION_NUMBER)",
2a23cd7f
AP
1387 AR => add("-X64"),
1388 RANLIB => add("-X64"),
5e1b2353 1389 },
178fa72e
DB
1390 "aix64-gcc-as" => {
1391 inherit_from => [ "aix64-gcc" ],
1392 perlasm_scheme => "aix64-as",
1393 },
5e1b2353 1394 "aix-cc" => {
30478c97 1395 inherit_from => [ "aix-common" ],
abe256e7
RL
1396 CC => "cc",
1397 CFLAGS => picker(debug => "-O0 -g",
1398 release => "-O"),
1399 cflags => combine("-q32 -qmaxmem=16384 -qro -qroconst",
8c3bc594 1400 threads("-qthreaded")),
68b8bcf4 1401 cppflags => threads("-D_THREAD_SAFE"),
b1f9db69 1402 ex_libs => add(threads("-lpthreads")),
10aafed3 1403 bn_ops => "BN_LLONG RC4_CHAR",
e6f98ae4 1404 asm_arch => 'ppc32',
5e1b2353 1405 perlasm_scheme => "aix32",
4af14b7b 1406 shared_cflag => "-qpic",
2a23cd7f
AP
1407 AR => add("-X32"),
1408 RANLIB => add("-X32"),
5e1b2353 1409 },
b332dbb3
JK
1410 # shared_target of "aix-solib" builds shared libraries packaged
1411 # without archives. This improves the behavior of inter-library
1412 # references (libssl depending on libcrypto) when building with
1413 # shlib_variant.
1414 # You'll get: libxxx.so (import library, used when linking applications)
1415 # libxxx.so.ver (shared object)
1416 # libxxx.a (static library archive)
1417 # and for runtime, you only need libxxx.so.ver. libxxx.so and libxxx.a
1418 # can be installed along with include files to make an SDK
1419 "aix-cc-solib" => {
1420 inherit_from => [ "aix-cc" ],
1421 shared_target => "aix-solib",
1422 },
5e1b2353 1423 "aix64-cc" => {
30478c97 1424 inherit_from => [ "aix-common" ],
abe256e7
RL
1425 CC => "cc",
1426 CFLAGS => picker(debug => "-O0 -g",
1427 release => "-O"),
1428 cflags => combine("-q64 -qmaxmem=16384 -qro -qroconst",
8c3bc594 1429 threads("-qthreaded")),
68b8bcf4 1430 cppflags => threads("-D_THREAD_SAFE"),
b1f9db69 1431 ex_libs => add(threads("-lpthreads")),
10aafed3 1432 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
e6f98ae4 1433 asm_arch => 'ppc64',
5e1b2353
RL
1434 perlasm_scheme => "aix64",
1435 dso_scheme => "dlfcn",
4af14b7b 1436 shared_cflag => "-qpic",
cff89b17 1437 shared_extension => "64.so.\$(SHLIB_VERSION_NUMBER)",
2a23cd7f
AP
1438 AR => add("-X64"),
1439 RANLIB => add("-X64"),
5e1b2353 1440 },
b332dbb3
JK
1441 "aix64-cc-solib" => {
1442 inherit_from => [ "aix64-cc" ],
1443 shared_target => "aix-solib",
1444 },
f09e7ca9
RS
1445
1446# SIEMENS BS2000/OSD: an EBCDIC-based mainframe
5e1b2353 1447 "BS2000-OSD" => {
d2b2221a 1448 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1449 CC => "c89",
1450 CFLAGS => "-O",
1451 cflags => "-XLLML -XLLMK -XL",
68b8bcf4
RL
1452 cppflags => "-DCHARSET_EBCDIC",
1453 lib_cppflags => "-DB_ENDIAN",
98fdbce0 1454 ex_libs => add("-lsocket -lnsl"),
3e9e810f 1455 bn_ops => "THIRTY_TWO_BIT RC4_CHAR",
9c62a279 1456 thread_scheme => "(unknown)",
5e1b2353 1457 },
f09e7ca9 1458
7ead0c89 1459#### Visual C targets
f09e7ca9 1460#
78a50c75 1461# Win64 targets, WIN64I denotes IA-64/Itanium and WIN64A - AMD64
f09e7ca9 1462#
78a50c75 1463# Note about /wd4090, disable warning C4090. This warning returns false
f09e7ca9
RS
1464# positives in some situations. Disabling it altogether masks both
1465# legitimate and false cases, but as we compile on multiple platforms,
1466# we rely on other compilers to catch legitimate cases.
2fe73036
RL
1467#
1468# Also note that we force threads no matter what. Configuring "no-threads"
1469# is ignored.
78a50c75
AP
1470#
1471# UNICODE is defined in VC-common and applies to all targets. It used to
1472# be an opt-in option for VC-WIN32, but not anymore. The original reason
1473# was because ANSI API was *native* system interface for no longer
1474# supported Windows 9x. Keep in mind that UNICODE only affects how
1475# OpenSSL libraries interact with underlying OS, it doesn't affect API
1476# that OpenSSL presents to application.
1477
7ead0c89 1478 "VC-common" => {
d2b2221a 1479 inherit_from => [ "BASE_Windows" ],
7ead0c89 1480 template => 1,
abe256e7 1481 CC => "cl",
9c90a073 1482 CPP => '$(CC) /EP /C',
78a50c75 1483 CFLAGS => "/W3 /wd4090 /nologo",
abe256e7 1484 coutflag => "/Fo",
23f3242f
TI
1485 LD => "link",
1486 LDFLAGS => "/nologo /debug",
1487 ldoutflag => "/out:",
a75a8756
TI
1488 ldpostoutflag => "",
1489 ld_resp_delim => "\n",
d5a6b54b 1490 bin_lflags => "setargv.obj",
9c90a073 1491 makedepcmd => '$(CC) /Zs /showIncludes',
2e535eb5 1492 makedep_scheme => 'VC',
23f3242f
TI
1493 AR => "lib",
1494 ARFLAGS => "/nologo",
1495 aroutflag => "/out:",
e15eff3a 1496 ar_resp_delim => "\n",
6afb3634
TI
1497 RC => "rc",
1498 rcoutflag => "/fo",
8c3bc594 1499 defines => add("OPENSSL_SYS_WIN32", "WIN32_LEAN_AND_MEAN",
78a50c75 1500 "UNICODE", "_UNICODE",
68b8bcf4
RL
1501 "_CRT_SECURE_NO_DEPRECATE",
1502 "_WINSOCK_DEPRECATED_NO_WARNINGS"),
d748a1c6 1503 lib_cflags => add("/Zi /Fdossl_static.pdb"),
78a50c75 1504 lib_defines => add("L_ENDIAN"),
d748a1c6
MB
1505 dso_cflags => "/Zi /Fddso.pdb",
1506 bin_cflags => "/Zi /Fdapp.pdb",
ef2dfc99
RL
1507 # def_flag made to empty string so a .def file gets generated
1508 shared_defflag => '',
2fe73036 1509 shared_ldflag => "/dll",
e9abfc3a 1510 shared_target => "win-shared", # meaningless except it gives Configure a hint
5fee3fe2 1511 lddefflag => "/def:",
6afb3634 1512 ldresflag => " ",
5fee3fe2 1513 ld_implib_flag => "/implib:",
2fe73036 1514 thread_scheme => "winthreads",
5e1b2353 1515 dso_scheme => "win32",
95768961 1516 perl_platform => 'Windows::MSVC',
6a145a32
AP
1517 # additional parameter to build_scheme denotes install-path "flavour"
1518 build_scheme => add("VC-common", { separator => undef }),
5e1b2353 1519 },
2fe73036 1520 "VC-noCE-common" => {
acf15259 1521 inherit_from => [ "VC-common" ],
be1f4812 1522 template => 1,
abe256e7
RL
1523 CFLAGS => add(picker(debug => '/Od',
1524 release => '/O2')),
78a50c75
AP
1525 cflags => add(picker(default => '/Gs0 /GF /Gy',
1526 debug =>
2fe73036 1527 sub {
abe256e7 1528 ($disabled{shared} ? "" : "/MDd");
2fe73036
RL
1529 },
1530 release =>
1531 sub {
abe256e7 1532 ($disabled{shared} ? "" : "/MD");
2fe73036 1533 })),
fffb1c54
AP
1534 defines => add(picker(default => [], # works as type cast
1535 debug => [ "DEBUG", "_DEBUG" ])),
c32cbe97
AP
1536 lib_cflags => add(sub { $disabled{shared} ? "/MT /Zl" : () }),
1537 # Following might/should appears controversial, i.e. defining
1538 # /MDd without evaluating $disabled{shared}. It works in
1539 # non-shared build because static library is compiled with /Zl
1540 # and bares no reference to specific RTL. And it works in
1541 # shared build because multiple /MDd options are not prohibited.
1542 # But why /MDd in static build? Well, basically this is just a
1543 # reference point, which allows to catch eventual errors that
1544 # would prevent those who want to wrap OpenSSL into own .DLL.
1545 # Why not /MD in release build then? Well, some are likely to
1546 # prefer [non-debug] openssl.exe to be free from Micorosoft RTL
1547 # redistributable.
1548 bin_cflags => add(picker(debug => "/MDd",
1549 release => sub { $disabled{shared} ? "/MT" : () },
1550 )),
2fe73036 1551 bin_lflags => add("/subsystem:console /opt:ref"),
ef5b8296 1552 ex_libs => add(sub {
2fe73036
RL
1553 my @ex_libs = ();
1554 push @ex_libs, 'ws2_32.lib' unless $disabled{sock};
1555 push @ex_libs, 'gdi32.lib advapi32.lib crypt32.lib user32.lib';
1556 return join(" ", @ex_libs);
ef5b8296 1557 }),
2fe73036
RL
1558 },
1559 "VC-WIN64-common" => {
1560 inherit_from => [ "VC-noCE-common" ],
be1f4812 1561 template => 1,
ef5b8296 1562 ex_libs => add(sub {
2fe73036
RL
1563 my @ex_libs = ();
1564 push @ex_libs, 'bufferoverflowu.lib' if (`cl 2>&1` =~ /14\.00\.4[0-9]{4}\./);
1565 return join(" ", @_, @ex_libs);
ef5b8296 1566 }),
78a50c75 1567 bn_ops => add("SIXTY_FOUR_BIT"),
2fe73036 1568 },
7ead0c89 1569 "VC-WIN64I" => {
30478c97 1570 inherit_from => [ "VC-WIN64-common" ],
abe256e7
RL
1571 AS => "ias",
1572 ASFLAGS => "-d debug",
78a50c75 1573 asoutflag => "-o ",
5e1b2353 1574 sys_id => "WIN64I",
b19fe714 1575 uplink_arch => 'ia64',
e6f98ae4 1576 asm_arch => 'ia64',
5e1b2353 1577 perlasm_scheme => "ias",
6ddb62a5 1578 multilib => "-ia64",
5e1b2353
RL
1579 },
1580 "VC-WIN64A" => {
30478c97 1581 inherit_from => [ "VC-WIN64-common" ],
abe256e7
RL
1582 AS => sub { vc_win64a_info()->{AS} },
1583 ASFLAGS => sub { vc_win64a_info()->{ASFLAGS} },
2fe73036 1584 asoutflag => sub { vc_win64a_info()->{asoutflag} },
abe256e7 1585 asflags => sub { vc_win64a_info()->{asflags} },
5e1b2353 1586 sys_id => "WIN64A",
b19fe714 1587 uplink_arch => 'x86_64',
e6f98ae4 1588 asm_arch => 'x86_64',
a2608e4b 1589 perlasm_scheme => sub { vc_win64a_info()->{perlasm_scheme} },
6ddb62a5 1590 multilib => "-x64",
5e1b2353 1591 },
5e1b2353 1592 "VC-WIN32" => {
30478c97 1593 inherit_from => [ "VC-noCE-common" ],
abe256e7
RL
1594 AS => sub { vc_win32_info()->{AS} },
1595 ASFLAGS => sub { vc_win32_info()->{ASFLAGS} },
43800958 1596 asoutflag => sub { vc_win32_info()->{asoutflag} },
abe256e7 1597 asflags => sub { vc_win32_info()->{asflags} },
5e1b2353 1598 sys_id => "WIN32",
78a50c75 1599 bn_ops => add("BN_LLONG"),
989b2ad7 1600 uplink_arch => 'common',
e6f98ae4 1601 asm_arch => 'x86',
f0d484fc 1602 perlasm_scheme => sub { vc_win32_info()->{perlasm_scheme} },
6a145a32
AP
1603 # "WOW" stands for "Windows on Windows", and "VC-WOW" engages
1604 # some installation path heuristics in windows-makefile.tmpl...
1605 build_scheme => add("VC-WOW", { separator => undef }),
5e1b2353 1606 },
5e1b2353 1607 "VC-CE" => {
2fe73036 1608 inherit_from => [ "VC-common" ],
78a50c75
AP
1609 CFLAGS => add(picker(debug => "/Od",
1610 release => "/O1i")),
abe256e7
RL
1611 CPPDEFINES => picker(debug => [ "DEBUG", "_DEBUG" ]),
1612 LDFLAGS => add("/nologo /opt:ref"),
2fe73036 1613 cflags =>
abe256e7
RL
1614 combine('/GF /Gy',
1615 sub { vc_wince_info()->{cflags}; },
1616 sub { `cl 2>&1` =~ /Version ([0-9]+)\./ && $1>=14
1617 ? ($disabled{shared} ? " /MT" : " /MD")
1618 : " /MC"; }),
e548c1fe 1619 cppflags => sub { vc_wince_info()->{cppflags}; },
78a50c75 1620 lib_defines => add("NO_CHMOD", "OPENSSL_SMALL_FOOTPRINT"),
68b8bcf4 1621 lib_cppflags => sub { vc_wince_info()->{cppflags}; },
8c3bc594 1622 includes =>
368297d1
RL
1623 add(combine(sub { defined(env('WCECOMPAT'))
1624 ? '$(WCECOMPAT)/include' : (); },
1625 sub { defined(env('PORTSDK_LIBPATH'))
1626 ? '$(PORTSDK_LIBPATH)/../../include'
1627 : (); })),
abe256e7 1628 lflags => add(combine(sub { vc_wince_info()->{lflags}; },
47eeaf45
RL
1629 sub { defined(env('PORTSDK_LIBPATH'))
1630 ? "/entry:mainCRTstartup" : (); })),
5e1b2353 1631 sys_id => "WINCE",
78a50c75 1632 bn_ops => add("BN_LLONG"),
ef5b8296 1633 ex_libs => add(sub {
2fe73036
RL
1634 my @ex_libs = ();
1635 push @ex_libs, 'ws2.lib' unless $disabled{sock};
1636 push @ex_libs, 'crypt32.lib';
17f16617 1637 if (defined(env('WCECOMPAT'))) {
2fe73036 1638 my $x = '$(WCECOMPAT)/lib';
17f16617 1639 if (-f "$x/env('TARGETCPU')/wcecompatex.lib") {
2fe73036
RL
1640 $x .= '/$(TARGETCPU)/wcecompatex.lib';
1641 } else {
1642 $x .= '/wcecompatex.lib';
1643 }
1644 push @ex_libs, $x;
1645 }
1646 push @ex_libs, '$(PORTSDK_LIBPATH)/portlib.lib'
17f16617 1647 if (defined(env('PORTSDK_LIBPATH')));
a1736f37 1648 push @ex_libs, '/nodefaultlib coredll.lib corelibc.lib'
1649 if (env('TARGETCPU') =~ /^X86|^ARMV4[IT]/);
1650 return join(" ", @ex_libs);
ef5b8296 1651 }),
5e1b2353 1652 },
f09e7ca9 1653
7ead0c89 1654#### MinGW
9dd4ed28
RL
1655 "mingw-common" => {
1656 inherit_from => [ 'BASE_unix' ],
1657 template => 1,
abe256e7
RL
1658 CC => "gcc",
1659 CFLAGS => picker(default => "-Wall",
8c3bc594 1660 debug => "-g -O0",
9dd4ed28 1661 release => "-O3"),
68b8bcf4 1662 cppflags => combine("-DUNICODE -D_UNICODE -DWIN32_LEAN_AND_MEAN",
abe256e7 1663 threads("-D_MT")),
68b8bcf4 1664 lib_cppflags => "-DL_ENDIAN",
98fdbce0 1665 ex_libs => add("-lws2_32 -lgdi32 -lcrypt32"),
9c62a279 1666 thread_scheme => "winthreads",
5e1b2353 1667 dso_scheme => "win32",
520f434b 1668 shared_target => "mingw-shared",
8c3bc594 1669 shared_cppflags => add("_WINDLL"),
68ab559a 1670 shared_ldflag => "-static-libgcc",
9dd4ed28
RL
1671
1672 perl_platform => 'mingw',
1673 },
1674 "mingw" => {
30478c97 1675 inherit_from => [ "mingw-common" ],
9dd4ed28
RL
1676 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
1677 cflags => "-m32",
1678 sys_id => "MINGW32",
1679 bn_ops => add("BN_LLONG"),
e6f98ae4 1680 asm_arch => 'x86',
b19fe714 1681 uplink_arch => 'x86',
9dd4ed28 1682 perlasm_scheme => "coff",
64c443e3 1683 shared_rcflag => "--target=pe-i386",
520f434b 1684 multilib => "",
5e1b2353 1685 },
5e1b2353 1686 "mingw64" => {
b19fe714 1687 # As for uplink_arch. Applink makes it possible to use
7ead0c89
AP
1688 # .dll compiled with one compiler with application compiled with
1689 # another compiler. It's possible to engage Applink support in
b19fe714 1690 # mingw64 build, but it's not done, because until mingw64
7ead0c89
AP
1691 # supports structured exception handling, one can't seriously
1692 # consider its binaries for using with non-mingw64 run-time
1693 # environment. And as mingw64 is always consistent with itself,
1694 # Applink is never engaged and can as well be omitted.
30478c97 1695 inherit_from => [ "mingw-common" ],
abe256e7 1696 cflags => "-m64",
5e1b2353 1697 sys_id => "MINGW64",
9dd4ed28 1698 bn_ops => add("SIXTY_FOUR_BIT"),
e6f98ae4 1699 asm_arch => 'x86_64',
b19fe714 1700 uplink_arch => undef,
5e1b2353 1701 perlasm_scheme => "mingw64",
64c443e3 1702 shared_rcflag => "--target=pe-x86-64",
520f434b 1703 multilib => "64",
5e1b2353 1704 },
f09e7ca9 1705
4d60c7e1
DW
1706#### UEFI
1707 "UEFI" => {
d2b2221a 1708 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1709 CC => "cc",
1710 CFLAGS => "-O",
68b8bcf4 1711 lib_cppflags => "-DL_ENDIAN",
4d60c7e1
DW
1712 sys_id => "UEFI",
1713 },
1b721050
CZ
1714 "UEFI-x86" => {
1715 inherit_from => [ "UEFI" ],
1716 asm_arch => 'x86',
1717 perlasm_scheme => "win32n",
1718 },
1719 "UEFI-x86_64" => {
1720 inherit_from => [ "UEFI" ],
1721 asm_arch => 'x86_64',
1722 perlasm_scheme => "nasm",
1723 },
4d60c7e1 1724
7ead0c89 1725#### UWIN
5e1b2353 1726 "UWIN" => {
d2b2221a 1727 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1728 CC => "cc",
1729 CFLAGS => "-O -Wall",
1730 lib_cppflags => "-DTERMIOS -DL_ENDIAN",
5e1b2353 1731 sys_id => "UWIN",
a01dab94 1732 bn_ops => "BN_LLONG",
5e1b2353
RL
1733 dso_scheme => "win32",
1734 },
f09e7ca9 1735
7ead0c89 1736#### Cygwin
9dd4ed28 1737 "Cygwin-common" => {
68ca1737 1738 inherit_from => [ "BASE_unix" ],
9dd4ed28
RL
1739 template => 1,
1740
abe256e7
RL
1741 CC => "gcc",
1742 CFLAGS => picker(default => "-Wall",
8864f0de 1743 debug => "-g -O0",
9dd4ed28 1744 release => "-O3"),
9b9c42db 1745 ex_libs => add("-lcrypt32"),
68b8bcf4 1746 lib_cppflags => "-DTERMIOS -DL_ENDIAN",
5e1b2353 1747 sys_id => "CYGWIN",
e58d9102 1748 thread_scheme => "pthread",
5e1b2353
RL
1749 dso_scheme => "dlfcn",
1750 shared_target => "cygwin-shared",
8c3bc594 1751 shared_cppflags => "-D_WINDLL",
9dd4ed28
RL
1752
1753 perl_platform => 'Cygwin',
1754 },
1755 "Cygwin-x86" => {
30478c97 1756 inherit_from => [ "Cygwin-common" ],
9dd4ed28
RL
1757 CFLAGS => add(picker(release => "-O3 -fomit-frame-pointer")),
1758 bn_ops => "BN_LLONG",
e6f98ae4 1759 asm_arch => 'x86',
9dd4ed28 1760 perlasm_scheme => "coff",
5e1b2353
RL
1761 },
1762 "Cygwin-x86_64" => {
30478c97 1763 inherit_from => [ "Cygwin-common" ],
abe256e7 1764 CC => "gcc",
3e9e810f 1765 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 1766 asm_arch => 'x86_64',
5e1b2353 1767 perlasm_scheme => "mingw64",
5e1b2353 1768 },
b9ee2dac
RL
1769 # Backward compatibility for those using this target
1770 "Cygwin" => {
1771 inherit_from => [ "Cygwin-x86" ]
1772 },
1773 # In case someone constructs the Cygwin target name themself
1774 "Cygwin-i386" => {
1775 inherit_from => [ "Cygwin-x86" ]
1776 },
1777 "Cygwin-i486" => {
1778 inherit_from => [ "Cygwin-x86" ]
1779 },
1780 "Cygwin-i586" => {
1781 inherit_from => [ "Cygwin-x86" ]
1782 },
1783 "Cygwin-i686" => {
1784 inherit_from => [ "Cygwin-x86" ]
1785 },
f09e7ca9 1786
f09e7ca9 1787##### MacOS X (a.k.a. Darwin) setup
7ead0c89 1788 "darwin-common" => {
d2b2221a 1789 inherit_from => [ "BASE_unix" ],
7ead0c89 1790 template => 1,
abe256e7
RL
1791 CC => "cc",
1792 CFLAGS => picker(debug => "-g -O0",
8c3bc594
RL
1793 release => "-O3"),
1794 cppflags => threads("-D_REENTRANT"),
53043311 1795 lflags => add("-Wl,-search_paths_first"),
5e1b2353 1796 sys_id => "MACOSX",
3e9e810f 1797 bn_ops => "BN_LLONG RC4_CHAR",
9c62a279 1798 thread_scheme => "pthreads",
5e1b2353
RL
1799 perlasm_scheme => "osx32",
1800 dso_scheme => "dlfcn",
0c873419 1801 ranlib => "ranlib -c",
5e1b2353 1802 shared_target => "darwin-shared",
0c873419 1803 shared_cflag => "-fPIC",
d4453024 1804 shared_extension => ".\$(SHLIB_VERSION_NUMBER).dylib",
5e1b2353 1805 },
c75065e1
AP
1806 # Option "freeze" such as -std=gnu9x can't negatively interfere
1807 # with future defaults for below two targets, because MacOS X
1808 # for PPC has no future, it was discontinued by vendor in 2009.
c9741726
RL
1809 "darwin-ppc-cc" => { inherit_from => [ "darwin-ppc" ] }, # Historic alias
1810 "darwin-ppc" => {
30478c97 1811 inherit_from => [ "darwin-common" ],
8c3bc594 1812 cflags => add("-arch ppc -std=gnu9x -Wa,-force_cpusubtype_ALL"),
68b8bcf4 1813 lib_cppflags => add("-DB_ENDIAN"),
107783d9 1814 shared_cflag => add("-fno-common"),
e6f98ae4 1815 asm_arch => 'ppc32',
7ead0c89 1816 perlasm_scheme => "osx32",
7ead0c89 1817 },
c9741726
RL
1818 "darwin64-ppc-cc" => { inherit_from => [ "darwin64-ppc" ] }, # Historic alias
1819 "darwin64-ppc" => {
30478c97 1820 inherit_from => [ "darwin-common" ],
8c3bc594 1821 cflags => add("-arch ppc64 -std=gnu9x"),
68b8bcf4 1822 lib_cppflags => add("-DB_ENDIAN"),
3e9e810f 1823 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
e6f98ae4 1824 asm_arch => 'ppc64',
5e1b2353 1825 perlasm_scheme => "osx64",
5e1b2353 1826 },
c9741726
RL
1827 "darwin-i386-cc" => { inherit_from => [ "darwin-i386" ] }, # Historic alias
1828 "darwin-i386" => {
30478c97 1829 inherit_from => [ "darwin-common" ],
abe256e7
RL
1830 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
1831 cflags => add("-arch i386"),
68b8bcf4 1832 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 1833 bn_ops => "BN_LLONG RC4_INT",
e6f98ae4 1834 asm_arch => 'x86',
5e1b2353 1835 perlasm_scheme => "macosx",
5e1b2353 1836 },
c9741726
RL
1837 "darwin64-x86_64-cc" => { inherit_from => [ "darwin64-x86_64" ] }, # Historic alias
1838 "darwin64-x86_64" => {
30478c97 1839 inherit_from => [ "darwin-common" ],
abe256e7
RL
1840 CFLAGS => add("-Wall"),
1841 cflags => add("-arch x86_64"),
68b8bcf4 1842 lib_cppflags => add("-DL_ENDIAN"),
3e9e810f 1843 bn_ops => "SIXTY_FOUR_BIT_LONG",
e6f98ae4 1844 asm_arch => 'x86_64',
5e1b2353 1845 perlasm_scheme => "macosx",
5e1b2353 1846 },
23f04372
B
1847 "darwin64-arm64-cc" => { inherit_from => [ "darwin64-arm64" ] }, # "Historic" alias
1848 "darwin64-arm64" => {
1849 inherit_from => [ "darwin-common" ],
1850 CFLAGS => add("-Wall"),
1851 cflags => add("-arch arm64"),
1852 lib_cppflags => add("-DL_ENDIAN"),
1853 bn_ops => "SIXTY_FOUR_BIT_LONG",
7c0e98a5 1854 asm_arch => 'aarch64',
23f04372
B
1855 perlasm_scheme => "ios64",
1856 },
7ead0c89 1857
f09e7ca9 1858##### GNU Hurd
7c729851 1859 "hurd-generic32" => {
d2b2221a 1860 inherit_from => [ "BASE_unix" ],
abe256e7 1861 CC => "gcc",
7c729851
ST
1862 CXX => "g++",
1863 CFLAGS => picker(default => "-Wall",
1864 debug => "-O0 -g",
1865 release => "-O3"),
1866 CXXFLAGS => picker(default => "-Wall",
1867 debug => "-O0 -g",
1868 release => "-O3"),
abe256e7 1869 cflags => threads("-pthread"),
7c729851 1870 cxxflags => combine("-std=c++11", threads("-pthread")),
fcd2ac80 1871 ex_libs => add("-ldl", threads("-pthread")),
7c729851 1872 bn_ops => "BN_LLONG RC4_CHAR",
9c62a279 1873 thread_scheme => "pthreads",
5e1b2353
RL
1874 dso_scheme => "dlfcn",
1875 shared_target => "linux-shared",
1876 shared_cflag => "-fPIC",
7c729851
ST
1877 shared_ldflag => sub { $disabled{pinshared} ? () : "-Wl,-znodelete" },
1878 },
1879
1880 "hurd-generic64" => {
1881 inherit_from => [ "hurd-generic32" ],
1882 bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
1883 },
1884
1885 #### X86 / X86_64 targets
1886 "hurd-x86" => {
1887 inherit_from => [ "hurd-generic32" ],
1888 CFLAGS => add(picker(release => "-fomit-frame-pointer")),
1889 cflags => add("-m32"),
1890 cxxflags => add("-m32"),
1891 lib_cppflags => add("-DL_ENDIAN"),
1892 bn_ops => "BN_LLONG",
1893 asm_arch => 'x86',
1894 perlasm_scheme => 'elf',
1895 },
1896
1897 "hurd-x86_64" => {
1898 inherit_from => [ "hurd-generic64" ],
1899 cflags => add("-m64"),
1900 cxxflags => add("-m64"),
1901 lib_cppflags => add("-DL_ENDIAN"),
1902 bn_ops => "SIXTY_FOUR_BIT_LONG",
1903 asm_arch => 'x86_64',
1904 perlasm_scheme => 'elf',
1905 multilib => "64",
5e1b2353 1906 },
f09e7ca9 1907
f09e7ca9 1908##### VxWorks for various targets
5e1b2353 1909 "vxworks-ppc60x" => {
d2b2221a 1910 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1911 CC => "ccppc",
1912 CFLAGS => "-O2 -Wall -fstrength-reduce",
1913 cflags => "-mrtp -mhard-float -mstrict-align -fno-implicit-fp -fno-builtin -fno-strict-aliasing",
8c3bc594
RL
1914 cppflags => combine("-D_REENTRANT -DPPC32_fp60x -DCPU=PPC32",
1915 "_DTOOL_FAMILY=gnu -DTOOL=gnu",
1916 "-I\$(WIND_BASE)/target/usr/h",
1917 "-I\$(WIND_BASE)/target/usr/h/wrn/coreip"),
5e1b2353 1918 sys_id => "VXWORKS",
47eeaf45
RL
1919 lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/common"),
1920 ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
5e1b2353
RL
1921 },
1922 "vxworks-ppcgen" => {
d2b2221a 1923 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1924 CC => "ccppc",
1925 CFLAGS => "-O1 -Wall",
1926 cflags => "-mrtp -msoft-float -mstrict-align -fno-builtin -fno-strict-aliasing",
8c3bc594
RL
1927 cppflags => combine("-D_REENTRANT -DPPC32 -DCPU=PPC32",
1928 "-DTOOL_FAMILY=gnu -DTOOL=gnu",
1929 "-I\$(WIND_BASE)/target/usr/h",
1930 "-I\$(WIND_BASE)/target/usr/h/wrn/coreip"),
5e1b2353 1931 sys_id => "VXWORKS",
47eeaf45
RL
1932 lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/sfcommon"),
1933 ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
5e1b2353
RL
1934 },
1935 "vxworks-ppc405" => {
d2b2221a 1936 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1937 CC => "ccppc",
1938 CFLAGS => "-g",
1939 cflags => "-msoft-float -mlongcall",
8c3bc594
RL
1940 cppflags => combine("-D_REENTRANT -DPPC32 -DCPU=PPC405",
1941 "-DTOOL_FAMILY=gnu -DTOOL=gnu",
1942 "-I\$(WIND_BASE)/target/h"),
5e1b2353 1943 sys_id => "VXWORKS",
47eeaf45 1944 lflags => add("-r"),
5e1b2353
RL
1945 },
1946 "vxworks-ppc750" => {
d2b2221a 1947 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1948 CC => "ccppc",
1949 CFLAGS => "-ansi -fvolatile -Wall \$(DEBUG_FLAG)",
1950 cflags => "-nostdinc -fno-builtin -fno-for-scope -fsigned-char -msoft-float -mlongcall",
8c3bc594
RL
1951 cppflags => combine("-DPPC750 -D_REENTRANT -DCPU=PPC604",
1952 "-I\$(WIND_BASE)/target/h"),
5e1b2353 1953 sys_id => "VXWORKS",
47eeaf45 1954 lflags => add("-r"),
5e1b2353
RL
1955 },
1956 "vxworks-ppc750-debug" => {
d2b2221a 1957 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1958 CC => "ccppc",
1959 CFLAGS => "-ansi -fvolatile -Wall -g",
1960 cflags => "-nostdinc -fno-builtin -fno-for-scope -fsigned-char -msoft-float -mlongcall",
8c3bc594
RL
1961 cppflags => combine("-DPPC750 -D_REENTRANT -DCPU=PPC604",
1962 "-DPEDANTIC -DDEBUG",
1963 "-I\$(WIND_BASE)/target/h"),
5e1b2353 1964 sys_id => "VXWORKS",
47eeaf45 1965 lflags => add("-r"),
5e1b2353
RL
1966 },
1967 "vxworks-ppc860" => {
d2b2221a 1968 inherit_from => [ "BASE_unix" ],
abe256e7 1969 CC => "ccppc",
8c3bc594
RL
1970 cflags => "-nostdinc -msoft-float",
1971 cppflags => combine("-DCPU=PPC860 -DNO_STRINGS_H",
1972 "-I\$(WIND_BASE)/target/h"),
5e1b2353 1973 sys_id => "VXWORKS",
47eeaf45 1974 lflags => add("-r"),
5e1b2353
RL
1975 },
1976 "vxworks-simlinux" => {
d2b2221a 1977 inherit_from => [ "BASE_unix" ],
abe256e7 1978 CC => "ccpentium",
8c3bc594
RL
1979 cflags => "-B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -fno-builtin -fno-defer-pop",
1980 cppflags => combine("-D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\"",
1981 "-DL_ENDIAN -DCPU=SIMLINUX -DNO_STRINGS_H",
1982 "-DTOOL_FAMILY=gnu -DTOOL=gnu",
1983 "-DOPENSSL_NO_HW_PADLOCK",
1984 "-I\$(WIND_BASE)/target/h",
1985 "-I\$(WIND_BASE)/target/h/wrn/coreip"),
5e1b2353 1986 sys_id => "VXWORKS",
47eeaf45 1987 lflags => add("-r"),
5e1b2353
RL
1988 ranlib => "ranlibpentium",
1989 },
1990 "vxworks-mips" => {
30478c97 1991 inherit_from => [ "BASE_unix" ],
abe256e7
RL
1992 CC => "ccmips",
1993 CFLAGS => "-O -G 0",
1994 cflags => "-mrtp -mips2 -B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -msoft-float -mno-branch-likely -fno-builtin -fno-defer-pop",
8c3bc594
RL
1995 cppflags => combine("-D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\"",
1996 "-DCPU=MIPS32 -DNO_STRINGS_H",
1997 "-DTOOL_FAMILY=gnu -DTOOL=gnu",
1998 "-DOPENSSL_NO_HW_PADLOCK",
1999 threads("-D_REENTRANT"),
2000 "-I\$(WIND_BASE)/target/h",
2001 "-I\$(WIND_BASE)/target/h/wrn/coreip"),
5e1b2353 2002 sys_id => "VXWORKS",
47eeaf45
RL
2003 lflags => add("-L \$(WIND_BASE)/target/usr/lib/mips/MIPSI32/sfcommon"),
2004 ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
9c62a279 2005 thread_scheme => "pthreads",
e6f98ae4 2006 asm_arch => 'mips32',
5e1b2353
RL
2007 perlasm_scheme => "o32",
2008 ranlib => "ranlibmips",
2009 },
f09e7ca9 2010
7ead0c89 2011#### uClinux
5e1b2353 2012 "uClinux-dist" => {
d2b2221a 2013 inherit_from => [ "BASE_unix" ],
abe256e7 2014 CC => sub { env('CC') },
8c3bc594 2015 cppflags => threads("-D_REENTRANT"),
98fdbce0 2016 ex_libs => add("\$(LDLIBS)"),
5e1b2353 2017 bn_ops => "BN_LLONG",
9c62a279 2018 thread_scheme => "pthreads",
17f16617 2019 dso_scheme => sub { env('LIBSSL_dlfcn') },
5e1b2353
RL
2020 shared_target => "linux-shared",
2021 shared_cflag => "-fPIC",
17f16617 2022 ranlib => sub { env('RANLIB') },
5e1b2353
RL
2023 },
2024 "uClinux-dist64" => {
d2b2221a 2025 inherit_from => [ "BASE_unix" ],
abe256e7 2026 CC => sub { env('CC') },
8c3bc594 2027 cppflags => threads("-D_REENTRANT"),
98fdbce0 2028 ex_libs => add("\$(LDLIBS)"),
5e1b2353 2029 bn_ops => "SIXTY_FOUR_BIT_LONG",
9c62a279 2030 thread_scheme => "pthreads",
17f16617 2031 dso_scheme => sub { env('LIBSSL_dlfcn') },
5e1b2353
RL
2032 shared_target => "linux-shared",
2033 shared_cflag => "-fPIC",
17f16617 2034 ranlib => sub { env('RANLIB') },
5e1b2353 2035 },
f09e7ca9 2036
e84193e4 2037 ##### VMS
ab907189
RL
2038 # Most things happen in vms-generic.
2039 # Note that vms_info extracts the pointer size from the end of
2040 # the target name, and will assume that anything matching /-p\d+$/
2041 # indicates the pointer size setting for the desired target.
e84193e4 2042 "vms-generic" => {
d2b2221a 2043 inherit_from => [ "BASE_VMS" ],
e84193e4 2044 template => 1,
abe256e7
RL
2045 CC => "CC/DECC",
2046 CPP => '$(CC)/PREPROCESS_ONLY=SYS$OUTPUT:',
2047 CFLAGS =>
ab907189
RL
2048 combine(picker(default => "/STANDARD=(ISOC94,RELAXED)/NOLIST/PREFIX=ALL",
2049 debug => "/NOOPTIMIZE/DEBUG",
2050 release => "/OPTIMIZE/NODEBUG"),
2051 sub { my @warnings =
2052 @{vms_info()->{disable_warns}};
2053 @warnings
2054 ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : (); }),
0cbb6f6a 2055 cflag_incfirst => '/FIRST_INCLUDE=',
68b8bcf4 2056 lib_defines =>
ab907189
RL
2057 add("OPENSSL_USE_NODELETE",
2058 sub {
2059 return vms_info()->{def_zlib}
2060 ? "LIBZ=\"\"\"".vms_info()->{def_zlib}."\"\"\"" : ();
2061 }),
2de2df7f 2062 lflags => picker(default => "/MAP='F\$PARSE(\".MAP\",\"\$\@\")'",
1ae4c07e 2063 debug => "/DEBUG/TRACEBACK",
8864f0de 2064 release => "/NODEBUG/NOTRACEBACK"),
2935f624 2065 # Because of dso_cflags below, we can't set the generic |cflags| here,
79c44b4e 2066 # as it can't be overridden, so we set separate C flags for libraries
2935f624
RL
2067 # and binaries instead.
2068 bin_cflags => add("/NAMES=(AS_IS,SHORTENED)/EXTERN_MODEL=STRICT_REFDEF"),
68a39960 2069 lib_cflags => add("/NAMES=(AS_IS,SHORTENED)/EXTERN_MODEL=STRICT_REFDEF"),
31be74d3
RL
2070 # Strictly speaking, DSOs should not need to have name shortening,
2071 # as all their exported symbols should be short enough to fit the
2072 # linker's 31 character per symbol name limit. However, providers
2073 # may be composed of more than one object file, and internal symbols
2074 # may and do surpass the 31 character limit.
2075 dso_cflags => add("/NAMES=(SHORTENED)"),
ab907189 2076 ex_libs => add(sub { return vms_info()->{zlib} || (); }),
e84193e4 2077 shared_target => "vms-shared",
ef2dfc99
RL
2078 # def_flag made to empty string so a .opt file gets generated
2079 shared_defflag => '',
ac722c9a 2080 dso_scheme => "vms",
9c62a279 2081 thread_scheme => "pthreads",
e84193e4 2082
2e535eb5 2083 makedep_scheme => 'VMS C',
abe256e7
RL
2084 AS => sub { vms_info()->{AS} },
2085 ASFLAGS => sub { vms_info()->{ASFLAGS} },
ab7134ef 2086 asoutflag => sub { vms_info()->{asoutflag} },
abe256e7 2087 asflags => sub { vms_info()->{asflags} },
ab7134ef
RL
2088 perlasm_scheme => sub { vms_info()->{perlasm_scheme} },
2089
d0ccefdb 2090 disable => add('pinshared', 'loadereng'),
d1dd5d6f 2091
e84193e4
RL
2092 },
2093
ab907189
RL
2094 # From HELP CC/POINTER_SIZE:
2095 #
2096 # ----------
2097 # LONG[=ARGV] The compiler assumes 64-bit pointers. If the ARGV option to
2098 # LONG or 64 is present, the main argument argv will be an
2099 # array of long pointers instead of an array of short pointers.
2100 #
2101 # 64[=ARGV] Same as LONG.
2102 # ----------
2103 #
2104 # We don't want the hassle of dealing with 32-bit pointers with argv, so
2105 # we force it to have 64-bit pointers, see the added cflags in the -p64
2106 # config targets below.
2107
e84193e4
RL
2108 "vms-alpha" => {
2109 inherit_from => [ "vms-generic" ],
ab907189
RL
2110 bn_ops => "SIXTY_FOUR_BIT RC4_INT",
2111 pointer_size => "",
e84193e4 2112 },
52d86d9b 2113 "vms-alpha-p32" => {
ab907189
RL
2114 inherit_from => [ "vms-alpha" ],
2115 cflags => add("/POINTER_SIZE=32"),
2116 pointer_size => "32",
e84193e4 2117 },
52d86d9b 2118 "vms-alpha-p64" => {
ab907189
RL
2119 inherit_from => [ "vms-alpha" ],
2120 cflags => add("/POINTER_SIZE=64=ARGV"),
2121 pointer_size => "64",
e84193e4
RL
2122 },
2123 "vms-ia64" => {
30478c97 2124 inherit_from => [ "vms-generic" ],
ab907189 2125 bn_ops => "SIXTY_FOUR_BIT RC4_INT",
e6f98ae4
RL
2126 asm_arch => sub { vms_info()->{AS} ? 'ia64' : undef },
2127 perlasm_scheme => 'ias',
ab907189 2128 pointer_size => "",
0f4844a9 2129
e84193e4 2130 },
52d86d9b 2131 "vms-ia64-p32" => {
ab907189
RL
2132 inherit_from => [ "vms-ia64" ],
2133 cflags => add("/POINTER_SIZE=32"),
2134 pointer_size => "32",
e84193e4 2135 },
52d86d9b 2136 "vms-ia64-p64" => {
ab907189
RL
2137 inherit_from => [ "vms-ia64" ],
2138 cflags => add("/POINTER_SIZE=64=ARGV"),
2139 pointer_size => "64",
e84193e4 2140 },
d6175dcc
RL
2141 "vms-x86_64" => {
2142 inherit_from => [ "vms-generic" ],
2143 bn_ops => "SIXTY_FOUR_BIT",
2144 pointer_size => "",
8d8c1600
RL
2145 },
2146 "vms-x86_64-p32" => {
2147 inherit_from => [ "vms-x86_64" ],
2148 cflags => add("/POINTER_SIZE=32"),
2149 pointer_size => "32",
2150 },
2151 "vms-x86_64-p64" => {
2152 inherit_from => [ "vms-x86_64" ],
2153 cflags => add("/POINTER_SIZE=64=ARGV"),
2154 pointer_size => "64",
d6175dcc 2155 }
f09e7ca9 2156);