171b1cbdc2876f849d59793b7de0fd0d5a48832d
[openssl.git] / Configurations / 99-personal-steve.conf
1 ## Personal configuration targets
2 ##
3 ## If you edit this file, run this command before committing
4 ##      make -f Makefile.org TABLE
5 ## This file is interpolated by the Configure script.
6
7 %targets = (
8     "debug-steve64" => {
9         inherit_from     => [ "x86_64_asm" ],
10         cc               => "gcc",
11         cflags           => "$gcc_devteam_warn -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
12         thread_cflag     => "-D_REENTRANT",
13         lflags           => "-ldl",
14         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
15         perlasm_scheme   => "elf",
16         dso_scheme       => "dlfcn",
17         shared_target    => "linux-shared",
18         shared_cflag     => "-fPIC",
19         shared_ldflag    => "-m64",
20         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
21     },
22     "debug-steve32" => {
23         inherit_from     => [ "x86_elf_asm" ],
24         cc               => "gcc",
25         cflags           => "$gcc_devteam_warn -m32 -DL_ENDIAN -DCONF_DEBUG -g",
26         thread_cflag     => "-D_REENTRANT",
27         lflags           => "-rdynamic -ldl",
28         bn_ops           => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
29         dso_scheme       => "dlfcn",
30         shared_target    => "linux-shared",
31         shared_cflag     => "-fPIC",
32         shared_ldflag    => "-m32",
33         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
34     },
35     "debug-steve-opt" => {
36         inherit_from     => [ "x86_64_asm" ],
37         cc               => "gcc",
38         cflags           => "$gcc_devteam_warn -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
39         thread_cflag     => "-D_REENTRANT",
40         lflags           => "-ldl",
41         bn_ops           => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
42         perlasm_scheme   => "elf",
43         dso_scheme       => "dlfcn",
44         shared_target    => "linux-shared",
45         shared_cflag     => "-fPIC",
46         shared_ldflag    => "-m64",
47         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
48     },
49 );