99-personal-geoff.conf 1.8 KB

1234567891011121314151617181920212223242526272829303132
  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. %targets = (
  7. "debug-geoff32" => {
  8. inherit_from => [ "no_asm_filler" ],
  9. cc => "gcc",
  10. cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
  11. thread_cflag => "-D_REENTRANT",
  12. lflags => "-ldl",
  13. bn_ops => "BN_LLONG",
  14. dso_scheme => "dlfcn",
  15. shared_target => "linux-shared",
  16. shared_cflag => "-fPIC",
  17. shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
  18. },
  19. "debug-geoff64" => {
  20. inherit_from => [ "no_asm_filler" ],
  21. cc => "gcc",
  22. cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
  23. thread_cflag => "-D_REENTRANT",
  24. lflags => "-ldl",
  25. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR",
  26. dso_scheme => "dlfcn",
  27. shared_target => "linux-shared",
  28. shared_cflag => "-fPIC",
  29. shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
  30. },
  31. );