90-team.norelease.conf 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. ## -*- mode: perl; -*-
  2. ## Build configuration targets for openssl-team members
  3. my %targets = (
  4. "purify" => {
  5. inherit_from => [ 'BASE_unix' ],
  6. cc => "purify gcc",
  7. CFLAGS => "-g -Wall",
  8. thread_scheme => "(unknown)",
  9. ex_libs => add(" ","-lsocket -lnsl"),
  10. },
  11. "debug" => {
  12. inherit_from => [ 'BASE_unix' ],
  13. cc => "gcc",
  14. cflags => "-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DOPENSSL_NO_ASM -ggdb -g2 -Wformat -Wshadow -Wmissing-prototypes -Wmissing-declarations -Werror",
  15. thread_scheme => "(unknown)",
  16. },
  17. "debug-erbridge" => {
  18. inherit_from => [ 'BASE_unix', "x86_64_asm" ],
  19. cc => "gcc",
  20. cflags => combine(join(' ', @gcc_devteam_warn),
  21. "-DBN_DEBUG -DCONF_DEBUG -m64 -DL_ENDIAN -DTERMIO -g",
  22. threads("-D_REENTRANT")),
  23. ex_libs => add(" ","-ldl"),
  24. bn_ops => "SIXTY_FOUR_BIT_LONG",
  25. thread_scheme => "pthreads",
  26. asm_arch => 'x86_64',
  27. perlasm_scheme => "elf",
  28. dso_scheme => "dlfcn",
  29. shared_target => "linux-shared",
  30. shared_cflag => "-fPIC",
  31. shared_ldflag => "-m64",
  32. multilib => "64",
  33. },
  34. "debug-linux-pentium" => {
  35. inherit_from => [ 'BASE_unix', "x86_elf_asm" ],
  36. cc => "gcc",
  37. cflags => combine("-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DL_ENDIAN -g -mcpu=pentium -Wall",
  38. threads("-D_REENTRANT")),
  39. ex_libs => add(" ","-ldl"),
  40. bn_ops => "BN_LLONG",
  41. asm_arch => 'x86',
  42. perlasm_scheme => 'elf',
  43. thread_scheme => "pthreads",
  44. dso_scheme => "dlfcn",
  45. },
  46. "debug-linux-ppro" => {
  47. inherit_from => [ 'BASE_unix', "x86_elf_asm" ],
  48. cc => "gcc",
  49. cflags => combine("-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DL_ENDIAN -g -mcpu=pentiumpro -Wall",
  50. threads("-D_REENTRANT")),
  51. ex_libs => add(" ","-ldl"),
  52. bn_ops => "BN_LLONG",
  53. asm_arch => 'x86',
  54. perlasm_scheme => 'elf',
  55. thread_scheme => "pthreads",
  56. dso_scheme => "dlfcn",
  57. },
  58. "debug-test-64-clang" => {
  59. inherit_from => [ 'BASE_unix', "x86_64_asm" ],
  60. cc => "clang",
  61. cflags => combine(join(' ', @gcc_devteam_warn),
  62. "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_UNUSED -g3 -O3 -pipe",
  63. threads("${BSDthreads}")),
  64. bn_ops => "SIXTY_FOUR_BIT_LONG",
  65. thread_scheme => "pthreads",
  66. asm_arch => 'x86_64',
  67. perlasm_scheme => "elf",
  68. dso_scheme => "dlfcn",
  69. shared_target => "bsd-gcc-shared",
  70. shared_cflag => "-fPIC",
  71. },
  72. "darwin64-debug-test-64-clang" => {
  73. inherit_from => [ 'BASE_unix', "x86_64_asm" ],
  74. cc => "clang",
  75. cflags => combine("-arch x86_64 -DL_ENDIAN",
  76. join(' ', @gcc_devteam_warn),
  77. "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_UNUSED -g3 -O3 -pipe",
  78. threads("${BSDthreads}")),
  79. sys_id => "MACOSX",
  80. bn_ops => "SIXTY_FOUR_BIT_LONG",
  81. thread_scheme => "pthreads",
  82. asm_arch => 'x86_64',
  83. perlasm_scheme => "macosx",
  84. dso_scheme => "dlfcn",
  85. shared_target => "darwin-shared",
  86. shared_cflag => "-fPIC -fno-common",
  87. shared_ldflag => "-arch x86_64 -dynamiclib",
  88. shared_extension => ".\$(SHLIB_VERSION_NUMBER).dylib",
  89. },
  90. );