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