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