summaryrefslogtreecommitdiffstats
path: root/Configurations/99-personal-steve.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-steve.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-steve.conf')
-rw-r--r--Configurations/99-personal-steve.conf49
1 files changed, 49 insertions, 0 deletions
diff --git a/Configurations/99-personal-steve.conf b/Configurations/99-personal-steve.conf
new file mode 100644
index 0000000000..454b28318a
--- /dev/null
+++ b/Configurations/99-personal-steve.conf
@@ -0,0 +1,49 @@
+## 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-steve64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m64",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-steve32" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m32 -DL_ENDIAN -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g -pipe",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-rdynamic -ldl",
+ bn_ops => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m32",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-steve-opt" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m64",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+);