]> git.ipfire.org Git - thirdparty/openssl.git/blob - Configurations/99-personal-steve.conf
Configure - Rename BASE to DEFAULTS and add a few inheritable BASEs
[thirdparty/openssl.git] / Configurations / 99-personal-steve.conf
1 ## -*- mode: perl; -*-
2 ## Personal configuration targets
3
4 %targets = (
5 "debug-steve64" => {
6 inherit_from => [ "x86_64_asm" ],
7 cc => "gcc",
8 cflags => "$gcc_devteam_warn -pthread -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
9 thread_cflag => "-D_REENTRANT",
10 ex_libs => "-ldl",
11 bn_ops => "SIXTY_FOUR_BIT_LONG",
12 perlasm_scheme => "elf",
13 dso_scheme => "dlfcn",
14 shared_target => "linux-shared",
15 shared_cflag => "-fPIC",
16 shared_ldflag => "-m64",
17 shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
18 },
19 "debug-steve32" => {
20 inherit_from => [ "x86_elf_asm" ],
21 cc => "gcc",
22 cflags => "$gcc_devteam_warn -pthread -m32 -DL_ENDIAN -DCONF_DEBUG -g",
23 thread_cflag => "-D_REENTRANT",
24 lflags => "-rdynamic",
25 ex_libs => "-ldl",
26 bn_ops => "BN_LLONG",
27 dso_scheme => "dlfcn",
28 shared_target => "linux-shared",
29 shared_cflag => "-fPIC",
30 shared_ldflag => "-m32",
31 shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
32 },
33 "debug-steve-opt" => {
34 inherit_from => [ "x86_64_asm" ],
35 cc => "gcc",
36 cflags => "$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
37 thread_cflag => "-D_REENTRANT",
38 ex_libs => "-ldl",
39 bn_ops => "SIXTY_FOUR_BIT_LONG",
40 perlasm_scheme => "elf",
41 dso_scheme => "dlfcn",
42 shared_target => "linux-shared",
43 shared_cflag => "-fPIC",
44 shared_ldflag => "-m64",
45 shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
46 },
47 );