summaryrefslogtreecommitdiffstats
path: root/Configurations/99-personal-levitte.conf
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-03-12 14:58:07 +0100
committerRichard Levitte <levitte@openssl.org>2015-03-16 22:18:08 +0100
commita5250ec02f4d8b27d786c415ae882801972bfccd (patch)
tree02b2c631ab1a37bf5a6bbe3a3ac953fe01b1a6a5 /Configurations/99-personal-levitte.conf
parentd52dcf8da7f15bf75fbf065bac2c4557470ea2fa (diff)
Configuration cleanup: personal configs
Move obviously personal configurations to personal files. Note: those files should really not be in the main repo at all Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configurations/99-personal-levitte.conf')
-rw-r--r--Configurations/99-personal-levitte.conf59
1 files changed, 59 insertions, 0 deletions
diff --git a/Configurations/99-personal-levitte.conf b/Configurations/99-personal-levitte.conf
new file mode 100644
index 0000000000..18fbcdc81c
--- /dev/null
+++ b/Configurations/99-personal-levitte.conf
@@ -0,0 +1,59 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "levitte-linux-elf" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "-DL_ENDIAN -Wall",
+ debug_cflags => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG-ggdb -g3",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-noasm" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -ggdb -g3 -Wall",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-elf-extreme" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -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",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-noasm-extreme" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -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",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ perlasm_scheme => "void",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+);