summaryrefslogtreecommitdiffstats
path: root/Configurations/99-personal-ben.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-ben.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-ben.conf')
-rw-r--r--Configurations/99-personal-ben.conf94
1 files changed, 94 insertions, 0 deletions
diff --git a/Configurations/99-personal-ben.conf b/Configurations/99-personal-ben.conf
new file mode 100644
index 0000000000..94ea6d04ae
--- /dev/null
+++ b/Configurations/99-personal-ben.conf
@@ -0,0 +1,94 @@
+## 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 = (
+ "debug-ben" => {
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DDEBUG_SAFESTACK -O2 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-openbsd" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-openbsd-debug" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-debug" => {
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DOPENSSL_NO_HW_PADLOCK -g3 -O2 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-debug-64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-debug-64-clang" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "clang",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-debug-64-noopt" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-macos" => {
+ cc => "cc",
+ cflags => "$gcc_devteam_warn -DOPENSSL_NO_ASM -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -arch i386 -O3 -DL_ENDIAN -g3 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-no-opt" => {
+ cc => "gcc",
+ cflags => " -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG -Werror -DL_ENDIAN -Wall -g3",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-strict" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DCONST_STRICT -O2 -Wall -Wshadow -Werror -Wpointer-arith -Wcast-qual -Wwrite-strings -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-darwin64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "cc",
+ cflags => "$gcc_devteam_warn -Wno-language-extension-token -Wno-extended-offsetof -arch x86_64 -O3 -DL_ENDIAN -DMD32_REG_T=int -Wall",
+ thread_cflag => "-D_REENTRANT",
+ sys_id => "MACOSX",
+ lflags => "-Wl,-search_paths_first%",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "macosx",
+ dso_scheme => "dlfcn",
+ shared_target => "darwin-shared",
+ shared_cflag => "-fPIC -fno-common",
+ shared_ldflag => "-arch x86_64 -dynamiclib",
+ shared_extension => ".\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
+ },
+);