4bfcbbeceab04e118e54efcf627f6a36fa678a00
[openssl.git] / Configurations / 99-personal-levitte.conf
1 ## -*- mode: perl; -*-
2 ## Personal configuration targets
3 ##
4 ## If you edit this file, run this command before committing
5 ##      make -f Makefile.in TABLE
6 ## This file is interpolated by the Configure script.
7
8 %targets = (
9     "levitte-linux-elf" => {
10         inherit_from     => [ "x86_elf_asm" ],
11         cc               => "gcc",
12         cflags           => "-DL_ENDIAN -Wall",
13         debug_cflags     => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -ggdb -g3",
14         thread_cflag     => "-D_REENTRANT",
15         lflags           => "-ldl",
16         bn_ops           => "BN_LLONG",
17         dso_scheme       => "dlfcn",
18         shared_target    => "linux-shared",
19         shared_cflag     => "-fPIC",
20         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
21     },
22     "debug-levitte-linux-noasm" => {
23         cc               => "gcc",
24         cflags           => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -ggdb -g3 -Wall",
25         thread_cflag     => "-D_REENTRANT",
26         lflags           => "-ldl",
27         bn_ops           => "BN_LLONG",
28         dso_scheme       => "dlfcn",
29         shared_target    => "linux-shared",
30         shared_cflag     => "-fPIC",
31         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
32     },
33     "debug-levitte-linux-elf-extreme" => {
34         inherit_from     => [ "x86_elf_asm" ],
35         cc               => "gcc",
36         cflags           => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DENGINE_CONF_DEBUG -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
37         thread_cflag     => "-D_REENTRANT",
38         lflags           => "-ldl",
39         bn_ops           => "BN_LLONG",
40         perlasm_scheme   => "elf",
41         dso_scheme       => "dlfcn",
42         shared_target    => "linux-shared",
43         shared_cflag     => "-fPIC",
44         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
45     },
46     "debug-levitte-linux-noasm-extreme" => {
47         cc               => "gcc",
48         cflags           => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DENGINE_CONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
49         thread_cflag     => "-D_REENTRANT",
50         lflags           => "-ldl",
51         bn_ops           => "BN_LLONG",
52         perlasm_scheme   => "void",
53         dso_scheme       => "dlfcn",
54         shared_target    => "linux-shared",
55         shared_cflag     => "-fPIC",
56         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
57     },
58 );