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