]> git.ipfire.org Git - thirdparty/openssl.git/blob - Configurations/00-base-templates.conf
Configure et al: Move the definition of library only flags
[thirdparty/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 ex_libs =>
113 sub {
114 unless ($disabled{zlib}) {
115 if (defined($disabled{"zlib-dynamic"})) {
116 return $withargs{zlib_lib} // "ZLIB1";
117 }
118 }
119 return ();
120 },
121
122 LD => "link",
123 LDFLAGS => "/nologo",
124 ldoutflag => "/out:",
125 AR => "lib",
126 ARFLAGS => "/nologo",
127 aroutflag => "/out:",
128 RC => "rc",
129 rcoutflag => "/fo",
130 MT => "mt",
131 MTFLAGS => "-nologo",
132 mtinflag => "-manifest ",
133 mtoutflag => "-outputresource:",
134
135 build_file => "makefile",
136 build_scheme => [ "unified", "windows" ],
137 },
138
139 BASE_VMS => {
140 inherit_from => [ "BASE_common" ],
141 template => 1,
142
143 includes =>
144 add(sub {
145 my @incs = ();
146 # GNV$ZLIB_INCLUDE is the standard logical name for later
147 # zlib incarnations.
148 push @incs, 'GNV$ZLIB_INCLUDE:'
149 if !$disabled{zlib} && !$withargs{zlib_include};
150 return [ @incs ];
151 }),
152
153 build_file => "descrip.mms",
154 build_scheme => [ "unified", "VMS" ],
155 },
156
157 uplink_common => {
158 template => 1,
159 apps_init_src => add("../ms/applink.c"),
160 uplink_aux_src => add("../ms/uplink.c"),
161 defines => add("OPENSSL_USE_APPLINK"),
162 },
163 x86_uplink => {
164 inherit_from => [ "uplink_common" ],
165 template => 1,
166 uplink_aux_src => add("uplink-x86.s"),
167 },
168 x86_64_uplink => {
169 inherit_from => [ "uplink_common" ],
170 template => 1,
171 uplink_aux_src => add("uplink-x86_64.s"),
172 },
173 ia64_uplink => {
174 inherit_from => [ "uplink_common" ],
175 template => 1,
176 uplink_aux_src => add("uplink-ia64.s"),
177 },
178
179 x86_asm => {
180 template => 1,
181 cpuid_asm_src => "x86cpuid.s",
182 bn_asm_src => "bn-586.s co-586.s x86-mont.s x86-gf2m.s",
183 ec_asm_src => "ecp_nistz256.c ecp_nistz256-x86.s",
184 des_asm_src => "des-586.s crypt586.s",
185 aes_asm_src => "aes-586.s vpaes-x86.s aesni-x86.s",
186 bf_asm_src => "bf-586.s",
187 md5_asm_src => "md5-586.s",
188 cast_asm_src => "cast-586.s",
189 sha1_asm_src => "sha1-586.s sha256-586.s sha512-586.s",
190 rc4_asm_src => "rc4-586.s",
191 rmd160_asm_src => "rmd-586.s",
192 rc5_asm_src => "rc5-586.s",
193 wp_asm_src => "wp_block.c wp-mmx.s",
194 cmll_asm_src => "cmll-x86.s",
195 modes_asm_src => "ghash-x86.s",
196 padlock_asm_src => "e_padlock-x86.s",
197 chacha_asm_src => "chacha-x86.s",
198 poly1305_asm_src=> "poly1305-x86.s",
199 },
200 x86_elf_asm => {
201 template => 1,
202 inherit_from => [ "x86_asm" ],
203 perlasm_scheme => "elf"
204 },
205 x86_64_asm => {
206 template => 1,
207 cpuid_asm_src => "x86_64cpuid.s",
208 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",
209 ec_asm_src => "ecp_nistz256.c ecp_nistz256-x86_64.s x25519-x86_64.s",
210 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",
211 md5_asm_src => "md5-x86_64.s",
212 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",
213 rc4_asm_src => "rc4-x86_64.s rc4-md5-x86_64.s",
214 wp_asm_src => "wp-x86_64.s",
215 cmll_asm_src => "cmll-x86_64.s cmll_misc.c",
216 modes_asm_src => "ghash-x86_64.s aesni-gcm-x86_64.s",
217 padlock_asm_src => "e_padlock-x86_64.s",
218 chacha_asm_src => "chacha-x86_64.s",
219 poly1305_asm_src=> "poly1305-x86_64.s",
220 },
221 ia64_asm => {
222 template => 1,
223 cpuid_asm_src => "ia64cpuid.s",
224 bn_asm_src => "bn-ia64.s ia64-mont.s",
225 aes_asm_src => "aes_core.c aes_cbc.c aes-ia64.s",
226 sha1_asm_src => "sha1-ia64.s sha256-ia64.s sha512-ia64.s",
227 modes_asm_src => "ghash-ia64.s",
228 perlasm_scheme => "void"
229 },
230 sparcv9_asm => {
231 template => 1,
232 cpuid_asm_src => "sparcv9cap.c sparccpuid.S",
233 bn_asm_src => "asm/sparcv8plus.S sparcv9-mont.S sparcv9a-mont.S vis3-mont.S sparct4-mont.S sparcv9-gf2m.S",
234 ec_asm_src => "ecp_nistz256.c ecp_nistz256-sparcv9.S",
235 des_asm_src => "des_enc-sparc.S fcrypt_b.c dest4-sparcv9.S",
236 aes_asm_src => "aes_core.c aes_cbc.c aes-sparcv9.S aest4-sparcv9.S aesfx-sparcv9.S",
237 md5_asm_src => "md5-sparcv9.S",
238 sha1_asm_src => "sha1-sparcv9.S sha256-sparcv9.S sha512-sparcv9.S",
239 cmll_asm_src => "camellia.c cmll_misc.c cmll_cbc.c cmllt4-sparcv9.S",
240 modes_asm_src => "ghash-sparcv9.S",
241 poly1305_asm_src=> "poly1305-sparcv9.S",
242 perlasm_scheme => "void"
243 },
244 sparcv8_asm => {
245 template => 1,
246 cpuid_asm_src => "",
247 bn_asm_src => "asm/sparcv8.S",
248 des_asm_src => "des_enc-sparc.S fcrypt_b.c",
249 perlasm_scheme => "void"
250 },
251 alpha_asm => {
252 template => 1,
253 cpuid_asm_src => "alphacpuid.s",
254 bn_asm_src => "bn_asm.c alpha-mont.S",
255 sha1_asm_src => "sha1-alpha.S",
256 modes_asm_src => "ghash-alpha.S",
257 perlasm_scheme => "void"
258 },
259 mips32_asm => {
260 template => 1,
261 bn_asm_src => "bn-mips.S mips-mont.S",
262 aes_asm_src => "aes_cbc.c aes-mips.S",
263 sha1_asm_src => "sha1-mips.S sha256-mips.S",
264 },
265 mips64_asm => {
266 inherit_from => [ "mips32_asm" ],
267 template => 1,
268 sha1_asm_src => add("sha512-mips.S"),
269 poly1305_asm_src=> "poly1305-mips.S",
270 },
271 s390x_asm => {
272 template => 1,
273 cpuid_asm_src => "s390xcap.c s390xcpuid.S",
274 bn_asm_src => "asm/s390x.S s390x-mont.S s390x-gf2m.s",
275 aes_asm_src => "aes-s390x.S aes-ctr.fake aes-xts.fake",
276 sha1_asm_src => "sha1-s390x.S sha256-s390x.S sha512-s390x.S",
277 rc4_asm_src => "rc4-s390x.s",
278 modes_asm_src => "ghash-s390x.S",
279 chacha_asm_src => "chacha-s390x.S",
280 poly1305_asm_src=> "poly1305-s390x.S",
281 },
282 armv4_asm => {
283 template => 1,
284 cpuid_asm_src => "armcap.c armv4cpuid.S",
285 bn_asm_src => "bn_asm.c armv4-mont.S armv4-gf2m.S",
286 ec_asm_src => "ecp_nistz256.c ecp_nistz256-armv4.S",
287 aes_asm_src => "aes_cbc.c aes-armv4.S bsaes-armv7.S aesv8-armx.S",
288 sha1_asm_src => "sha1-armv4-large.S sha256-armv4.S sha512-armv4.S",
289 modes_asm_src => "ghash-armv4.S ghashv8-armx.S",
290 chacha_asm_src => "chacha-armv4.S",
291 poly1305_asm_src=> "poly1305-armv4.S",
292 perlasm_scheme => "void"
293 },
294 aarch64_asm => {
295 template => 1,
296 cpuid_asm_src => "armcap.c arm64cpuid.S",
297 ec_asm_src => "ecp_nistz256.c ecp_nistz256-armv8.S",
298 bn_asm_src => "bn_asm.c armv8-mont.S",
299 aes_asm_src => "aes_core.c aes_cbc.c aesv8-armx.S vpaes-armv8.S",
300 sha1_asm_src => "sha1-armv8.S sha256-armv8.S sha512-armv8.S",
301 modes_asm_src => "ghashv8-armx.S",
302 chacha_asm_src => "chacha-armv8.S",
303 poly1305_asm_src=> "poly1305-armv8.S",
304 },
305 parisc11_asm => {
306 template => 1,
307 cpuid_asm_src => "pariscid.s",
308 bn_asm_src => "bn_asm.c parisc-mont.s",
309 aes_asm_src => "aes_core.c aes_cbc.c aes-parisc.s",
310 sha1_asm_src => "sha1-parisc.s sha256-parisc.s sha512-parisc.s",
311 rc4_asm_src => "rc4-parisc.s",
312 modes_asm_src => "ghash-parisc.s",
313 perlasm_scheme => "32"
314 },
315 parisc20_64_asm => {
316 template => 1,
317 inherit_from => [ "parisc11_asm" ],
318 perlasm_scheme => "64",
319 },
320 ppc32_asm => {
321 template => 1,
322 cpuid_asm_src => "ppccpuid.s ppccap.c",
323 bn_asm_src => "bn-ppc.s ppc-mont.s",
324 aes_asm_src => "aes_core.c aes_cbc.c aes-ppc.s vpaes-ppc.s aesp8-ppc.s",
325 sha1_asm_src => "sha1-ppc.s sha256-ppc.s sha512-ppc.s sha256p8-ppc.s sha512p8-ppc.s",
326 modes_asm_src => "ghashp8-ppc.s",
327 chacha_asm_src => "chacha-ppc.s",
328 poly1305_asm_src=> "poly1305-ppc.s poly1305-ppcfp.s",
329 },
330 ppc64_asm => {
331 inherit_from => [ "ppc32_asm" ],
332 template => 1,
333 ec_asm_src => "ecp_nistz256.c ecp_nistz256-ppc64.s",
334
335 },
336 );