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