951aeaa599cc358cd88efb851984d952c0039aa1
[openssl.git] / Configurations / 00-base-templates.conf
1 # -*- Mode: perl -*-
2 my %targets=(
3     DEFAULTS => {
4         template        => 1,
5
6         cflags          => "",
7         cppflags        => "",
8         lflags          => "",
9         defines         => [],
10         includes        => [],
11         thread_scheme   => "(unknown)", # Assume we don't know
12         thread_defines  => [],
13
14         apps_aux_src    => "",
15         apps_init_src   => "",
16         cpuid_asm_src   => "mem_clr.c",
17         uplink_aux_src  => "",
18         bn_asm_src      => "bn_asm.c",
19         ec_asm_src      => "",
20         des_asm_src     => "des_enc.c fcrypt_b.c",
21         aes_asm_src     => "aes_core.c aes_cbc.c",
22         bf_asm_src      => "bf_enc.c",
23         md5_asm_src     => "",
24         cast_asm_src    => "c_enc.c",
25         rc4_asm_src     => "rc4_enc.c rc4_skey.c",
26         rmd160_asm_src  => "",
27         rc5_asm_src     => "rc5_enc.c",
28         wp_asm_src      => "wp_block.c",
29         cmll_asm_src    => "camellia.c cmll_misc.c cmll_cbc.c",
30         modes_asm_src   => "",
31         padlock_asm_src => "",
32         chacha_asm_src  => "chacha_enc.c",
33         poly1305_asm_src        => "",
34
35         unistd          => "<unistd.h>",
36         shared_target   => "",
37         shared_cflag    => "",
38         shared_defines  => [],
39         shared_ldflag   => "",
40         shared_rcflag   => "",
41         shared_extension        => "",
42
43         #### Defaults for the benefit of the config targets who don't inherit
44         #### a BASE and assume Unixly defaults
45         #### THESE WILL DISAPPEAR IN OpenSSL 1.2
46         build_scheme    => [ "unified", "unix" ],
47         build_file      => "Makefile",
48
49         ar              => "ar",
50         arflags         => "r",
51         cc              => "cc",
52         hashbangperl    => "/usr/bin/env perl",
53         ranlib          => sub { which("$config{cross_compile_prefix}ranlib") ?
54                                      "\$(CROSS_COMPILE)ranlib" : "true"; },
55         rc              => "windres",
56
57         #### THESE WILL BE ENABLED IN OpenSSL 1.2
58         #hashbangperl   => "PERL", # Only Unix actually cares
59     },
60
61     BASE_common => {
62         template        => 1,
63
64         enable          => [],
65         disable         => [],
66
67         defines         =>
68             sub {
69                 my @defs = ();
70                 push @defs, "ZLIB" unless $disabled{zlib};
71                 push @defs, "ZLIB_SHARED" unless $disabled{"zlib-dynamic"};
72                 return [ @defs ];
73             },
74         includes        =>
75             sub {
76                 my @incs = ();
77                 push @incs, $withargs{zlib_include}
78                     if !$disabled{zlib} && $withargs{zlib_include};
79                 return [ @incs ];
80             },
81     },
82
83     BASE_unix => {
84         inherit_from    => [ "BASE_common" ],
85         template        => 1,
86
87         ar              => "ar",
88         arflags         => "r",
89         cc              => "cc",
90         lflags          =>
91             sub { $withargs{zlib_lib} ? "-L".$withargs{zlib_lib} : () },
92         ex_libs         =>
93             sub { !defined($disabled{zlib})
94                   && defined($disabled{"zlib-dynamic"})
95                   ? "-lz" : () },
96         hashbangperl    => "/usr/bin/env perl", # Only Unix actually cares
97         ranlib          => sub { which("$config{cross_compile_prefix}ranlib") ?
98                                      "\$(CROSS_COMPILE)ranlib" : "true"; },
99         rc              => "windres",
100
101         build_scheme    => [ "unified", "unix" ],
102         build_file      => "Makefile",
103     },
104
105     BASE_Windows => {
106         inherit_from    => [ "BASE_common" ],
107         template        => 1,
108
109         ex_libs         =>
110             sub {
111                 unless ($disabled{zlib}) {
112                     if (defined($disabled{"zlib-dynamic"})) {
113                         return $withargs{zlib_lib} // "ZLIB1";
114                     }
115                 }
116                 return ();
117             },
118
119         ld              => "link",
120         lflags          => "/nologo",
121         loutflag        => "/out:",
122         ar              => "lib",
123         arflags         => "/nologo",
124         aroutflag       => "/out:",
125         rc               => "rc",
126         rcoutflag        => "/fo",
127         mt              => "mt",
128         mtflags         => "-nologo",
129         mtinflag        => "-manifest ",
130         mtoutflag       => "-outputresource:",
131
132         build_file      => "makefile",
133         build_scheme    => [ "unified", "windows" ],
134     },
135
136     BASE_VMS => {
137         inherit_from    => [ "BASE_common" ],
138         template        => 1,
139
140         includes        =>
141             add(sub {
142                     my @incs = ();
143                     # GNV$ZLIB_INCLUDE is the standard logical name for later
144                     # zlib incarnations.
145                     push @incs, 'GNV$ZLIB_INCLUDE:'
146                         if !$disabled{zlib} && !$withargs{zlib_include};
147                     return [ @incs ];
148                 }),
149
150         build_file       => "descrip.mms",
151         build_scheme     => [ "unified", "VMS" ],
152     },
153
154     uplink_common => {
155         template        => 1,
156         apps_init_src   => add("../ms/applink.c"),
157         uplink_aux_src  => add("../ms/uplink.c"),
158         defines         => add("OPENSSL_USE_APPLINK"),
159     },
160     x86_uplink => {
161         inherit_from    => [ "uplink_common" ],
162         template        => 1,
163         uplink_aux_src  => add("uplink-x86.s"),
164     },
165     x86_64_uplink => {
166         inherit_from    => [ "uplink_common" ],
167         template        => 1,
168         uplink_aux_src  => add("uplink-x86_64.s"),
169     },
170     ia64_uplink => {
171         inherit_from    => [ "uplink_common" ],
172         template        => 1,
173         uplink_aux_src  => add("uplink-ia64.s"),
174     },
175
176     x86_asm => {
177         template        => 1,
178         cpuid_asm_src   => "x86cpuid.s",
179         bn_asm_src      => "bn-586.s co-586.s x86-mont.s x86-gf2m.s",
180         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-x86.s",
181         des_asm_src     => "des-586.s crypt586.s",
182         aes_asm_src     => "aes-586.s vpaes-x86.s aesni-x86.s",
183         bf_asm_src      => "bf-586.s",
184         md5_asm_src     => "md5-586.s",
185         cast_asm_src    => "cast-586.s",
186         sha1_asm_src    => "sha1-586.s sha256-586.s sha512-586.s",
187         rc4_asm_src     => "rc4-586.s",
188         rmd160_asm_src  => "rmd-586.s",
189         rc5_asm_src     => "rc5-586.s",
190         wp_asm_src      => "wp_block.c wp-mmx.s",
191         cmll_asm_src    => "cmll-x86.s",
192         modes_asm_src   => "ghash-x86.s",
193         padlock_asm_src => "e_padlock-x86.s",
194         chacha_asm_src  => "chacha-x86.s",
195         poly1305_asm_src=> "poly1305-x86.s",
196     },
197     x86_elf_asm => {
198         template        => 1,
199         inherit_from    => [ "x86_asm" ],
200         perlasm_scheme  => "elf"
201     },
202     x86_64_asm => {
203         template        => 1,
204         cpuid_asm_src   => "x86_64cpuid.s",
205         bn_asm_src      => "asm/x86_64-gcc.c x86_64-mont.s x86_64-mont5.s x86_64-gf2m.s rsaz_exp.c rsaz-x86_64.s rsaz-avx2.s",
206         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-x86_64.s",
207         aes_asm_src     => "aes-x86_64.s vpaes-x86_64.s bsaes-x86_64.s aesni-x86_64.s aesni-sha1-x86_64.s aesni-sha256-x86_64.s aesni-mb-x86_64.s",
208         md5_asm_src     => "md5-x86_64.s",
209         sha1_asm_src    => "sha1-x86_64.s sha256-x86_64.s sha512-x86_64.s sha1-mb-x86_64.s sha256-mb-x86_64.s",
210         rc4_asm_src     => "rc4-x86_64.s rc4-md5-x86_64.s",
211         wp_asm_src      => "wp-x86_64.s",
212         cmll_asm_src    => "cmll-x86_64.s cmll_misc.c",
213         modes_asm_src   => "ghash-x86_64.s aesni-gcm-x86_64.s",
214         padlock_asm_src => "e_padlock-x86_64.s",
215         chacha_asm_src  => "chacha-x86_64.s",
216         poly1305_asm_src=> "poly1305-x86_64.s",
217     },
218     ia64_asm => {
219         template        => 1,
220         cpuid_asm_src   => "ia64cpuid.s",
221         bn_asm_src      => "bn-ia64.s ia64-mont.s",
222         aes_asm_src     => "aes_core.c aes_cbc.c aes-ia64.s",
223         sha1_asm_src    => "sha1-ia64.s sha256-ia64.s sha512-ia64.s",
224         modes_asm_src   => "ghash-ia64.s",
225         perlasm_scheme  => "void"
226     },
227     sparcv9_asm => {
228         template        => 1,
229         cpuid_asm_src   => "sparcv9cap.c sparccpuid.S",
230         bn_asm_src      => "asm/sparcv8plus.S sparcv9-mont.S sparcv9a-mont.S vis3-mont.S sparct4-mont.S sparcv9-gf2m.S",
231         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-sparcv9.S",
232         des_asm_src     => "des_enc-sparc.S fcrypt_b.c dest4-sparcv9.S",
233         aes_asm_src     => "aes_core.c aes_cbc.c aes-sparcv9.S aest4-sparcv9.S aesfx-sparcv9.S",
234         md5_asm_src     => "md5-sparcv9.S",
235         sha1_asm_src    => "sha1-sparcv9.S sha256-sparcv9.S sha512-sparcv9.S",
236         cmll_asm_src    => "camellia.c cmll_misc.c cmll_cbc.c cmllt4-sparcv9.S",
237         modes_asm_src   => "ghash-sparcv9.S",
238         poly1305_asm_src=> "poly1305-sparcv9.S",
239         perlasm_scheme  => "void"
240     },
241     sparcv8_asm => {
242         template        => 1,
243         cpuid_asm_src   => "",
244         bn_asm_src      => "asm/sparcv8.S",
245         des_asm_src     => "des_enc-sparc.S fcrypt_b.c",
246         perlasm_scheme  => "void"
247     },
248     alpha_asm => {
249         template        => 1,
250         cpuid_asm_src   => "alphacpuid.s",
251         bn_asm_src      => "bn_asm.c alpha-mont.S",
252         sha1_asm_src    => "sha1-alpha.S",
253         modes_asm_src   => "ghash-alpha.S",
254         perlasm_scheme  => "void"
255     },
256     mips32_asm => {
257         template        => 1,
258         bn_asm_src      => "bn-mips.S mips-mont.S",
259         aes_asm_src     => "aes_cbc.c aes-mips.S",
260         sha1_asm_src    => "sha1-mips.S sha256-mips.S",
261     },
262     mips64_asm => {
263         inherit_from    => [ "mips32_asm" ],
264         template        => 1,
265         sha1_asm_src    => add("sha512-mips.S"),
266         poly1305_asm_src=> "poly1305-mips.S",
267     },
268     s390x_asm => {
269         template        => 1,
270         cpuid_asm_src   => "s390xcap.c s390xcpuid.S",
271         bn_asm_src      => "asm/s390x.S s390x-mont.S s390x-gf2m.s",
272         aes_asm_src     => "aes-s390x.S aes-ctr.fake aes-xts.fake",
273         sha1_asm_src    => "sha1-s390x.S sha256-s390x.S sha512-s390x.S",
274         rc4_asm_src     => "rc4-s390x.s",
275         modes_asm_src   => "ghash-s390x.S",
276         chacha_asm_src  => "chacha-s390x.S",
277         poly1305_asm_src=> "poly1305-s390x.S",
278     },
279     armv4_asm => {
280         template        => 1,
281         cpuid_asm_src   => "armcap.c armv4cpuid.S",
282         bn_asm_src      => "bn_asm.c armv4-mont.S armv4-gf2m.S",
283         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-armv4.S",
284         aes_asm_src     => "aes_cbc.c aes-armv4.S bsaes-armv7.S aesv8-armx.S",
285         sha1_asm_src    => "sha1-armv4-large.S sha256-armv4.S sha512-armv4.S",
286         modes_asm_src   => "ghash-armv4.S ghashv8-armx.S",
287         chacha_asm_src  => "chacha-armv4.S",
288         poly1305_asm_src=> "poly1305-armv4.S", 
289         perlasm_scheme  => "void"
290     },
291     aarch64_asm => {
292         template        => 1,
293         cpuid_asm_src   => "armcap.c arm64cpuid.S",
294         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-armv8.S",
295         bn_asm_src      => "bn_asm.c armv8-mont.S",
296         aes_asm_src     => "aes_core.c aes_cbc.c aesv8-armx.S vpaes-armv8.S",
297         sha1_asm_src    => "sha1-armv8.S sha256-armv8.S sha512-armv8.S",
298         modes_asm_src   => "ghashv8-armx.S",
299         chacha_asm_src  => "chacha-armv8.S",
300         poly1305_asm_src=> "poly1305-armv8.S",
301     },
302     parisc11_asm => {
303         template        => 1,
304         cpuid_asm_src   => "pariscid.s",
305         bn_asm_src      => "bn_asm.c parisc-mont.s",
306         aes_asm_src     => "aes_core.c aes_cbc.c aes-parisc.s",
307         sha1_asm_src    => "sha1-parisc.s sha256-parisc.s sha512-parisc.s",
308         rc4_asm_src     => "rc4-parisc.s",
309         modes_asm_src   => "ghash-parisc.s",
310         perlasm_scheme  => "32"
311     },
312     parisc20_64_asm => {
313         template        => 1,
314         inherit_from    => [ "parisc11_asm" ],
315         perlasm_scheme  => "64",
316     },
317     ppc32_asm => {
318         template        => 1,
319         cpuid_asm_src   => "ppccpuid.s ppccap.c",
320         bn_asm_src      => "bn-ppc.s ppc-mont.s",
321         aes_asm_src     => "aes_core.c aes_cbc.c aes-ppc.s vpaes-ppc.s aesp8-ppc.s",
322         sha1_asm_src    => "sha1-ppc.s sha256-ppc.s sha512-ppc.s sha256p8-ppc.s sha512p8-ppc.s",
323         modes_asm_src   => "ghashp8-ppc.s",
324         chacha_asm_src  => "chacha-ppc.s",
325         poly1305_asm_src=> "poly1305-ppc.s poly1305-ppcfp.s",
326     },
327     ppc64_asm => {
328         inherit_from    => [ "ppc32_asm" ],
329         template        => 1,
330         ec_asm_src      => "ecp_nistz256.c ecp_nistz256-ppc64.s",
331
332     },
333 );