10-main.conf 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. ## -*- mode: perl; -*-
  2. ## Standard openssl configuration targets.
  3. # Helper functions for the Windows configs
  4. my $vc_win64a_info = {};
  5. sub vc_win64a_info {
  6. unless (%$vc_win64a_info) {
  7. if (`nasm -v 2>NUL` =~ /NASM version ([0-9]+\.[0-9]+)/ && $1 >= 2.0) {
  8. $vc_win64a_info = { AS => "nasm",
  9. ASFLAGS => "-g",
  10. asflags => "-Ox -f win64 -DNEAR",
  11. asoutflag => "-o " };
  12. } elsif ($disabled{asm}) {
  13. # assembler is still used to compile uplink shim
  14. $vc_win64a_info = { AS => "ml64",
  15. ASFLAGS => "/nologo /Zi",
  16. asflags => "/c /Cp /Cx",
  17. asoutflag => "/Fo" };
  18. } else {
  19. $die->("NASM not found - make sure it's installed and available on %PATH%\n");
  20. $vc_win64a_info = { AS => "{unknown}",
  21. ASFLAGS => "",
  22. asflags => "",
  23. asoutflag => "" };
  24. }
  25. }
  26. return $vc_win64a_info;
  27. }
  28. my $vc_win32_info = {};
  29. sub vc_win32_info {
  30. unless (%$vc_win32_info) {
  31. my $ver=`nasm -v 2>NUL`;
  32. my $vew=`nasmw -v 2>NUL`;
  33. if ($ver ne "" || $vew ne "") {
  34. $vc_win32_info = { AS => $ver ge $vew ? "nasm" : "nasmw",
  35. ASFLAGS => "",
  36. asflags => "-f win32",
  37. asoutflag => "-o ",
  38. perlasm_scheme => "win32n" };
  39. } elsif ($disabled{asm}) {
  40. # not actually used, uplink shim is inlined into C code
  41. $vc_win32_info = { AS => "ml",
  42. ASFLAGS => "/nologo /Zi",
  43. asflags => "/Cp /coff /c /Cx",
  44. asoutflag => "/Fo",
  45. perlasm_scheme => "win32" };
  46. } else {
  47. $die->("NASM not found - make sure it's installed and available on %PATH%\n");
  48. $vc_win32_info = { AS => "{unknown}",
  49. ASFLAGS => "",
  50. asflags => "",
  51. asoutflag => "",
  52. perlasm_scheme => "win32" };
  53. }
  54. }
  55. return $vc_win32_info;
  56. }
  57. my $vc_wince_info = {};
  58. sub vc_wince_info {
  59. unless (%$vc_wince_info) {
  60. # sanity check
  61. $die->('%OSVERSION% is not defined') if (!defined(env('OSVERSION')));
  62. $die->('%PLATFORM% is not defined') if (!defined(env('PLATFORM')));
  63. $die->('%TARGETCPU% is not defined') if (!defined(env('TARGETCPU')));
  64. #
  65. # Idea behind this is to mimic flags set by eVC++ IDE...
  66. #
  67. my $wcevers = env('OSVERSION'); # WCENNN
  68. my $wcevernum;
  69. my $wceverdotnum;
  70. if ($wcevers =~ /^WCE([1-9])([0-9]{2})$/) {
  71. $wcevernum = "$1$2";
  72. $wceverdotnum = "$1.$2";
  73. } else {
  74. $die->('%OSVERSION% value is insane');
  75. $wcevernum = "{unknown}";
  76. $wceverdotnum = "{unknown}";
  77. }
  78. my $wcecdefs = "-D_WIN32_WCE=$wcevernum -DUNDER_CE=$wcevernum"; # -D_WIN32_WCE=NNN
  79. my $wcelflag = "/subsystem:windowsce,$wceverdotnum"; # ...,N.NN
  80. my $wceplatf = env('PLATFORM');
  81. $wceplatf =~ tr/a-z0-9 /A-Z0-9_/;
  82. $wcecdefs .= " -DWCE_PLATFORM_$wceplatf";
  83. my $wcetgt = env('TARGETCPU'); # just shorter name...
  84. SWITCH: for($wcetgt) {
  85. /^X86/ && do { $wcecdefs.=" -Dx86 -D_X86_ -D_i386_ -Di_386_";
  86. $wcelflag.=" /machine:X86"; last; };
  87. /^ARMV4[IT]/ && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
  88. $wcecdefs.=" -DTHUMB -D_THUMB_" if($wcetgt=~/T$/);
  89. $wcecdefs.=" -QRarch4T -QRinterwork-return";
  90. $wcelflag.=" /machine:THUMB"; last; };
  91. /^ARM/ && do { $wcecdefs.=" -DARM -D_ARM_ -D$wcetgt";
  92. $wcelflag.=" /machine:ARM"; last; };
  93. /^MIPSIV/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
  94. $wcecdefs.=" -D_MIPS64 -QMmips4 -QMn32";
  95. $wcelflag.=" /machine:MIPSFPU"; last; };
  96. /^MIPS16/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
  97. $wcecdefs.=" -DMIPSII -QMmips16";
  98. $wcelflag.=" /machine:MIPS16"; last; };
  99. /^MIPSII/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000 -D$wcetgt";
  100. $wcecdefs.=" -QMmips2";
  101. $wcelflag.=" /machine:MIPS"; last; };
  102. /^R4[0-9]{3}/ && do { $wcecdefs.=" -DMIPS -D_MIPS_ -DR4000";
  103. $wcelflag.=" /machine:MIPS"; last; };
  104. /^SH[0-9]/ && do { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_ -DSHx";
  105. $wcecdefs.=" -Qsh4" if ($wcetgt =~ /^SH4/);
  106. $wcelflag.=" /machine:$wcetgt"; last; };
  107. { $wcecdefs.=" -D$wcetgt -D_${wcetgt}_";
  108. $wcelflag.=" /machine:$wcetgt"; last; };
  109. }
  110. $vc_wince_info = { cppflags => $wcecdefs,
  111. lflags => $wcelflag };
  112. }
  113. return $vc_wince_info;
  114. }
  115. # Helper functions for the VMS configs
  116. my $vms_info = {};
  117. sub vms_info {
  118. my $pointer_size_str = $config{target} =~ m|-p(\d+)$| ? $1 : "";
  119. # For the case where Configure iterate through all config targets, such
  120. # as when listing them and their details, we reset info if the pointer
  121. # size changes.
  122. if (%$vms_info && $vms_info->{pointer_size} ne $pointer_size_str) {
  123. $vms_info = {};
  124. }
  125. unless (%$vms_info) {
  126. $vms_info->{disable_warns} = [ ];
  127. $vms_info->{pointer_size} = $pointer_size_str;
  128. if ($pointer_size_str eq "64") {
  129. `PIPE CC /NOCROSS_REFERENCE /NOLIST /NOOBJECT /WARNINGS = DISABLE = ( MAYLOSEDATA3, EMPTYFILE ) NL: 2> NL:`;
  130. if ($? == 0) {
  131. push @{$vms_info->{disable_warns}}, "MAYLOSEDATA3";
  132. }
  133. }
  134. unless ($disabled{zlib}) {
  135. my $default_zlib = 'GNV$LIBZSHR' . $pointer_size_str;
  136. if (defined($disabled{"zlib-dynamic"})) {
  137. $vms_info->{zlib} = $withargs{zlib_lib} || "$default_zlib/SHARE";
  138. } else {
  139. $vms_info->{def_zlib} = $withargs{zlib_lib} || $default_zlib;
  140. # In case the --with-zlib-lib value contains something like
  141. # /SHARE or /LIB or so at the end, remove it.
  142. $vms_info->{def_zlib} =~ s|/.*$||g;
  143. }
  144. }
  145. if ($config{target} =~ /-ia64/) {
  146. `PIPE ias -H 2> NL:`;
  147. if ($? == 0) {
  148. $vms_info->{AS} = "ias";
  149. $vms_info->{ASFLAGS} = '-d debug';
  150. $vms_info->{asflags} = '"-N" vms_upcase';
  151. $vms_info->{asoutflag} = "-o ";
  152. $vms_info->{perlasm_scheme} = "ias";
  153. }
  154. }
  155. }
  156. return $vms_info;
  157. }
  158. my %targets = (
  159. #### Basic configs that should work on any 32-bit box
  160. "gcc" => {
  161. inherit_from => [ "BASE_unix" ],
  162. CC => "gcc",
  163. CFLAGS => picker(debug => "-O0 -g",
  164. release => "-O3"),
  165. thread_scheme => "(unknown)",
  166. bn_ops => "BN_LLONG",
  167. },
  168. "cc" => {
  169. inherit_from => [ "BASE_unix" ],
  170. CC => "cc",
  171. CFLAGS => "-O",
  172. thread_scheme => "(unknown)",
  173. },
  174. #### VOS Configurations
  175. "vos-gcc" => {
  176. inherit_from => [ "BASE_unix" ],
  177. CC => "gcc",
  178. CFLAGS => picker(default => "-Wall",
  179. debug => "-O0 -g",
  180. release => "-O3"),
  181. cppflags => "-D_POSIX_C_SOURCE=200112L -D_BSD -D_VOS_EXTENDED_NAMES",
  182. lib_cppflags => "-DB_ENDIAN",
  183. thread_scheme => "(unknown)",
  184. sys_id => "VOS",
  185. lflags => add("-Wl,-map"),
  186. bn_ops => "BN_LLONG",
  187. shared_extension => ".so",
  188. },
  189. #### Solaris configurations
  190. "solaris-common" => {
  191. inherit_from => [ "BASE_unix" ],
  192. template => 1,
  193. lib_cppflags => "-DFILIO_H",
  194. ex_libs => add("-lsocket -lnsl -ldl"),
  195. dso_scheme => "dlfcn",
  196. thread_scheme => "pthreads",
  197. shared_target => "self",
  198. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  199. shared_ldflag => "-Wl,-Bsymbolic",
  200. shared_defflag => "-Wl,-M,",
  201. shared_sonameflag=> "-Wl,-h,",
  202. },
  203. #### Solaris x86 with GNU C setups
  204. "solaris-x86-gcc" => {
  205. # NB. GNU C has to be configured to use GNU assembler, and not
  206. # /usr/ccs/bin/as. Failure to comply will result in compile
  207. # failures [at least] in 32-bit build.
  208. inherit_from => [ "solaris-common", asm("x86_elf_asm") ],
  209. CC => "gcc",
  210. CFLAGS => add_before(picker(default => "-Wall",
  211. debug => "-O0 -g",
  212. release => "-O3 -fomit-frame-pointer")),
  213. cflags => add(threads("-pthread")),
  214. lib_cppflags => add("-DL_ENDIAN"),
  215. ex_libs => add(threads("-pthread")),
  216. bn_ops => "BN_LLONG",
  217. shared_cflag => "-fPIC",
  218. shared_ldflag => add_before("-shared -static-libgcc"),
  219. },
  220. "solaris64-x86_64-gcc" => {
  221. # -shared -static-libgcc might appear controversial, but modules
  222. # taken from static libgcc do not have relocations and linking
  223. # them into our shared objects doesn't have any negative side
  224. # effects. On the contrary, doing so makes it possible to use
  225. # gcc shared build with Sun C. Given that gcc generates faster
  226. # code [thanks to inline assembler], I would actually recommend
  227. # to consider using gcc shared build even with vendor compiler:-)
  228. # -- <[email protected]>
  229. inherit_from => [ "solaris-common", asm("x86_64_asm") ],
  230. CC => "gcc",
  231. CFLAGS => add_before(picker(default => "-Wall",
  232. debug => "-O0 -g",
  233. release => "-O3")),
  234. cflags => add_before("-m64", threads("-pthread")),
  235. lib_cppflags => add("-DL_ENDIAN"),
  236. ex_libs => add(threads("-pthread")),
  237. bn_ops => "SIXTY_FOUR_BIT_LONG",
  238. perlasm_scheme => "elf",
  239. shared_cflag => "-fPIC",
  240. shared_ldflag => add_before("-shared -static-libgcc"),
  241. multilib => "/64",
  242. },
  243. #### Solaris x86 with Sun C setups
  244. # There used to be solaris-x86-cc target, but it was removed,
  245. # primarily because vendor assembler can't assemble our modules
  246. # with -KPIC flag. As result it, assembly support, was not even
  247. # available as option. But its lack means lack of side-channel
  248. # resistant code, which is incompatible with security by today's
  249. # standards. Fortunately gcc is readily available prepackaged
  250. # option, which we can firmly point at...
  251. #
  252. # On related note, solaris64-x86_64-cc target won't compile code
  253. # paths utilizing AVX and post-Haswell instruction extensions.
  254. # Consider switching to solaris64-x86_64-gcc even here...
  255. #
  256. "solaris64-x86_64-cc" => {
  257. inherit_from => [ "solaris-common", asm("x86_64_asm") ],
  258. CC => "cc",
  259. CFLAGS => add_before(picker(debug => "-g",
  260. release => "-xO5 -xdepend -xbuiltin")),
  261. cflags => add_before("-xarch=generic64 -xstrconst -Xa"),
  262. cppflags => add(threads("-D_REENTRANT")),
  263. lib_cppflags => add("-DL_ENDIAN"),
  264. thread_scheme => "pthreads",
  265. lflags => add(threads("-mt")),
  266. ex_libs => add(threads("-lpthread")),
  267. bn_ops => "SIXTY_FOUR_BIT_LONG",
  268. perlasm_scheme => "elf",
  269. shared_cflag => "-KPIC",
  270. shared_ldflag => add_before("-G -dy -z text"),
  271. multilib => "/64",
  272. },
  273. #### SPARC Solaris with GNU C setups
  274. "solaris-sparcv7-gcc" => {
  275. inherit_from => [ "solaris-common" ],
  276. CC => "gcc",
  277. CFLAGS => add_before(picker(default => "-Wall",
  278. debug => "-O0 -g",
  279. release => "-O3")),
  280. cflags => add(threads("-pthread")),
  281. lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
  282. ex_libs => add(threads("-pthread")),
  283. bn_ops => "BN_LLONG RC4_CHAR",
  284. shared_cflag => "-fPIC",
  285. shared_ldflag => add_before("-shared"),
  286. },
  287. "solaris-sparcv8-gcc" => {
  288. inherit_from => [ "solaris-sparcv7-gcc", asm("sparcv8_asm") ],
  289. cflags => add_before("-mcpu=v8"),
  290. },
  291. "solaris-sparcv9-gcc" => {
  292. # -m32 should be safe to add as long as driver recognizes
  293. # -mcpu=ultrasparc
  294. inherit_from => [ "solaris-sparcv7-gcc", asm("sparcv9_asm") ],
  295. cflags => add_before("-m32 -mcpu=ultrasparc"),
  296. },
  297. "solaris64-sparcv9-gcc" => {
  298. inherit_from => [ "solaris-sparcv9-gcc" ],
  299. cflags => sub { my $f=join(" ",@_); $f =~ s/\-m32/-m64/; $f; },
  300. bn_ops => "BN_LLONG RC4_CHAR",
  301. multilib => "/64",
  302. },
  303. #### SPARC Solaris with Sun C setups
  304. # SC4.0 doesn't pass 'make test', upgrade to SC5.0 or SC4.2.
  305. # SC4.2 is ok, better than gcc even on bn as long as you tell it -xarch=v8
  306. # SC5.0 note: Compiler common patch 107357-01 or later is required!
  307. "solaris-sparcv7-cc" => {
  308. inherit_from => [ "solaris-common" ],
  309. CC => "cc",
  310. CFLAGS => add_before(picker(debug => "-g",
  311. release => "-xO5 -xdepend")),
  312. cflags => add_before("-xstrconst -Xa"),
  313. cppflags => add(threads("-D_REENTRANT")),
  314. lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
  315. lflags => add(threads("-mt")),
  316. ex_libs => add(threads("-lpthread")),
  317. bn_ops => "BN_LLONG RC4_CHAR",
  318. shared_cflag => "-KPIC",
  319. shared_ldflag => add_before("-G -dy -z text"),
  320. },
  321. ####
  322. "solaris-sparcv8-cc" => {
  323. inherit_from => [ "solaris-sparcv7-cc", asm("sparcv8_asm") ],
  324. cflags => add_before("-xarch=v8"),
  325. },
  326. "solaris-sparcv9-cc" => {
  327. inherit_from => [ "solaris-sparcv7-cc", asm("sparcv9_asm") ],
  328. cflags => add_before("-xarch=v8plus"),
  329. },
  330. "solaris64-sparcv9-cc" => {
  331. inherit_from => [ "solaris-sparcv7-cc", asm("sparcv9_asm") ],
  332. cflags => add_before("-xarch=v9"),
  333. bn_ops => "BN_LLONG RC4_CHAR",
  334. multilib => "/64",
  335. },
  336. #### IRIX 6.x configs
  337. # Only N32 and N64 ABIs are supported.
  338. "irix-common" => {
  339. inherit_from => [ "BASE_unix" ],
  340. template => 1,
  341. cppflags => threads("-D_SGI_MP_SOURCE"),
  342. lib_cppflags => "-DB_ENDIAN",
  343. ex_libs => add(threads("-lpthread")),
  344. thread_scheme => "pthreads",
  345. dso_scheme => "dlfcn",
  346. shared_target => "self",
  347. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  348. shared_ldflag => "-shared -Wl,-Bsymbolic",
  349. shared_sonameflag=> "-Wl,-soname,",
  350. },
  351. "irix-mips3-gcc" => {
  352. inherit_from => [ "irix-common", asm("mips64_asm") ],
  353. CC => "gcc",
  354. CFLAGS => picker(debug => "-g -O0",
  355. release => "-O3"),
  356. LDFLAGS => "-static-libgcc",
  357. cflags => "-mabi=n32",
  358. bn_ops => "RC4_CHAR SIXTY_FOUR_BIT",
  359. perlasm_scheme => "n32",
  360. multilib => "32",
  361. },
  362. "irix-mips3-cc" => {
  363. inherit_from => [ "irix-common", asm("mips64_asm") ],
  364. CC => "cc",
  365. CFLAGS => picker(debug => "-g -O0",
  366. release => "-O2"),
  367. cflags => "-n32 -mips3 -use_readonly_const -G0 -rdata_shared",
  368. bn_ops => "RC4_CHAR SIXTY_FOUR_BIT",
  369. perlasm_scheme => "n32",
  370. multilib => "32",
  371. },
  372. # N64 ABI builds.
  373. "irix64-mips4-gcc" => {
  374. inherit_from => [ "irix-common", asm("mips64_asm") ],
  375. CC => "gcc",
  376. CFLAGS => picker(debug => "-g -O0",
  377. release => "-O3"),
  378. LDFLAGS => "-static-libgcc",
  379. cflags => "-mabi=64 -mips4",
  380. bn_ops => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
  381. perlasm_scheme => "64",
  382. multilib => "64",
  383. },
  384. "irix64-mips4-cc" => {
  385. inherit_from => [ "irix-common", asm("mips64_asm") ],
  386. CC => "cc",
  387. CFLAGS => picker(debug => "-g -O0",
  388. release => "-O2"),
  389. cflags => "-64 -mips4 -use_readonly_const -G0 -rdata_shared",
  390. bn_ops => "RC4_CHAR SIXTY_FOUR_BIT_LONG",
  391. perlasm_scheme => "64",
  392. multilib => "64",
  393. },
  394. #### Unified HP-UX ANSI C configs.
  395. # Special notes:
  396. # - Originally we were optimizing at +O4 level. It should be noted
  397. # that the only difference between +O3 and +O4 is global inter-
  398. # procedural analysis. As it has to be performed during the link
  399. # stage the compiler leaves behind certain pseudo-code in lib*.a
  400. # which might be release or even patch level specific. Generating
  401. # the machine code for and analyzing the *whole* program appears
  402. # to be *extremely* memory demanding while the performance gain is
  403. # actually questionable. The situation is intensified by the default
  404. # HP-UX data set size limit (infamous 'maxdsiz' tunable) of 64MB
  405. # which is way too low for +O4. In other words, doesn't +O3 make
  406. # more sense?
  407. # - Keep in mind that the HP compiler by default generates code
  408. # suitable for execution on the host you're currently compiling at.
  409. # If the toolkit is meant to be used on various PA-RISC processors
  410. # consider './Configure hpux-parisc-[g]cc +DAportable'.
  411. # - -DMD32_XARRAY triggers workaround for compiler bug we ran into in
  412. # 32-bit message digests. (For the moment of this writing) HP C
  413. # doesn't seem to "digest" too many local variables (they make "him"
  414. # chew forever:-). For more details look-up MD32_XARRAY comment in
  415. # crypto/sha/sha_local.h.
  416. # - originally there were 32-bit hpux-parisc2-* targets. They were
  417. # scrapped, because a) they were not interchangeable with other 32-bit
  418. # targets; b) performance-critical 32-bit assembly modules implement
  419. # even PA-RISC 2.0-specific code paths, which are chosen at run-time,
  420. # thus adequate performance is provided even with PA-RISC 1.1 build.
  421. "hpux-common" => {
  422. inherit_from => [ "BASE_unix" ],
  423. template => 1,
  424. defines => add("_XOPEN_SOURCE", "_XOPEN_SOURCE_EXTENDED",
  425. "_HPUX_ALT_XOPEN_SOCKET_API"),
  426. lib_cppflags => "-DB_ENDIAN",
  427. thread_scheme => "pthreads",
  428. dso_scheme => "dlfcn", # overridden in 32-bit PA-RISC builds
  429. shared_target => "self",
  430. bin_lflags => "-Wl,+s,+cdp,../:,+cdp,./:",
  431. shared_ldflag => "-Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+cdp,../:,+cdp,./:",
  432. shared_sonameflag=> "-Wl,+h,",
  433. },
  434. "hpux-parisc-gcc" => {
  435. inherit_from => [ "hpux-common" ],
  436. CC => "gcc",
  437. CFLAGS => picker(debug => "-O0 -g",
  438. release => "-O3"),
  439. cflags => add(threads("-pthread")),
  440. lib_cppflags => add("-DBN_DIV2W"),
  441. ex_libs => add("-ldld", threads("-pthread")),
  442. bn_ops => "BN_LLONG RC4_CHAR",
  443. dso_scheme => "dl",
  444. shared_cflag => "-fPIC",
  445. shared_ldflag => add_before("-shared"),
  446. shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
  447. },
  448. "hpux-parisc1_1-gcc" => {
  449. inherit_from => [ "hpux-parisc-gcc", asm("parisc11_asm") ],
  450. multilib => "/pa1.1",
  451. },
  452. "hpux64-parisc2-gcc" => {
  453. inherit_from => [ "hpux-common", asm("parisc20_64_asm") ],
  454. CC => "gcc",
  455. CFLAGS => combine(picker(debug => "-O0 -g",
  456. release => "-O3")),
  457. cflags => add(threads("-pthread")),
  458. ex_libs => add("-ldl", threads("-pthread")),
  459. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  460. shared_cflag => "-fpic",
  461. shared_ldflag => add_before("-shared"),
  462. shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
  463. multilib => "/pa20_64",
  464. },
  465. # More attempts at unified 10.X and 11.X targets for HP C compiler.
  466. "hpux-parisc-cc" => {
  467. inherit_from => [ "hpux-common" ],
  468. CC => "cc",
  469. CFLAGS => picker(debug => "+O0 +d -g",
  470. release => "+O3"),
  471. cflags => "+Optrs_strongly_typed -Ae +ESlit",
  472. cppflags => threads("-D_REENTRANT"),
  473. lib_cppflags => add("-DBN_DIV2W -DMD32_XARRAY"),
  474. ex_libs => add("-ldld", threads("-lpthread")),
  475. bn_ops => "RC4_CHAR",
  476. dso_scheme => "dl",
  477. shared_cflag => "+Z",
  478. shared_ldflag => add_before("-b"),
  479. shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
  480. },
  481. "hpux-parisc1_1-cc" => {
  482. inherit_from => [ "hpux-parisc-cc", asm("parisc11_asm") ],
  483. cflags => add_before("+DA1.1"),
  484. multilib => "/pa1.1",
  485. },
  486. "hpux64-parisc2-cc" => {
  487. inherit_from => [ "hpux-common", asm("parisc20_64_asm") ],
  488. CC => "cc",
  489. CFLAGS => picker(debug => "+O0 +d -g",
  490. release => "+O3") ,
  491. cflags => "+DD64 +Optrs_strongly_typed -Ae +ESlit",
  492. cppflags => threads("-D_REENTRANT") ,
  493. lib_cppflags => add("-DMD32_XARRAY"),
  494. ex_libs => add("-ldl", threads("-lpthread")),
  495. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  496. shared_cflag => "+Z",
  497. shared_ldflag => add_before("-b"),
  498. shared_extension => ".sl.\$(SHLIB_VERSION_NUMBER)",
  499. multilib => "/pa20_64",
  500. },
  501. # HP/UX IA-64 targets
  502. "hpux-ia64-cc" => {
  503. inherit_from => [ "hpux-common", asm("ia64_asm") ],
  504. CC => "cc",
  505. CFLAGS => picker(debug => "+O0 +d -g",
  506. release => "+O2"),
  507. cflags => "-Ae +DD32 +Olit=all -z",
  508. cppflags => add(threads("-D_REENTRANT")),
  509. ex_libs => add("-ldl", threads("-lpthread")),
  510. bn_ops => "SIXTY_FOUR_BIT",
  511. shared_cflag => "+Z",
  512. shared_ldflag => add_before("-b"),
  513. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  514. multilib => "/hpux32",
  515. },
  516. "hpux64-ia64-cc" => {
  517. inherit_from => [ "hpux-common", asm("ia64_asm") ],
  518. CC => "cc",
  519. CFLAGS => picker(debug => "+O0 +d -g",
  520. release => "+O3"),
  521. cflags => "-Ae +DD64 +Olit=all -z",
  522. cppflags => threads("-D_REENTRANT"),
  523. ex_libs => add("-ldl", threads("-lpthread")),
  524. bn_ops => "SIXTY_FOUR_BIT_LONG",
  525. shared_cflag => "+Z",
  526. shared_ldflag => add_before("-b"),
  527. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  528. multilib => "/hpux64",
  529. },
  530. # GCC builds...
  531. "hpux-ia64-gcc" => {
  532. inherit_from => [ "hpux-common", asm("ia64_asm") ],
  533. CC => "gcc",
  534. CFLAGS => picker(debug => "-O0 -g",
  535. release => "-O3"),
  536. cflags => add(threads("-pthread")),
  537. ex_libs => add("-ldl", threads("-pthread")),
  538. bn_ops => "SIXTY_FOUR_BIT",
  539. shared_cflag => "-fpic",
  540. shared_ldflag => add_before("-shared"),
  541. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  542. multilib => "/hpux32",
  543. },
  544. "hpux64-ia64-gcc" => {
  545. inherit_from => [ "hpux-common", asm("ia64_asm") ],
  546. CC => "gcc",
  547. CFLAGS => picker(debug => "-O0 -g",
  548. release => "-O3"),
  549. cflags => combine("-mlp64", threads("-pthread")),
  550. ex_libs => add("-ldl", threads("-pthread")),
  551. bn_ops => "SIXTY_FOUR_BIT_LONG",
  552. shared_cflag => "-fpic",
  553. shared_ldflag => add_before("-shared"),
  554. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  555. multilib => "/hpux64",
  556. },
  557. #### HP MPE/iX http://jazz.external.hp.com/src/openssl/
  558. "MPE/iX-gcc" => {
  559. inherit_from => [ "BASE_unix" ],
  560. CC => "gcc",
  561. CFLAGS => "-O3",
  562. cppflags => "-D_POSIX_SOURCE -D_SOCKET_SOURCE",
  563. includes => [ "/SYSLOG/PUB" ],
  564. lib_cppflags => "-DBN_DIV2W",
  565. sys_id => "MPE",
  566. lflags => add("-L/SYSLOG/PUB"),
  567. ex_libs => add("-lsyslog -lsocket -lcurses"),
  568. thread_scheme => "(unknown)",
  569. bn_ops => "BN_LLONG",
  570. },
  571. #### DEC Alpha Tru64 targets. Tru64 is marketing name for OSF/1 version 4
  572. #### and forward. In reality 'uname -s' still returns "OSF1". Originally
  573. #### there were even osf1-* configs targeting prior versions provided,
  574. #### but not anymore...
  575. "tru64-alpha-gcc" => {
  576. inherit_from => [ "BASE_unix", asm("alpha_asm") ],
  577. CC => "gcc",
  578. CFLAGS => "-O3",
  579. cflags => add("-std=c9x", threads("-pthread")),
  580. cppflags => "-D_XOPEN_SOURCE=500 -D_OSF_SOURCE",
  581. ex_libs => add("-lrt", threads("-pthread")), # for mlock(2)
  582. bn_ops => "SIXTY_FOUR_BIT_LONG",
  583. thread_scheme => "pthreads",
  584. dso_scheme => "dlfcn",
  585. shared_target => "alpha-osf1-shared",
  586. shared_extension => ".so",
  587. },
  588. "tru64-alpha-cc" => {
  589. inherit_from => [ "BASE_unix", asm("alpha_asm") ],
  590. CC => "cc",
  591. CFLAGS => "-tune host -fast",
  592. cflags => add("-std1 -readonly_strings",
  593. threads("-pthread")),
  594. cppflags => "-D_XOPEN_SOURCE=500 -D_OSF_SOURCE",
  595. ex_libs => add("-lrt", threads("-pthread")), # for mlock(2)
  596. bn_ops => "SIXTY_FOUR_BIT_LONG",
  597. thread_scheme => "pthreads",
  598. dso_scheme => "dlfcn",
  599. shared_target => "alpha-osf1-shared",
  600. shared_ldflag => "-msym",
  601. shared_extension => ".so",
  602. },
  603. ####
  604. #### Variety of LINUX:-)
  605. ####
  606. # *-generic* is endian-neutral target, but ./config is free to
  607. # throw in -D[BL]_ENDIAN, whichever appropriate...
  608. "linux-generic32" => {
  609. inherit_from => [ "BASE_unix" ],
  610. CC => "gcc",
  611. CXX => "g++",
  612. CFLAGS => picker(default => "-Wall",
  613. debug => "-O0 -g",
  614. release => "-O3"),
  615. CXXFLAGS => picker(default => "-Wall",
  616. debug => "-O0 -g",
  617. release => "-O3"),
  618. cflags => threads("-pthread"),
  619. cxxflags => combine("-std=c++11", threads("-pthread")),
  620. lib_cppflags => "-DOPENSSL_USE_NODELETE",
  621. ex_libs => add("-ldl", threads("-pthread")),
  622. bn_ops => "BN_LLONG RC4_CHAR",
  623. thread_scheme => "pthreads",
  624. dso_scheme => "dlfcn",
  625. shared_target => "linux-shared",
  626. shared_cflag => "-fPIC",
  627. shared_ldflag => sub { $disabled{pinshared} ? () : "-Wl,-znodelete" },
  628. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  629. enable => [ "afalgeng" ],
  630. },
  631. "linux-generic64" => {
  632. inherit_from => [ "linux-generic32" ],
  633. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  634. },
  635. "linux-ppc" => {
  636. inherit_from => [ "linux-generic32", asm("ppc32_asm") ],
  637. perlasm_scheme => "linux32",
  638. lib_cppflags => add("-DB_ENDIAN"),
  639. },
  640. "linux-ppc64" => {
  641. inherit_from => [ "linux-generic64", asm("ppc64_asm") ],
  642. cflags => add("-m64"),
  643. cxxflags => add("-m64"),
  644. lib_cppflags => add("-DB_ENDIAN"),
  645. perlasm_scheme => "linux64",
  646. multilib => "64",
  647. },
  648. "linux-ppc64le" => {
  649. inherit_from => [ "linux-generic64", asm("ppc64_asm") ],
  650. cflags => add("-m64"),
  651. cxxflags => add("-m64"),
  652. lib_cppflags => add("-DL_ENDIAN"),
  653. perlasm_scheme => "linux64le",
  654. },
  655. "linux-armv4" => {
  656. ################################################################
  657. # Note that -march is not among compiler options in linux-armv4
  658. # target description. Not specifying one is intentional to give
  659. # you choice to:
  660. #
  661. # a) rely on your compiler default by not specifying one;
  662. # b) specify your target platform explicitly for optimal
  663. # performance, e.g. -march=armv6 or -march=armv7-a;
  664. # c) build "universal" binary that targets *range* of platforms
  665. # by specifying minimum and maximum supported architecture;
  666. #
  667. # As for c) option. It actually makes no sense to specify
  668. # maximum to be less than ARMv7, because it's the least
  669. # requirement for run-time switch between platform-specific
  670. # code paths. And without run-time switch performance would be
  671. # equivalent to one for minimum. Secondly, there are some
  672. # natural limitations that you'd have to accept and respect.
  673. # Most notably you can *not* build "universal" binary for
  674. # big-endian platform. This is because ARMv7 processor always
  675. # picks instructions in little-endian order. Another similar
  676. # limitation is that -mthumb can't "cross" -march=armv6t2
  677. # boundary, because that's where it became Thumb-2. Well, this
  678. # limitation is a bit artificial, because it's not really
  679. # impossible, but it's deemed too tricky to support. And of
  680. # course you have to be sure that your binutils are actually
  681. # up to the task of handling maximum target platform. With all
  682. # this in mind here is an example of how to configure
  683. # "universal" build:
  684. #
  685. # ./Configure linux-armv4 -march=armv6 -D__ARM_MAX_ARCH__=8
  686. #
  687. inherit_from => [ "linux-generic32", asm("armv4_asm") ],
  688. perlasm_scheme => "linux32",
  689. },
  690. "linux-aarch64" => {
  691. inherit_from => [ "linux-generic64", asm("aarch64_asm") ],
  692. perlasm_scheme => "linux64",
  693. },
  694. "linux-arm64ilp32" => { # https://wiki.linaro.org/Platform/arm64-ilp32
  695. inherit_from => [ "linux-generic32", asm("aarch64_asm") ],
  696. cflags => add("-mabi=ilp32"),
  697. cxxflags => add("-mabi=ilp32"),
  698. bn_ops => "SIXTY_FOUR_BIT RC4_CHAR",
  699. perlasm_scheme => "linux64",
  700. },
  701. "linux-mips32" => {
  702. # Configure script adds minimally required -march for assembly
  703. # support, if no -march was specified at command line.
  704. inherit_from => [ "linux-generic32", asm("mips32_asm") ],
  705. cflags => add("-mabi=32"),
  706. cxxflags => add("-mabi=32"),
  707. perlasm_scheme => "o32",
  708. },
  709. # mips32 and mips64 below refer to contemporary MIPS Architecture
  710. # specifications, MIPS32 and MIPS64, rather than to kernel bitness.
  711. "linux-mips64" => {
  712. inherit_from => [ "linux-generic32", asm("mips64_asm") ],
  713. cflags => add("-mabi=n32"),
  714. cxxflags => add("-mabi=n32"),
  715. bn_ops => "RC4_CHAR",
  716. perlasm_scheme => "n32",
  717. multilib => "32",
  718. },
  719. "linux64-mips64" => {
  720. inherit_from => [ "linux-generic64", asm("mips64_asm") ],
  721. cflags => add("-mabi=64"),
  722. cxxflags => add("-mabi=64"),
  723. perlasm_scheme => "64",
  724. multilib => "64",
  725. },
  726. # riscv64 below refers to contemporary RISCV Architecture
  727. # specifications,
  728. "linux64-riscv64" => {
  729. inherit_from => [ "linux-generic64"],
  730. perlasm_scheme => "linux64",
  731. },
  732. #### IA-32 targets...
  733. #### These two targets are a bit aged and are to be used on older Linux
  734. #### machines where gcc doesn't understand -m32 and -m64
  735. "linux-elf" => {
  736. inherit_from => [ "linux-generic32", asm("x86_elf_asm") ],
  737. CFLAGS => add(picker(release => "-fomit-frame-pointer")),
  738. lib_cppflags => add("-DL_ENDIAN"),
  739. bn_ops => "BN_LLONG",
  740. },
  741. "linux-aout" => {
  742. inherit_from => [ "BASE_unix", asm("x86_asm") ],
  743. CC => "gcc",
  744. CFLAGS => add(picker(default => "-Wall",
  745. debug => "-O0 -g",
  746. release => "-O3 -fomit-frame-pointer")),
  747. lib_cppflags => add("-DL_ENDIAN"),
  748. bn_ops => "BN_LLONG",
  749. thread_scheme => "(unknown)",
  750. perlasm_scheme => "a.out",
  751. },
  752. #### X86 / X86_64 targets
  753. "linux-x86" => {
  754. inherit_from => [ "linux-generic32", asm("x86_asm") ],
  755. CFLAGS => add(picker(release => "-fomit-frame-pointer")),
  756. cflags => add("-m32"),
  757. cxxflags => add("-m32"),
  758. lib_cppflags => add("-DL_ENDIAN"),
  759. bn_ops => "BN_LLONG",
  760. perlasm_scheme => "elf",
  761. },
  762. "linux-x86-clang" => {
  763. inherit_from => [ "linux-x86" ],
  764. CC => "clang",
  765. CXX => "clang++",
  766. },
  767. "linux-x86_64" => {
  768. inherit_from => [ "linux-generic64", asm("x86_64_asm") ],
  769. cflags => add("-m64"),
  770. cxxflags => add("-m64"),
  771. lib_cppflags => add("-DL_ENDIAN"),
  772. bn_ops => "SIXTY_FOUR_BIT_LONG",
  773. perlasm_scheme => "elf",
  774. multilib => "64",
  775. },
  776. "linux-x86_64-clang" => {
  777. inherit_from => [ "linux-x86_64" ],
  778. CC => "clang",
  779. CXX => "clang++",
  780. },
  781. "linux-x32" => {
  782. inherit_from => [ "linux-generic32", asm("x86_64_asm") ],
  783. cflags => add("-mx32"),
  784. cxxflags => add("-mx32"),
  785. lib_cppflags => add("-DL_ENDIAN"),
  786. bn_ops => "SIXTY_FOUR_BIT",
  787. perlasm_scheme => "elf32",
  788. multilib => "x32",
  789. },
  790. "linux-ia64" => {
  791. inherit_from => [ "linux-generic64", asm("ia64_asm") ],
  792. bn_ops => "SIXTY_FOUR_BIT_LONG",
  793. },
  794. "linux64-s390x" => {
  795. inherit_from => [ "linux-generic64", asm("s390x_asm") ],
  796. cflags => add("-m64"),
  797. cxxflags => add("-m64"),
  798. lib_cppflags => add("-DB_ENDIAN"),
  799. perlasm_scheme => "64",
  800. multilib => "64",
  801. },
  802. "linux32-s390x" => {
  803. #### So called "highgprs" target for z/Architecture CPUs
  804. # "Highgprs" is kernel feature first implemented in Linux
  805. # 2.6.32, see /proc/cpuinfo. The idea is to preserve most
  806. # significant bits of general purpose registers not only
  807. # upon 32-bit process context switch, but even on
  808. # asynchronous signal delivery to such process. This makes
  809. # it possible to deploy 64-bit instructions even in legacy
  810. # application context and achieve better [or should we say
  811. # adequate] performance. The build is binary compatible with
  812. # linux-generic32, and the idea is to be able to install the
  813. # resulting libcrypto.so alongside generic one, e.g. as
  814. # /lib/highgprs/libcrypto.so.x.y, for ldconfig and run-time
  815. # linker to autodiscover. Unfortunately it doesn't work just
  816. # yet, because of couple of bugs in glibc
  817. # sysdeps/s390/dl-procinfo.c affecting ldconfig and ld.so.1...
  818. #
  819. inherit_from => [ "linux-generic32", asm("s390x_asm") ],
  820. cflags => add("-m31 -Wa,-mzarch"),
  821. cxxflags => add("-m31 -Wa,-mzarch"),
  822. lib_cppflags => add("-DB_ENDIAN"),
  823. bn_asm_src => sub { my $r=join(" ",@_); $r=~s|asm/s390x\.S|bn_asm.c|; $r; },
  824. perlasm_scheme => "31",
  825. multilib => "/highgprs",
  826. },
  827. #### SPARC Linux setups
  828. "linux-sparcv8" => {
  829. inherit_from => [ "linux-generic32", asm("sparcv8_asm") ],
  830. cflags => add("-mcpu=v8"),
  831. cxxflags => add("-mcpu=v8"),
  832. lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
  833. },
  834. "linux-sparcv9" => {
  835. # it's a real mess with -mcpu=ultrasparc option under Linux,
  836. # but -Wa,-Av8plus should do the trick no matter what.
  837. inherit_from => [ "linux-generic32", asm("sparcv9_asm") ],
  838. cflags => add("-m32 -mcpu=ultrasparc -Wa,-Av8plus"),
  839. cxxflags => add("-m32 -mcpu=ultrasparc -Wa,-Av8plus"),
  840. lib_cppflags => add("-DB_ENDIAN -DBN_DIV2W"),
  841. },
  842. "linux64-sparcv9" => {
  843. # GCC 3.1 is a requirement
  844. inherit_from => [ "linux-generic64", asm("sparcv9_asm") ],
  845. cflags => add("-m64 -mcpu=ultrasparc"),
  846. cxxflags => add("-m64 -mcpu=ultrasparc"),
  847. lib_cppflags => add("-DB_ENDIAN"),
  848. bn_ops => "BN_LLONG RC4_CHAR",
  849. multilib => "64",
  850. },
  851. "linux-alpha-gcc" => {
  852. inherit_from => [ "linux-generic64", asm("alpha_asm") ],
  853. lib_cppflags => add("-DL_ENDIAN"),
  854. bn_ops => "SIXTY_FOUR_BIT_LONG",
  855. },
  856. "linux-c64xplus" => {
  857. inherit_from => [ "BASE_unix" ],
  858. # TI_CGT_C6000_7.3.x is a requirement
  859. CC => "cl6x",
  860. CFLAGS => "-o2 -ox -ms",
  861. cflags => "--linux -ea=.s -eo=.o -mv6400+ -pden",
  862. cxxflags => "--linux -ea=.s -eo=.o -mv6400+ -pden",
  863. cppflags => combine("-DOPENSSL_SMALL_FOOTPRINT",
  864. threads("-D_REENTRANT")),
  865. bn_ops => "BN_LLONG",
  866. cpuid_asm_src => "c64xpluscpuid.s",
  867. bn_asm_src => "asm/bn-c64xplus.asm c64xplus-gf2m.s",
  868. aes_asm_src => "aes-c64xplus.s aes_cbc.c aes-ctr.fake",
  869. sha1_asm_src => "sha1-c64xplus.s sha256-c64xplus.s sha512-c64xplus.s",
  870. rc4_asm_src => "rc4-c64xplus.s",
  871. modes_asm_src => "ghash-c64xplus.s",
  872. chacha_asm_src => "chacha-c64xplus.s",
  873. poly1305_asm_src => "poly1305-c64xplus.s",
  874. thread_scheme => "pthreads",
  875. perlasm_scheme => "void",
  876. dso_scheme => "dlfcn",
  877. shared_target => "linux-shared",
  878. shared_cflag => "--pic",
  879. shared_ldflag => add("-z --sysv --shared"),
  880. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  881. ranlib => "true",
  882. },
  883. #### *BSD
  884. "BSD-generic32" => {
  885. # As for thread cflag. Idea is to maintain "collective" set of
  886. # flags, which would cover all BSD flavors. -pthread applies
  887. # to them all, but is treated differently. OpenBSD expands is
  888. # as -D_POSIX_THREAD -lc_r, which is sufficient. FreeBSD 4.x
  889. # expands it as -lc_r, which has to be accompanied by explicit
  890. # -D_THREAD_SAFE and sometimes -D_REENTRANT. FreeBSD 5.x
  891. # expands it as -lc_r, which seems to be sufficient?
  892. inherit_from => [ "BASE_unix" ],
  893. CC => "cc",
  894. CFLAGS => picker(default => "-Wall",
  895. debug => "-O0 -g",
  896. release => "-O3"),
  897. cflags => threads("-pthread"),
  898. cppflags => threads("-D_THREAD_SAFE -D_REENTRANT"),
  899. ex_libs => add(threads("-pthread")),
  900. enable => add("devcryptoeng"),
  901. bn_ops => "BN_LLONG",
  902. thread_scheme => "pthreads",
  903. dso_scheme => "dlfcn",
  904. shared_target => "bsd-gcc-shared",
  905. shared_cflag => "-fPIC",
  906. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  907. },
  908. "BSD-generic64" => {
  909. inherit_from => [ "BSD-generic32" ],
  910. bn_ops => "SIXTY_FOUR_BIT_LONG",
  911. },
  912. "BSD-x86" => {
  913. inherit_from => [ "BSD-generic32", asm("x86_asm") ],
  914. CFLAGS => add(picker(release => "-fomit-frame-pointer")),
  915. lib_cppflags => add("-DL_ENDIAN"),
  916. bn_ops => "BN_LLONG",
  917. shared_target => "bsd-shared",
  918. perlasm_scheme => "a.out",
  919. },
  920. "BSD-x86-elf" => {
  921. inherit_from => [ "BSD-x86" ],
  922. perlasm_scheme => "elf",
  923. },
  924. "BSD-sparcv8" => {
  925. inherit_from => [ "BSD-generic32", asm("sparcv8_asm") ],
  926. cflags => add("-mcpu=v8"),
  927. lib_cppflags => add("-DB_ENDIAN"),
  928. },
  929. "BSD-sparc64" => {
  930. # -DMD32_REG_T=int doesn't actually belong in sparc64 target, it
  931. # simply *happens* to work around a compiler bug in gcc 3.3.3,
  932. # triggered by RIPEMD160 code.
  933. inherit_from => [ "BSD-generic64", asm("sparcv9_asm") ],
  934. lib_cppflags => add("-DB_ENDIAN -DMD32_REG_T=int"),
  935. bn_ops => "BN_LLONG",
  936. },
  937. "BSD-ia64" => {
  938. inherit_from => [ "BSD-generic64", asm("ia64_asm") ],
  939. lib_cppflags => add("-DL_ENDIAN"),
  940. bn_ops => "SIXTY_FOUR_BIT_LONG",
  941. },
  942. "BSD-x86_64" => {
  943. inherit_from => [ "BSD-generic64", asm("x86_64_asm") ],
  944. lib_cppflags => add("-DL_ENDIAN"),
  945. bn_ops => "SIXTY_FOUR_BIT_LONG",
  946. perlasm_scheme => "elf",
  947. },
  948. "bsdi-elf-gcc" => {
  949. inherit_from => [ "BASE_unix", asm("x86_elf_asm") ],
  950. CC => "gcc",
  951. CFLAGS => "-fomit-frame-pointer -O3 -Wall",
  952. lib_cppflags => "-DPERL5 -DL_ENDIAN",
  953. ex_libs => add("-ldl"),
  954. bn_ops => "BN_LLONG",
  955. thread_scheme => "(unknown)",
  956. dso_scheme => "dlfcn",
  957. shared_target => "bsd-gcc-shared",
  958. shared_cflag => "-fPIC",
  959. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  960. },
  961. "nextstep" => {
  962. inherit_from => [ "BASE_unix" ],
  963. CC => "cc",
  964. CFLAGS => "-O -Wall",
  965. unistd => "<libc.h>",
  966. bn_ops => "BN_LLONG",
  967. thread_scheme => "(unknown)",
  968. },
  969. "nextstep3.3" => {
  970. inherit_from => [ "BASE_unix" ],
  971. CC => "cc",
  972. CFLAGS => "-O3 -Wall",
  973. unistd => "<libc.h>",
  974. bn_ops => "BN_LLONG",
  975. thread_scheme => "(unknown)",
  976. },
  977. #### SCO/Caldera targets.
  978. #
  979. # Originally we had like unixware-*, unixware-*-pentium, unixware-*-p6, etc.
  980. # Now we only have blended unixware-* as it's the only one used by ./config.
  981. # If you want to optimize for particular microarchitecture, bypass ./config
  982. # and './Configure unixware-7 -Kpentium_pro' or whatever appropriate.
  983. # Note that not all targets include assembler support. Mostly because of
  984. # lack of motivation to support out-of-date platforms with out-of-date
  985. # compiler drivers and assemblers.
  986. #
  987. # UnixWare 2.0x fails destest with -O.
  988. "unixware-2.0" => {
  989. inherit_from => [ "BASE_unix" ],
  990. CC => "cc",
  991. cflags => threads("-Kthread"),
  992. lib_cppflags => "-DFILIO_H -DNO_STRINGS_H",
  993. ex_libs => add("-lsocket -lnsl -lresolv -lx"),
  994. thread_scheme => "uithreads",
  995. },
  996. "unixware-2.1" => {
  997. inherit_from => [ "BASE_unix" ],
  998. CC => "cc",
  999. CFLAGS => "-O",
  1000. cflags => threads("-Kthread"),
  1001. lib_cppflags => "-DFILIO_H",
  1002. ex_libs => add("-lsocket -lnsl -lresolv -lx"),
  1003. thread_scheme => "uithreads",
  1004. },
  1005. "unixware-7" => {
  1006. inherit_from => [ "BASE_unix", asm("x86_elf_asm") ],
  1007. CC => "cc",
  1008. CFLAGS => "-O",
  1009. cflags => combine("-Kalloca", threads("-Kthread")),
  1010. lib_cppflags => "-DFILIO_H",
  1011. ex_libs => add("-lsocket -lnsl"),
  1012. thread_scheme => "uithreads",
  1013. bn_ops => "BN_LLONG",
  1014. perlasm_scheme => "elf-1",
  1015. dso_scheme => "dlfcn",
  1016. shared_target => "svr5-shared",
  1017. shared_cflag => "-Kpic",
  1018. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1019. },
  1020. "unixware-7-gcc" => {
  1021. inherit_from => [ "BASE_unix", asm("x86_elf_asm") ],
  1022. CC => "gcc",
  1023. CFLAGS => "-O3 -fomit-frame-pointer -Wall",
  1024. cppflags => add(threads("-D_REENTRANT")),
  1025. lib_cppflags => add("-DL_ENDIAN -DFILIO_H"),
  1026. ex_libs => add("-lsocket -lnsl"),
  1027. bn_ops => "BN_LLONG",
  1028. thread_scheme => "pthreads",
  1029. perlasm_scheme => "elf-1",
  1030. dso_scheme => "dlfcn",
  1031. shared_target => "gnu-shared",
  1032. shared_cflag => "-fPIC",
  1033. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1034. },
  1035. # SCO 5 - Ben Laurie says the -O breaks the SCO cc.
  1036. "sco5-cc" => {
  1037. inherit_from => [ "BASE_unix", asm("x86_elf_asm") ],
  1038. cc => "cc",
  1039. cflags => "-belf",
  1040. ex_libs => add("-lsocket -lnsl"),
  1041. thread_scheme => "(unknown)",
  1042. perlasm_scheme => "elf-1",
  1043. dso_scheme => "dlfcn",
  1044. shared_target => "svr3-shared",
  1045. shared_cflag => "-Kpic",
  1046. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1047. },
  1048. "sco5-gcc" => {
  1049. inherit_from => [ "BASE_unix", asm("x86_elf_asm") ],
  1050. cc => "gcc",
  1051. cflags => "-O3 -fomit-frame-pointer",
  1052. ex_libs => add("-lsocket -lnsl"),
  1053. bn_ops => "BN_LLONG",
  1054. thread_scheme => "(unknown)",
  1055. perlasm_scheme => "elf-1",
  1056. dso_scheme => "dlfcn",
  1057. shared_target => "svr3-shared",
  1058. shared_cflag => "-fPIC",
  1059. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1060. },
  1061. #### IBM's AIX.
  1062. # Below targets assume AIX >=5. Caveat lector. If you are accustomed
  1063. # to control compilation "bitness" by setting $OBJECT_MODE environment
  1064. # variable, then you should know that in OpenSSL case it's considered
  1065. # only in ./config. Once configured, build procedure remains "deaf" to
  1066. # current value of $OBJECT_MODE.
  1067. "aix-common" => {
  1068. inherit_from => [ "BASE_unix" ],
  1069. template => 1,
  1070. sys_id => "AIX",
  1071. lib_cppflags => "-DB_ENDIAN",
  1072. lflags => "-Wl,-bsvr4",
  1073. thread_scheme => "pthreads",
  1074. dso_scheme => "dlfcn",
  1075. shared_target => "self",
  1076. module_ldflags => "-Wl,-G,-bsymbolic,-bnoentry",
  1077. shared_ldflag => "-Wl,-G,-bsymbolic,-bnoentry",
  1078. shared_defflag => "-Wl,-bE:",
  1079. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1080. dso_extension => ".so",
  1081. lib_extension => shared("_a.a"),
  1082. shared_extension_simple => shared(".a"),
  1083. },
  1084. "aix-gcc" => {
  1085. inherit_from => [ "aix-common", asm("ppc32_asm") ],
  1086. CC => "gcc",
  1087. CFLAGS => picker(debug => "-O0 -g",
  1088. release => "-O"),
  1089. cflags => add(threads("-pthread")),
  1090. ex_libs => add(threads("-pthread")),
  1091. bn_ops => "BN_LLONG RC4_CHAR",
  1092. perlasm_scheme => "aix32",
  1093. shared_ldflag => add_before("-shared -static-libgcc"),
  1094. AR => add("-X32"),
  1095. RANLIB => add("-X32"),
  1096. },
  1097. "aix64-gcc" => {
  1098. inherit_from => [ "aix-common", asm("ppc64_asm") ],
  1099. CC => "gcc",
  1100. CFLAGS => picker(debug => "-O0 -g",
  1101. release => "-O"),
  1102. cflags => combine("-maix64", threads("-pthread")),
  1103. ex_libs => add(threads("-pthread")),
  1104. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  1105. perlasm_scheme => "aix64",
  1106. shared_ldflag => add_before("-shared -static-libgcc"),
  1107. shared_extension => "64.so.\$(SHLIB_VERSION_NUMBER)",
  1108. AR => add("-X64"),
  1109. RANLIB => add("-X64"),
  1110. },
  1111. "aix-cc" => {
  1112. inherit_from => [ "aix-common", asm("ppc32_asm") ],
  1113. CC => "cc",
  1114. CFLAGS => picker(debug => "-O0 -g",
  1115. release => "-O"),
  1116. cflags => combine("-q32 -qmaxmem=16384 -qro -qroconst",
  1117. threads("-qthreaded")),
  1118. cppflags => threads("-D_THREAD_SAFE"),
  1119. ex_libs => add(threads("-lpthreads")),
  1120. bn_ops => "BN_LLONG RC4_CHAR",
  1121. perlasm_scheme => "aix32",
  1122. shared_cflag => "-qpic",
  1123. AR => add("-X32"),
  1124. RANLIB => add("-X32"),
  1125. },
  1126. "aix64-cc" => {
  1127. inherit_from => [ "aix-common", asm("ppc64_asm") ],
  1128. CC => "cc",
  1129. CFLAGS => picker(debug => "-O0 -g",
  1130. release => "-O"),
  1131. cflags => combine("-q64 -qmaxmem=16384 -qro -qroconst",
  1132. threads("-qthreaded")),
  1133. cppflags => threads("-D_THREAD_SAFE"),
  1134. ex_libs => add(threads("-lpthreads")),
  1135. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  1136. perlasm_scheme => "aix64",
  1137. dso_scheme => "dlfcn",
  1138. shared_cflag => "-qpic",
  1139. shared_extension => "64.so.\$(SHLIB_VERSION_NUMBER)",
  1140. AR => add("-X64"),
  1141. RANLIB => add("-X64"),
  1142. },
  1143. # SIEMENS BS2000/OSD: an EBCDIC-based mainframe
  1144. "BS2000-OSD" => {
  1145. inherit_from => [ "BASE_unix" ],
  1146. CC => "c89",
  1147. CFLAGS => "-O",
  1148. cflags => "-XLLML -XLLMK -XL",
  1149. cppflags => "-DCHARSET_EBCDIC",
  1150. lib_cppflags => "-DB_ENDIAN",
  1151. ex_libs => add("-lsocket -lnsl"),
  1152. bn_ops => "THIRTY_TWO_BIT RC4_CHAR",
  1153. thread_scheme => "(unknown)",
  1154. },
  1155. #### Visual C targets
  1156. #
  1157. # Win64 targets, WIN64I denotes IA-64/Itanium and WIN64A - AMD64
  1158. #
  1159. # Note about /wd4090, disable warning C4090. This warning returns false
  1160. # positives in some situations. Disabling it altogether masks both
  1161. # legitimate and false cases, but as we compile on multiple platforms,
  1162. # we rely on other compilers to catch legitimate cases.
  1163. #
  1164. # Also note that we force threads no matter what. Configuring "no-threads"
  1165. # is ignored.
  1166. #
  1167. # UNICODE is defined in VC-common and applies to all targets. It used to
  1168. # be an opt-in option for VC-WIN32, but not anymore. The original reason
  1169. # was because ANSI API was *native* system interface for no longer
  1170. # supported Windows 9x. Keep in mind that UNICODE only affects how
  1171. # OpenSSL libraries interact with underlying OS, it doesn't affect API
  1172. # that OpenSSL presents to application.
  1173. "VC-common" => {
  1174. inherit_from => [ "BASE_Windows" ],
  1175. template => 1,
  1176. CC => "cl",
  1177. CPP => '$(CC) /EP /C',
  1178. CFLAGS => "/W3 /wd4090 /nologo",
  1179. LDFLAGS => add("/debug"),
  1180. coutflag => "/Fo",
  1181. defines => add("OPENSSL_SYS_WIN32", "WIN32_LEAN_AND_MEAN",
  1182. "UNICODE", "_UNICODE",
  1183. "_CRT_SECURE_NO_DEPRECATE",
  1184. "_WINSOCK_DEPRECATED_NO_WARNINGS"),
  1185. lib_cflags => add("/Zi /Fdossl_static.pdb"),
  1186. lib_defines => add("L_ENDIAN"),
  1187. dso_cflags => "/Zi /Fddso.pdb",
  1188. bin_cflags => "/Zi /Fdapp.pdb",
  1189. shared_ldflag => "/dll",
  1190. shared_target => "win-shared", # meaningless except it gives Configure a hint
  1191. thread_scheme => "winthreads",
  1192. dso_scheme => "win32",
  1193. apps_aux_src => add("win32_init.c"),
  1194. bn_ops => "EXPORT_VAR_AS_FN",
  1195. # additional parameter to build_scheme denotes install-path "flavour"
  1196. build_scheme => add("VC-common", { separator => undef }),
  1197. },
  1198. "VC-noCE-common" => {
  1199. inherit_from => [ "VC-common" ],
  1200. template => 1,
  1201. CFLAGS => add(picker(debug => '/Od',
  1202. release => '/O2')),
  1203. cflags => add(picker(default => '/Gs0 /GF /Gy',
  1204. debug =>
  1205. sub {
  1206. ($disabled{shared} ? "" : "/MDd");
  1207. },
  1208. release =>
  1209. sub {
  1210. ($disabled{shared} ? "" : "/MD");
  1211. })),
  1212. defines => add(picker(default => [], # works as type cast
  1213. debug => [ "DEBUG", "_DEBUG" ])),
  1214. lib_cflags => add(sub { $disabled{shared} ? "/MT /Zl" : () }),
  1215. # Following might/should appears controversial, i.e. defining
  1216. # /MDd without evaluating $disabled{shared}. It works in
  1217. # non-shared build because static library is compiled with /Zl
  1218. # and bares no reference to specific RTL. And it works in
  1219. # shared build because multiple /MDd options are not prohibited.
  1220. # But why /MDd in static build? Well, basically this is just a
  1221. # reference point, which allows to catch eventual errors that
  1222. # would prevent those who want to wrap OpenSSL into own .DLL.
  1223. # Why not /MD in release build then? Well, some are likely to
  1224. # prefer [non-debug] openssl.exe to be free from Micorosoft RTL
  1225. # redistributable.
  1226. bin_cflags => add(picker(debug => "/MDd",
  1227. release => sub { $disabled{shared} ? "/MT" : () },
  1228. )),
  1229. bin_lflags => add("/subsystem:console /opt:ref"),
  1230. ex_libs => add(sub {
  1231. my @ex_libs = ();
  1232. push @ex_libs, 'ws2_32.lib' unless $disabled{sock};
  1233. push @ex_libs, 'gdi32.lib advapi32.lib crypt32.lib user32.lib';
  1234. return join(" ", @ex_libs);
  1235. }),
  1236. },
  1237. "VC-WIN64-common" => {
  1238. inherit_from => [ "VC-noCE-common" ],
  1239. template => 1,
  1240. ex_libs => add(sub {
  1241. my @ex_libs = ();
  1242. push @ex_libs, 'bufferoverflowu.lib' if (`cl 2>&1` =~ /14\.00\.4[0-9]{4}\./);
  1243. return join(" ", @_, @ex_libs);
  1244. }),
  1245. bn_ops => add("SIXTY_FOUR_BIT"),
  1246. },
  1247. "VC-WIN64I" => {
  1248. inherit_from => [ "VC-WIN64-common", asm("ia64_asm"),
  1249. sub { $disabled{shared} ? () : "ia64_uplink" } ],
  1250. AS => "ias",
  1251. ASFLAGS => "-d debug",
  1252. asoutflag => "-o ",
  1253. sys_id => "WIN64I",
  1254. bn_asm_src => sub { return undef unless @_;
  1255. my $r=join(" ",@_); $r=~s|bn-ia64.s|bn_asm.c|; $r; },
  1256. perlasm_scheme => "ias",
  1257. multilib => "-ia64",
  1258. },
  1259. "VC-WIN64A" => {
  1260. inherit_from => [ "VC-WIN64-common", asm("x86_64_asm"),
  1261. sub { $disabled{shared} ? () : "x86_64_uplink" } ],
  1262. AS => sub { vc_win64a_info()->{AS} },
  1263. ASFLAGS => sub { vc_win64a_info()->{ASFLAGS} },
  1264. asoutflag => sub { vc_win64a_info()->{asoutflag} },
  1265. asflags => sub { vc_win64a_info()->{asflags} },
  1266. sys_id => "WIN64A",
  1267. bn_asm_src => sub { return undef unless @_;
  1268. my $r=join(" ",@_); $r=~s|asm/x86_64-gcc|bn_asm|; $r; },
  1269. perlasm_scheme => "auto",
  1270. multilib => "-x64",
  1271. },
  1272. "VC-WIN32" => {
  1273. inherit_from => [ "VC-noCE-common", asm("x86_asm"),
  1274. sub { $disabled{shared} ? () : "uplink_common" } ],
  1275. AS => sub { vc_win32_info()->{AS} },
  1276. ASFLAGS => sub { vc_win32_info()->{ASFLAGS} },
  1277. asoutflag => sub { vc_win32_info()->{asoutflag} },
  1278. asflags => sub { vc_win32_info()->{asflags} },
  1279. sys_id => "WIN32",
  1280. bn_ops => add("BN_LLONG"),
  1281. perlasm_scheme => sub { vc_win32_info()->{perlasm_scheme} },
  1282. # "WOW" stands for "Windows on Windows", and "VC-WOW" engages
  1283. # some installation path heuristics in windows-makefile.tmpl...
  1284. build_scheme => add("VC-WOW", { separator => undef }),
  1285. },
  1286. "VC-CE" => {
  1287. inherit_from => [ "VC-common" ],
  1288. CFLAGS => add(picker(debug => "/Od",
  1289. release => "/O1i")),
  1290. CPPDEFINES => picker(debug => [ "DEBUG", "_DEBUG" ]),
  1291. LDFLAGS => add("/nologo /opt:ref"),
  1292. cflags =>
  1293. combine('/GF /Gy',
  1294. sub { vc_wince_info()->{cflags}; },
  1295. sub { `cl 2>&1` =~ /Version ([0-9]+)\./ && $1>=14
  1296. ? ($disabled{shared} ? " /MT" : " /MD")
  1297. : " /MC"; }),
  1298. cppflags => sub { vc_wince_info()->{cppflags}; },
  1299. lib_defines => add("NO_CHMOD", "OPENSSL_SMALL_FOOTPRINT"),
  1300. lib_cppflags => sub { vc_wince_info()->{cppflags}; },
  1301. includes =>
  1302. add(combine(sub { defined(env('WCECOMPAT'))
  1303. ? '$(WCECOMPAT)/include' : (); },
  1304. sub { defined(env('PORTSDK_LIBPATH'))
  1305. ? '$(PORTSDK_LIBPATH)/../../include'
  1306. : (); })),
  1307. lflags => add(combine(sub { vc_wince_info()->{lflags}; },
  1308. sub { defined(env('PORTSDK_LIBPATH'))
  1309. ? "/entry:mainCRTstartup" : (); })),
  1310. sys_id => "WINCE",
  1311. bn_ops => add("BN_LLONG"),
  1312. ex_libs => add(sub {
  1313. my @ex_libs = ();
  1314. push @ex_libs, 'ws2.lib' unless $disabled{sock};
  1315. push @ex_libs, 'crypt32.lib';
  1316. if (defined(env('WCECOMPAT'))) {
  1317. my $x = '$(WCECOMPAT)/lib';
  1318. if (-f "$x/env('TARGETCPU')/wcecompatex.lib") {
  1319. $x .= '/$(TARGETCPU)/wcecompatex.lib';
  1320. } else {
  1321. $x .= '/wcecompatex.lib';
  1322. }
  1323. push @ex_libs, $x;
  1324. }
  1325. push @ex_libs, '$(PORTSDK_LIBPATH)/portlib.lib'
  1326. if (defined(env('PORTSDK_LIBPATH')));
  1327. push @ex_libs, '/nodefaultlib coredll.lib corelibc.lib'
  1328. if (env('TARGETCPU') =~ /^X86|^ARMV4[IT]/);
  1329. return join(" ", @ex_libs);
  1330. }),
  1331. },
  1332. #### MinGW
  1333. "mingw" => {
  1334. inherit_from => [ "BASE_unix", asm("x86_asm"),
  1335. sub { $disabled{shared} ? () : "x86_uplink" } ],
  1336. CC => "gcc",
  1337. CFLAGS => picker(default => "-Wall",
  1338. debug => "-g -O0",
  1339. release => "-O3 -fomit-frame-pointer"),
  1340. cflags => "-m32",
  1341. cppflags => combine("-DUNICODE -D_UNICODE -DWIN32_LEAN_AND_MEAN",
  1342. threads("-D_MT")),
  1343. lib_cppflags => "-DL_ENDIAN",
  1344. sys_id => "MINGW32",
  1345. ex_libs => add("-lws2_32 -lgdi32 -lcrypt32"),
  1346. bn_ops => "BN_LLONG EXPORT_VAR_AS_FN",
  1347. thread_scheme => "winthreads",
  1348. perlasm_scheme => "coff",
  1349. dso_scheme => "win32",
  1350. shared_target => "mingw-shared",
  1351. shared_cppflags => add("_WINDLL"),
  1352. shared_ldflag => "-static-libgcc",
  1353. shared_rcflag => "--target=pe-i386",
  1354. shared_extension => ".dll",
  1355. multilib => "",
  1356. apps_aux_src => add("win32_init.c"),
  1357. # "WOW" stands for "Windows on Windows", and that word engages
  1358. # some installation path heuristics in unix-Makefile.tmpl...
  1359. build_scheme => add("WOW", { separator => undef }),
  1360. },
  1361. "mingw64" => {
  1362. # As for OPENSSL_USE_APPLINK. Applink makes it possible to use
  1363. # .dll compiled with one compiler with application compiled with
  1364. # another compiler. It's possible to engage Applink support in
  1365. # mingw64 build, but it's not done, because till mingw64
  1366. # supports structured exception handling, one can't seriously
  1367. # consider its binaries for using with non-mingw64 run-time
  1368. # environment. And as mingw64 is always consistent with itself,
  1369. # Applink is never engaged and can as well be omitted.
  1370. inherit_from => [ "BASE_unix", asm("x86_64_asm") ],
  1371. CC => "gcc",
  1372. CFLAGS => picker(default => "-Wall",
  1373. debug => "-g -O0",
  1374. release => "-O3"),
  1375. cflags => "-m64",
  1376. cppflags => combine("-DUNICODE -D_UNICODE -DWIN32_LEAN_AND_MEAN",
  1377. threads("-D_MT")),
  1378. lib_cppflags => "-DL_ENDIAN",
  1379. sys_id => "MINGW64",
  1380. ex_libs => add("-lws2_32 -lgdi32 -lcrypt32"),
  1381. bn_ops => "SIXTY_FOUR_BIT EXPORT_VAR_AS_FN",
  1382. thread_scheme => "winthreads",
  1383. perlasm_scheme => "mingw64",
  1384. dso_scheme => "win32",
  1385. shared_target => "mingw-shared",
  1386. shared_cppflags => add("_WINDLL"),
  1387. shared_ldflag => "-static-libgcc",
  1388. shared_rcflag => "--target=pe-x86-64",
  1389. shared_extension => ".dll",
  1390. multilib => "64",
  1391. apps_aux_src => add("win32_init.c"),
  1392. },
  1393. #### UEFI
  1394. "UEFI" => {
  1395. inherit_from => [ "BASE_unix" ],
  1396. CC => "cc",
  1397. CFLAGS => "-O",
  1398. lib_cppflags => "-DL_ENDIAN",
  1399. sys_id => "UEFI",
  1400. },
  1401. #### UWIN
  1402. "UWIN" => {
  1403. inherit_from => [ "BASE_unix" ],
  1404. CC => "cc",
  1405. CFLAGS => "-O -Wall",
  1406. lib_cppflags => "-DTERMIOS -DL_ENDIAN",
  1407. sys_id => "UWIN",
  1408. bn_ops => "BN_LLONG",
  1409. dso_scheme => "win32",
  1410. },
  1411. #### Cygwin
  1412. "Cygwin-x86" => {
  1413. inherit_from => [ "BASE_unix", asm("x86_asm") ],
  1414. CC => "gcc",
  1415. CFLAGS => picker(default => "-Wall",
  1416. debug => "-g -O0",
  1417. release => "-O3 -fomit-frame-pointer"),
  1418. lib_cppflags => "-DTERMIOS -DL_ENDIAN",
  1419. sys_id => "CYGWIN",
  1420. bn_ops => "BN_LLONG",
  1421. thread_scheme => "pthread",
  1422. perlasm_scheme => "coff",
  1423. dso_scheme => "dlfcn",
  1424. shared_target => "cygwin-shared",
  1425. shared_cppflags => "-D_WINDLL",
  1426. shared_extension => ".dll",
  1427. },
  1428. "Cygwin-x86_64" => {
  1429. inherit_from => [ "BASE_unix", asm("x86_64_asm") ],
  1430. CC => "gcc",
  1431. CFLAGS => picker(default => "-Wall",
  1432. debug => "-g -O0",
  1433. release => "-O3"),
  1434. lib_cppflags => "-DTERMIOS -DL_ENDIAN",
  1435. sys_id => "CYGWIN",
  1436. bn_ops => "SIXTY_FOUR_BIT_LONG",
  1437. thread_scheme => "pthread",
  1438. perlasm_scheme => "mingw64",
  1439. dso_scheme => "dlfcn",
  1440. shared_target => "cygwin-shared",
  1441. shared_cppflags => "-D_WINDLL",
  1442. shared_extension => ".dll",
  1443. },
  1444. # Backward compatibility for those using this target
  1445. "Cygwin" => {
  1446. inherit_from => [ "Cygwin-x86" ]
  1447. },
  1448. # In case someone constructs the Cygwin target name themself
  1449. "Cygwin-i386" => {
  1450. inherit_from => [ "Cygwin-x86" ]
  1451. },
  1452. "Cygwin-i486" => {
  1453. inherit_from => [ "Cygwin-x86" ]
  1454. },
  1455. "Cygwin-i586" => {
  1456. inherit_from => [ "Cygwin-x86" ]
  1457. },
  1458. "Cygwin-i686" => {
  1459. inherit_from => [ "Cygwin-x86" ]
  1460. },
  1461. ##### MacOS X (a.k.a. Darwin) setup
  1462. "darwin-common" => {
  1463. inherit_from => [ "BASE_unix" ],
  1464. template => 1,
  1465. CC => "cc",
  1466. CFLAGS => picker(debug => "-g -O0",
  1467. release => "-O3"),
  1468. cppflags => threads("-D_REENTRANT"),
  1469. lflags => "-Wl,-search_paths_first",
  1470. sys_id => "MACOSX",
  1471. bn_ops => "BN_LLONG RC4_CHAR",
  1472. thread_scheme => "pthreads",
  1473. perlasm_scheme => "osx32",
  1474. dso_scheme => "dlfcn",
  1475. ranlib => "ranlib -c",
  1476. shared_target => "darwin-shared",
  1477. shared_cflag => "-fPIC",
  1478. shared_extension => ".\$(SHLIB_VERSION_NUMBER).dylib",
  1479. },
  1480. # Option "freeze" such as -std=gnu9x can't negatively interfere
  1481. # with future defaults for below two targets, because MacOS X
  1482. # for PPC has no future, it was discontinued by vendor in 2009.
  1483. "darwin-ppc-cc" => {
  1484. inherit_from => [ "darwin-common", asm("ppc32_asm") ],
  1485. cflags => add("-arch ppc -std=gnu9x -Wa,-force_cpusubtype_ALL"),
  1486. lib_cppflags => add("-DB_ENDIAN"),
  1487. shared_cflag => add("-fno-common"),
  1488. perlasm_scheme => "osx32",
  1489. },
  1490. "darwin64-ppc-cc" => {
  1491. inherit_from => [ "darwin-common", asm("ppc64_asm") ],
  1492. cflags => add("-arch ppc64 -std=gnu9x"),
  1493. lib_cppflags => add("-DB_ENDIAN"),
  1494. bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR",
  1495. perlasm_scheme => "osx64",
  1496. },
  1497. "darwin-i386-cc" => {
  1498. inherit_from => [ "darwin-common", asm("x86_asm") ],
  1499. CFLAGS => add(picker(release => "-fomit-frame-pointer")),
  1500. cflags => add("-arch i386"),
  1501. lib_cppflags => add("-DL_ENDIAN"),
  1502. bn_ops => "BN_LLONG RC4_INT",
  1503. perlasm_scheme => "macosx",
  1504. },
  1505. "darwin64-x86_64-cc" => {
  1506. inherit_from => [ "darwin-common", asm("x86_64_asm") ],
  1507. CFLAGS => add("-Wall"),
  1508. cflags => add("-arch x86_64"),
  1509. lib_cppflags => add("-DL_ENDIAN"),
  1510. bn_ops => "SIXTY_FOUR_BIT_LONG",
  1511. perlasm_scheme => "macosx",
  1512. },
  1513. "darwin64-arm64-cc" => {
  1514. inherit_from => [ "darwin-common", asm("aarch64_asm") ],
  1515. CFLAGS => add("-Wall"),
  1516. cflags => add("-arch arm64"),
  1517. lib_cppflags => add("-DL_ENDIAN"),
  1518. bn_ops => "SIXTY_FOUR_BIT_LONG",
  1519. perlasm_scheme => "ios64",
  1520. },
  1521. ##### GNU Hurd
  1522. "hurd-x86" => {
  1523. inherit_from => [ "BASE_unix" ],
  1524. inherit_from => [ asm("x86_elf_asm") ],
  1525. CC => "gcc",
  1526. CFLAGS => "-O3 -fomit-frame-pointer -Wall",
  1527. cflags => threads("-pthread"),
  1528. lib_cppflags => "-DL_ENDIAN",
  1529. ex_libs => add("-ldl", threads("-pthread")),
  1530. bn_ops => "BN_LLONG",
  1531. thread_scheme => "pthreads",
  1532. dso_scheme => "dlfcn",
  1533. shared_target => "linux-shared",
  1534. shared_cflag => "-fPIC",
  1535. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1536. },
  1537. ##### VxWorks for various targets
  1538. "vxworks-ppc60x" => {
  1539. inherit_from => [ "BASE_unix" ],
  1540. CC => "ccppc",
  1541. CFLAGS => "-O2 -Wall -fstrength-reduce",
  1542. cflags => "-mrtp -mhard-float -mstrict-align -fno-implicit-fp -fno-builtin -fno-strict-aliasing",
  1543. cppflags => combine("-D_REENTRANT -DPPC32_fp60x -DCPU=PPC32",
  1544. "_DTOOL_FAMILY=gnu -DTOOL=gnu",
  1545. "-I\$(WIND_BASE)/target/usr/h",
  1546. "-I\$(WIND_BASE)/target/usr/h/wrn/coreip"),
  1547. sys_id => "VXWORKS",
  1548. lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/common"),
  1549. ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
  1550. },
  1551. "vxworks-ppcgen" => {
  1552. inherit_from => [ "BASE_unix" ],
  1553. CC => "ccppc",
  1554. CFLAGS => "-O1 -Wall",
  1555. cflags => "-mrtp -msoft-float -mstrict-align -fno-builtin -fno-strict-aliasing",
  1556. cppflags => combine("-D_REENTRANT -DPPC32 -DCPU=PPC32",
  1557. "-DTOOL_FAMILY=gnu -DTOOL=gnu",
  1558. "-I\$(WIND_BASE)/target/usr/h",
  1559. "-I\$(WIND_BASE)/target/usr/h/wrn/coreip"),
  1560. sys_id => "VXWORKS",
  1561. lflags => add("-L \$(WIND_BASE)/target/usr/lib/ppc/PPC32/sfcommon"),
  1562. ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
  1563. },
  1564. "vxworks-ppc405" => {
  1565. inherit_from => [ "BASE_unix" ],
  1566. CC => "ccppc",
  1567. CFLAGS => "-g",
  1568. cflags => "-msoft-float -mlongcall",
  1569. cppflags => combine("-D_REENTRANT -DPPC32 -DCPU=PPC405",
  1570. "-DTOOL_FAMILY=gnu -DTOOL=gnu",
  1571. "-I\$(WIND_BASE)/target/h"),
  1572. sys_id => "VXWORKS",
  1573. lflags => add("-r"),
  1574. },
  1575. "vxworks-ppc750" => {
  1576. inherit_from => [ "BASE_unix" ],
  1577. CC => "ccppc",
  1578. CFLAGS => "-ansi -fvolatile -Wall \$(DEBUG_FLAG)",
  1579. cflags => "-nostdinc -fno-builtin -fno-for-scope -fsigned-char -msoft-float -mlongcall",
  1580. cppflags => combine("-DPPC750 -D_REENTRANT -DCPU=PPC604",
  1581. "-I\$(WIND_BASE)/target/h"),
  1582. sys_id => "VXWORKS",
  1583. lflags => add("-r"),
  1584. },
  1585. "vxworks-ppc750-debug" => {
  1586. inherit_from => [ "BASE_unix" ],
  1587. CC => "ccppc",
  1588. CFLAGS => "-ansi -fvolatile -Wall -g",
  1589. cflags => "-nostdinc -fno-builtin -fno-for-scope -fsigned-char -msoft-float -mlongcall",
  1590. cppflags => combine("-DPPC750 -D_REENTRANT -DCPU=PPC604",
  1591. "-DPEDANTIC -DDEBUG",
  1592. "-I\$(WIND_BASE)/target/h"),
  1593. sys_id => "VXWORKS",
  1594. lflags => add("-r"),
  1595. },
  1596. "vxworks-ppc860" => {
  1597. inherit_from => [ "BASE_unix" ],
  1598. CC => "ccppc",
  1599. cflags => "-nostdinc -msoft-float",
  1600. cppflags => combine("-DCPU=PPC860 -DNO_STRINGS_H",
  1601. "-I\$(WIND_BASE)/target/h"),
  1602. sys_id => "VXWORKS",
  1603. lflags => add("-r"),
  1604. },
  1605. "vxworks-simlinux" => {
  1606. inherit_from => [ "BASE_unix" ],
  1607. CC => "ccpentium",
  1608. cflags => "-B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -fno-builtin -fno-defer-pop",
  1609. cppflags => combine("-D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\"",
  1610. "-DL_ENDIAN -DCPU=SIMLINUX -DNO_STRINGS_H",
  1611. "-DTOOL_FAMILY=gnu -DTOOL=gnu",
  1612. "-DOPENSSL_NO_HW_PADLOCK",
  1613. "-I\$(WIND_BASE)/target/h",
  1614. "-I\$(WIND_BASE)/target/h/wrn/coreip"),
  1615. sys_id => "VXWORKS",
  1616. lflags => add("-r"),
  1617. ranlib => "ranlibpentium",
  1618. },
  1619. "vxworks-mips" => {
  1620. inherit_from => [ "BASE_unix", asm("mips32_asm") ],
  1621. CC => "ccmips",
  1622. CFLAGS => "-O -G 0",
  1623. cflags => "-mrtp -mips2 -B\$(WIND_BASE)/host/\$(WIND_HOST_TYPE)/lib/gcc-lib/ -msoft-float -mno-branch-likely -fno-builtin -fno-defer-pop",
  1624. cppflags => combine("-D_VSB_CONFIG_FILE=\"\$(WIND_BASE)/target/lib/h/config/vsbConfig.h\"",
  1625. "-DCPU=MIPS32 -DNO_STRINGS_H",
  1626. "-DTOOL_FAMILY=gnu -DTOOL=gnu",
  1627. "-DOPENSSL_NO_HW_PADLOCK",
  1628. threads("-D_REENTRANT"),
  1629. "-I\$(WIND_BASE)/target/h",
  1630. "-I\$(WIND_BASE)/target/h/wrn/coreip"),
  1631. sys_id => "VXWORKS",
  1632. lflags => add("-L \$(WIND_BASE)/target/usr/lib/mips/MIPSI32/sfcommon"),
  1633. ex_libs => add("-Wl,--defsym,__wrs_rtp_base=0xe0000000"),
  1634. thread_scheme => "pthreads",
  1635. perlasm_scheme => "o32",
  1636. ranlib => "ranlibmips",
  1637. },
  1638. #### uClinux
  1639. "uClinux-dist" => {
  1640. inherit_from => [ "BASE_unix" ],
  1641. CC => sub { env('CC') },
  1642. cppflags => threads("-D_REENTRANT"),
  1643. ex_libs => add("\$(LDLIBS)"),
  1644. bn_ops => "BN_LLONG",
  1645. thread_scheme => "pthreads",
  1646. dso_scheme => sub { env('LIBSSL_dlfcn') },
  1647. shared_target => "linux-shared",
  1648. shared_cflag => "-fPIC",
  1649. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1650. ranlib => sub { env('RANLIB') },
  1651. },
  1652. "uClinux-dist64" => {
  1653. inherit_from => [ "BASE_unix" ],
  1654. CC => sub { env('CC') },
  1655. cppflags => threads("-D_REENTRANT"),
  1656. ex_libs => add("\$(LDLIBS)"),
  1657. bn_ops => "SIXTY_FOUR_BIT_LONG",
  1658. thread_scheme => "pthreads",
  1659. dso_scheme => sub { env('LIBSSL_dlfcn') },
  1660. shared_target => "linux-shared",
  1661. shared_cflag => "-fPIC",
  1662. shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
  1663. ranlib => sub { env('RANLIB') },
  1664. },
  1665. ##### VMS
  1666. # Most things happen in vms-generic.
  1667. # Note that vms_info extracts the pointer size from the end of
  1668. # the target name, and will assume that anything matching /-p\d+$/
  1669. # indicates the pointer size setting for the desired target.
  1670. "vms-generic" => {
  1671. inherit_from => [ "BASE_VMS" ],
  1672. template => 1,
  1673. CC => "CC/DECC",
  1674. CPP => '$(CC)/PREPROCESS_ONLY=SYS$OUTPUT:',
  1675. CFLAGS =>
  1676. combine(picker(default => "/STANDARD=(ISOC94,RELAXED)/NOLIST/PREFIX=ALL",
  1677. debug => "/NOOPTIMIZE/DEBUG",
  1678. release => "/OPTIMIZE/NODEBUG"),
  1679. sub { my @warnings =
  1680. @{vms_info()->{disable_warns}};
  1681. @warnings
  1682. ? "/WARNINGS=DISABLE=(".join(",",@warnings).")" : (); }),
  1683. lib_defines =>
  1684. add("OPENSSL_USE_NODELETE",
  1685. sub {
  1686. return vms_info()->{def_zlib}
  1687. ? "LIBZ=\"\"\"".vms_info()->{def_zlib}."\"\"\"" : ();
  1688. }),
  1689. lflags => picker(default => "/MAP='F\$PARSE(\".MAP\",\"\$\@\")'",
  1690. debug => "/DEBUG/TRACEBACK",
  1691. release => "/NODEBUG/NOTRACEBACK"),
  1692. lib_cflags => add("/NAMES=(AS_IS,SHORTENED)/EXTERN_MODEL=STRICT_REFDEF"),
  1693. # no_inst_lib_cflags is used instead of lib_cflags by descrip.mms.tmpl
  1694. # for object files belonging to selected internal libraries
  1695. no_inst_lib_cflags => "",
  1696. ex_libs => add(sub { return vms_info()->{zlib} || (); }),
  1697. shared_target => "vms-shared",
  1698. dso_scheme => "vms",
  1699. thread_scheme => "pthreads",
  1700. AS => sub { vms_info()->{AS} },
  1701. ASFLAGS => sub { vms_info()->{ASFLAGS} },
  1702. asoutflag => sub { vms_info()->{asoutflag} },
  1703. asflags => sub { vms_info()->{asflags} },
  1704. perlasm_scheme => sub { vms_info()->{perlasm_scheme} },
  1705. disable => add('pinshared'),
  1706. apps_aux_src => "vms_term_sock.c",
  1707. apps_init_src => "vms_decc_init.c",
  1708. },
  1709. # From HELP CC/POINTER_SIZE:
  1710. #
  1711. # ----------
  1712. # LONG[=ARGV] The compiler assumes 64-bit pointers. If the ARGV option to
  1713. # LONG or 64 is present, the main argument argv will be an
  1714. # array of long pointers instead of an array of short pointers.
  1715. #
  1716. # 64[=ARGV] Same as LONG.
  1717. # ----------
  1718. #
  1719. # We don't want the hassle of dealing with 32-bit pointers with argv, so
  1720. # we force it to have 64-bit pointers, see the added cflags in the -p64
  1721. # config targets below.
  1722. "vms-alpha" => {
  1723. inherit_from => [ "vms-generic" ],
  1724. bn_ops => "SIXTY_FOUR_BIT RC4_INT",
  1725. pointer_size => "",
  1726. },
  1727. "vms-alpha-p32" => {
  1728. inherit_from => [ "vms-alpha" ],
  1729. cflags => add("/POINTER_SIZE=32"),
  1730. pointer_size => "32",
  1731. },
  1732. "vms-alpha-p64" => {
  1733. inherit_from => [ "vms-alpha" ],
  1734. cflags => add("/POINTER_SIZE=64=ARGV"),
  1735. pointer_size => "64",
  1736. },
  1737. "vms-ia64" => {
  1738. inherit_from => [ "vms-generic",
  1739. sub { vms_info()->{AS}
  1740. ? asm("ia64_asm")->() : () } ],
  1741. bn_ops => "SIXTY_FOUR_BIT RC4_INT",
  1742. pointer_size => "",
  1743. modes_asm_src => "", # Because ghash-ia64.s doesn't work on VMS
  1744. },
  1745. "vms-ia64-p32" => {
  1746. inherit_from => [ "vms-ia64" ],
  1747. cflags => add("/POINTER_SIZE=32"),
  1748. pointer_size => "32",
  1749. },
  1750. "vms-ia64-p64" => {
  1751. inherit_from => [ "vms-ia64" ],
  1752. cflags => add("/POINTER_SIZE=64=ARGV"),
  1753. pointer_size => "64",
  1754. },
  1755. );