]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configurations/99-personal-steve.conf
Configure - Rename BASE to DEFAULTS and add a few inheritable BASEs
[thirdparty/openssl.git] / Configurations / 99-personal-steve.conf
CommitLineData
f4d8f037 1## -*- mode: perl; -*-
a5250ec0 2## Personal configuration targets
a5250ec0
RL
3
4%targets = (
5 "debug-steve64" => {
6 inherit_from => [ "x86_64_asm" ],
7 cc => "gcc",
043b93d7 8 cflags => "$gcc_devteam_warn -pthread -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
a5250ec0 9 thread_cflag => "-D_REENTRANT",
04b08fbc 10 ex_libs => "-ldl",
3e9e810f 11 bn_ops => "SIXTY_FOUR_BIT_LONG",
a5250ec0
RL
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",
043b93d7 22 cflags => "$gcc_devteam_warn -pthread -m32 -DL_ENDIAN -DCONF_DEBUG -g",
a5250ec0 23 thread_cflag => "-D_REENTRANT",
04b08fbc
RL
24 lflags => "-rdynamic",
25 ex_libs => "-ldl",
a01dab94 26 bn_ops => "BN_LLONG",
a5250ec0
RL
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",
043b93d7 36 cflags => "$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
a5250ec0 37 thread_cflag => "-D_REENTRANT",
04b08fbc 38 ex_libs => "-ldl",
3e9e810f 39 bn_ops => "SIXTY_FOUR_BIT_LONG",
a5250ec0
RL
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);