Richard Levitte | de17db9 | 2015-11-24 14:06:45 +0100 | [diff] [blame] | 1 | #! /usr/bin/env perl |
Jacob Bandes-Storch | f4d8f03 | 2015-11-23 21:44:58 -0800 | [diff] [blame] | 2 | # -*- mode: perl; -*- |
Pauli | d42d0a4 | 2017-02-01 10:10:13 +1000 | [diff] [blame] | 3 | # Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved. |
Rich Salz | ac3d0e1 | 2016-04-20 10:20:59 -0400 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the OpenSSL license (the "License"). You may not use |
| 6 | # this file except in compliance with the License. You can obtain a copy |
| 7 | # in the file LICENSE in the source distribution or at |
| 8 | # https://www.openssl.org/source/license.html |
Richard Levitte | de17db9 | 2015-11-24 14:06:45 +0100 | [diff] [blame] | 9 | |
Ralf S. Engelschall | a4ed553 | 1999-02-25 08:48:52 +0000 | [diff] [blame] | 10 | ## Configure -- OpenSSL source tree configuration script |
Ben Laurie | 1641cb6 | 1998-12-28 17:08:48 +0000 | [diff] [blame] | 11 | |
Richard Levitte | 9f519ad | 2016-03-14 10:03:14 +0100 | [diff] [blame] | 12 | require 5.10.0; |
Ben Laurie | 1641cb6 | 1998-12-28 17:08:48 +0000 | [diff] [blame] | 13 | use strict; |
Rich Salz | 141d732 | 2016-09-06 12:26:38 -0400 | [diff] [blame] | 14 | use Config; |
Rich Salz | f09e7ca | 2015-02-24 17:40:22 -0500 | [diff] [blame] | 15 | use File::Basename; |
Richard Levitte | 85152ca | 2016-02-02 19:47:05 +0100 | [diff] [blame] | 16 | use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/; |
Richard Levitte | dca9938 | 2016-02-08 16:27:15 +0100 | [diff] [blame] | 17 | use File::Path qw/mkpath/; |
Richard Levitte | 23049aa | 2016-05-30 11:20:37 +0200 | [diff] [blame] | 18 | use if $^O ne "VMS", 'File::Glob' => qw/glob/; |
Ben Laurie | 1641cb6 | 1998-12-28 17:08:48 +0000 | [diff] [blame] | 19 | |
Ulf Möller | 22a4f96 | 1999-04-19 13:54:11 +0000 | [diff] [blame] | 20 | # see INSTALL for instructions. |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 21 | |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 22 | my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n"; |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 23 | |
Ulf Möller | 434c5dd | 1999-04-19 15:19:58 +0000 | [diff] [blame] | 24 | # Options: |
Bodo Möller | e5f3045 | 1999-04-29 21:52:08 +0000 | [diff] [blame] | 25 | # |
Rich Salz | f09e7ca | 2015-02-24 17:40:22 -0500 | [diff] [blame] | 26 | # --config add the given configuration file, which will be read after |
| 27 | # any "Configurations*" files that are found in the same |
| 28 | # directory as this script. |
Richard Levitte | d74dfaf | 2016-01-20 18:11:51 +0100 | [diff] [blame] | 29 | # --prefix prefix for the OpenSSL installation, which includes the |
| 30 | # directories bin, lib, include, share/man, share/doc/openssl |
| 31 | # This becomes the value of INSTALLTOP in Makefile |
| 32 | # (Default: /usr/local) |
| 33 | # --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys. |
| 34 | # If it's a relative directory, it will be added on the directory |
| 35 | # given with --prefix. |
| 36 | # This becomes the value of OPENSSLDIR in Makefile and in C. |
| 37 | # (Default: PREFIX/ssl) |
Bodo Möller | e5f3045 | 1999-04-29 21:52:08 +0000 | [diff] [blame] | 38 | # |
Andy Polyakov | cbfb39d | 2006-10-21 13:38:16 +0000 | [diff] [blame] | 39 | # --cross-compile-prefix Add specified prefix to binutils components. |
| 40 | # |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 41 | # --api One of 0.9.8, 1.0.0 or 1.1.0. Do not compile support for |
| 42 | # interfaces deprecated as of the specified OpenSSL version. |
| 43 | # |
Richard Levitte | 5270e70 | 2000-10-26 21:07:28 +0000 | [diff] [blame] | 44 | # no-hw-xxx do not compile support for specific crypto hardware. |
| 45 | # Generic OpenSSL-style methods relating to this support |
| 46 | # are always compiled but return NULL if the hardware |
| 47 | # support isn't compiled. |
| 48 | # no-hw do not compile support for any crypto hardware. |
Bodo Möller | 5f8d5c9 | 1999-04-29 16:10:09 +0000 | [diff] [blame] | 49 | # [no-]threads [don't] try to create a library that is suitable for |
| 50 | # multithreaded applications (default is "threads" if we |
| 51 | # know how to do it) |
Richard Levitte | fcc6a1c | 2000-08-02 04:19:50 +0000 | [diff] [blame] | 52 | # [no-]shared [don't] try to create shared libraries when supported. |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 53 | # [no-]pic [don't] try to build position independent code when supported. |
Richard Levitte | 45b71ab | 2016-02-22 15:57:25 +0100 | [diff] [blame] | 54 | # If disabled, it also disables shared and dynamic-engine. |
Ulf Möller | a723979 | 1999-04-19 14:55:56 +0000 | [diff] [blame] | 55 | # no-asm do not use assembler |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 56 | # no-dso do not compile in any native shared-library methods. This |
| 57 | # will ensure that all methods just return NULL. |
Benjamin Kaduk | 0423f81 | 2016-01-12 18:02:16 -0600 | [diff] [blame] | 58 | # no-egd do not compile support for the entropy-gathering daemon APIs |
Richard Levitte | e452de9 | 2001-07-12 09:11:14 +0000 | [diff] [blame] | 59 | # [no-]zlib [don't] compile support for zlib compression. |
| 60 | # zlib-dynamic Like "zlib", but the zlib library is expected to be a shared |
| 61 | # library and will be loaded in run-time by the OpenSSL library. |
Dr. Stephen Henson | 7e159e0 | 2011-12-25 14:45:15 +0000 | [diff] [blame] | 62 | # sctp include SCTP support |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 63 | # enable-weak-ssl-ciphers |
| 64 | # Enable weak ciphers that are disabled by default. This currently |
| 65 | # only includes RC4 based ciphers. |
Andy Polyakov | 5ae5dc9 | 2016-11-20 21:52:41 +0100 | [diff] [blame] | 66 | # 386 generate 80386 code in assembly modules |
| 67 | # no-sse2 disables IA-32 SSE2 code in assembly modules, the above |
| 68 | # mentioned '386' option implies this one |
Ulf Möller | 79df9d6 | 1999-04-27 03:19:12 +0000 | [diff] [blame] | 69 | # no-<cipher> build without specified algorithm (rsa, idea, rc5, ...) |
Felix Laurie von Massenbach | fce0ba5 | 2014-05-26 17:19:28 +0100 | [diff] [blame] | 70 | # -<xxx> +<xxx> compiler options are passed through |
Andy Polyakov | 047d97a | 2016-09-01 21:36:13 +0200 | [diff] [blame] | 71 | # -static while -static is also a pass-through compiler option (and |
| 72 | # as such is limited to environments where it's actually |
| 73 | # meaningful), it triggers a number configuration options, |
| 74 | # namely no-dso, no-pic, no-shared and no-threads. It is |
| 75 | # argued that the only reason to produce statically linked |
| 76 | # binaries (and in context it means executables linked with |
| 77 | # -static flag, and not just executables linked with static |
| 78 | # libcrypto.a) is to eliminate dependency on specific run-time, |
| 79 | # a.k.a. libc version. The mentioned config options are meant |
| 80 | # to achieve just that. Unfortunately on Linux it's impossible |
| 81 | # to eliminate the dependency completely for openssl executable |
| 82 | # because of getaddrinfo and gethostbyname calls, which can |
| 83 | # invoke dynamically loadable library facility anyway to meet |
| 84 | # the lookup requests. For this reason on Linux statically |
| 85 | # linked openssl executable has rather debugging value than |
| 86 | # production quality. |
Geoff Thorpe | e41c8d6 | 2000-06-01 05:13:52 +0000 | [diff] [blame] | 87 | # |
| 88 | # DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items |
| 89 | # provided to stack calls. Generates unique stack functions for |
| 90 | # each possible stack type. |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 91 | # BN_LLONG use the type 'long long' in crypto/bn/bn.h |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 92 | # RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h |
Andy Polyakov | d0590fe | 2004-07-18 16:19:34 +0000 | [diff] [blame] | 93 | # Following are set automatically by this script |
| 94 | # |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 95 | # MD5_ASM use some extra md5 assembler, |
| 96 | # SHA1_ASM use some extra sha1 assembler, must define L_ENDIAN for x86 |
| 97 | # RMD160_ASM use some extra ripemd160 assembler, |
Andy Polyakov | d0590fe | 2004-07-18 16:19:34 +0000 | [diff] [blame] | 98 | # SHA256_ASM sha256_block is implemented in assembler |
| 99 | # SHA512_ASM sha512_block is implemented in assembler |
Petr Vaněk | 28bd8e9 | 2016-06-21 13:30:54 +0200 | [diff] [blame] | 100 | # AES_ASM AES_[en|de]crypt is implemented in assembler |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 101 | |
Dr. Stephen Henson | 363bd0b | 2009-01-11 15:56:32 +0000 | [diff] [blame] | 102 | # Minimum warning options... any contributions to OpenSSL should at least get |
Felix Laurie von Massenbach | fce0ba5 | 2014-05-26 17:19:28 +0100 | [diff] [blame] | 103 | # past these. |
Dr. Stephen Henson | 363bd0b | 2009-01-11 15:56:32 +0000 | [diff] [blame] | 104 | |
Andy Polyakov | 463a7b8 | 2016-04-06 12:47:35 +0200 | [diff] [blame] | 105 | # DEBUG_UNUSED enables __owur (warn unused result) checks. |
Rich Salz | 7730533 | 2017-01-30 16:13:41 -0500 | [diff] [blame] | 106 | # -DPEDANTIC complements -pedantic and is meant to mask code that |
| 107 | # is not strictly standard-compliant and/or implementation-specific, |
| 108 | # e.g. inline assembly, disregards to alignment requirements, such |
| 109 | # that -pedantic would complain about. Incidentally -DPEDANTIC has |
| 110 | # to be used even in sanitized builds, because sanitizer too is |
| 111 | # supposed to and does take notice of non-standard behaviour. Then |
| 112 | # -pedantic with pre-C9x compiler would also complain about 'long |
| 113 | # long' not being supported. As 64-bit algorithms are common now, |
| 114 | # it grew impossible to resolve this without sizeable additional |
| 115 | # code, so we just tell compiler to be pedantic about everything |
| 116 | # but 'long long' type. |
| 117 | |
Andy Polyakov | 463a7b8 | 2016-04-06 12:47:35 +0200 | [diff] [blame] | 118 | my $gcc_devteam_warn = "-DDEBUG_UNUSED" |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 119 | . " -Wswitch" |
Andy Polyakov | 463a7b8 | 2016-04-06 12:47:35 +0200 | [diff] [blame] | 120 | . " -DPEDANTIC -pedantic -Wno-long-long" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 121 | . " -Wall" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 122 | . " -Wsign-compare" |
| 123 | . " -Wmissing-prototypes" |
| 124 | . " -Wshadow" |
| 125 | . " -Wformat" |
| 126 | . " -Wtype-limits" |
Bernd Edlinger | 01b76c2 | 2017-02-23 14:52:23 +0100 | [diff] [blame] | 127 | . " -Wundef" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 128 | . " -Werror" |
| 129 | ; |
Dr. Stephen Henson | 363bd0b | 2009-01-11 15:56:32 +0000 | [diff] [blame] | 130 | |
Ben Laurie | 190c8c6 | 2015-04-19 14:10:54 +0100 | [diff] [blame] | 131 | # These are used in addition to $gcc_devteam_warn when the compiler is clang. |
| 132 | # TODO(openssl-team): fix problems and investigate if (at least) the |
Ben Laurie | 480405e | 2015-08-02 02:45:44 +0100 | [diff] [blame] | 133 | # following warnings can also be enabled: |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 134 | # -Wcast-align |
Rich Salz | 7730533 | 2017-01-30 16:13:41 -0500 | [diff] [blame] | 135 | # -Wunreachable-code -- no, too ugly/compiler-specific |
Rich Salz | a773b52 | 2016-02-13 22:33:56 -0500 | [diff] [blame] | 136 | # -Wlanguage-extension-token -- no, we use asm() |
| 137 | # -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc |
| 138 | # -Wextended-offsetof -- no, needed in CMS ASN1 code |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 139 | my $clang_devteam_warn = "" |
| 140 | . " -Qunused-arguments" |
| 141 | . " -Wextra" |
Rich Salz | f3b3d7f | 2016-08-30 13:31:18 -0400 | [diff] [blame] | 142 | . " -Wswitch -Wswitch-default" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 143 | . " -Wno-unused-parameter" |
Rich Salz | 7730533 | 2017-01-30 16:13:41 -0500 | [diff] [blame] | 144 | . " -Wno-parentheses-equality" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 145 | . " -Wno-missing-field-initializers" |
| 146 | . " -Wno-language-extension-token" |
| 147 | . " -Wno-extended-offsetof" |
| 148 | . " -Wconditional-uninitialized" |
| 149 | . " -Wincompatible-pointer-types-discards-qualifiers" |
| 150 | . " -Wmissing-variable-declarations" |
Bernd Edlinger | 01b76c2 | 2017-02-23 14:52:23 +0100 | [diff] [blame] | 151 | . " -Wundef" |
Rich Salz | 8bccbce | 2016-02-13 12:27:11 -0500 | [diff] [blame] | 152 | ; |
Emilia Kasper | cb2bc05 | 2015-01-05 13:46:26 +0100 | [diff] [blame] | 153 | |
Richard Levitte | ef8ca6b | 2016-02-14 12:16:52 +0100 | [diff] [blame] | 154 | # This adds backtrace information to the memory leak info. Is only used |
| 155 | # when crypto-mdebug-backtrace is enabled. |
| 156 | my $memleak_devteam_backtrace = "-rdynamic"; |
Richard Levitte | a1d3f3d | 2015-12-02 18:44:26 +0100 | [diff] [blame] | 157 | |
Dr. Stephen Henson | 0c28f27 | 2009-09-09 16:31:32 +0000 | [diff] [blame] | 158 | my $strict_warnings = 0; |
| 159 | |
Andy Polyakov | b7efa56 | 2005-01-24 14:38:14 +0000 | [diff] [blame] | 160 | # As for $BSDthreads. Idea is to maintain "collective" set of flags, |
Felix Laurie von Massenbach | fce0ba5 | 2014-05-26 17:19:28 +0100 | [diff] [blame] | 161 | # which would cover all BSD flavors. -pthread applies to them all, |
Andy Polyakov | b7efa56 | 2005-01-24 14:38:14 +0000 | [diff] [blame] | 162 | # but is treated differently. OpenBSD expands is as -D_POSIX_THREAD |
| 163 | # -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r, |
| 164 | # which has to be accompanied by explicit -D_THREAD_SAFE and |
| 165 | # sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which |
| 166 | # seems to be sufficient? |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 167 | our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT"; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 168 | |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 169 | # |
FdaSilvaYY | f430ba3 | 2016-06-19 19:39:01 +0200 | [diff] [blame] | 170 | # API compatibility name to version number mapping. |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 171 | # |
| 172 | my $maxapi = "1.1.0"; # API for "no-deprecated" builds |
| 173 | my $apitable = { |
| 174 | "1.1.0" => "0x10100000L", |
| 175 | "1.0.0" => "0x10000000L", |
| 176 | "0.9.8" => "0x00908000L", |
| 177 | }; |
| 178 | |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 179 | our %table = (); |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 180 | our %config = (); |
Richard Levitte | 98fdbce | 2016-02-27 11:37:33 +0100 | [diff] [blame] | 181 | our %withargs = (); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 182 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 183 | # Forward declarations ############################################### |
Andy Polyakov | 7ead0c8 | 2015-03-16 22:33:36 +0100 | [diff] [blame] | 184 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 185 | # read_config(filename) |
| 186 | # |
| 187 | # Reads a configuration file and populates %table with the contents |
| 188 | # (which the configuration file places in %targets). |
| 189 | sub read_config; |
Andy Polyakov | 7ead0c8 | 2015-03-16 22:33:36 +0100 | [diff] [blame] | 190 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 191 | # resolve_config(target) |
| 192 | # |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 193 | # Resolves all the late evaluations, inheritances and so on for the |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 194 | # chosen target and any target it inherits from. |
| 195 | sub resolve_config; |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 196 | |
Rich Salz | f09e7ca | 2015-02-24 17:40:22 -0500 | [diff] [blame] | 197 | |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 198 | # Information collection ############################################# |
| 199 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 200 | # Unified build supports separate build dir |
Richard Levitte | ec182ef | 2016-02-09 10:15:13 +0100 | [diff] [blame] | 201 | my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax |
| 202 | my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 203 | my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl")); |
| 204 | |
Richard Levitte | b5293d4 | 2016-05-02 16:50:51 +0200 | [diff] [blame] | 205 | my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR'; |
| 206 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 207 | $config{sourcedir} = abs2rel($srcdir); |
| 208 | $config{builddir} = abs2rel($blddir); |
| 209 | |
Richard Levitte | ee4cdb7 | 2016-08-29 22:11:36 +0200 | [diff] [blame] | 210 | # Collect reconfiguration information if needed |
| 211 | my @argvcopy=@ARGV; |
| 212 | |
| 213 | if (grep /^reconf(igure)?$/, @argvcopy) { |
| 214 | if (-f "./configdata.pm") { |
| 215 | my $file = "./configdata.pm"; |
| 216 | unless (my $return = do $file) { |
| 217 | die "couldn't parse $file: $@" if $@; |
| 218 | die "couldn't do $file: $!" unless defined $return; |
| 219 | die "couldn't run $file" unless $return; |
| 220 | } |
| 221 | |
| 222 | @argvcopy = defined($configdata::config{perlargv}) ? |
| 223 | @{$configdata::config{perlargv}} : (); |
| 224 | die "Incorrect data to reconfigure, please do a normal configuration\n" |
| 225 | if (grep(/^reconf/,@argvcopy)); |
| 226 | $ENV{CROSS_COMPILE} = $configdata::config{cross_compile_prefix} |
| 227 | if defined($configdata::config{cross_compile_prefix}); |
| 228 | $ENV{CC} = $configdata::config{cc} |
| 229 | if defined($configdata::config{cc}); |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 230 | $ENV{CXX} = $configdata::config{cxx} |
| 231 | if defined($configdata::config{cxx}); |
Richard Levitte | ee4cdb7 | 2016-08-29 22:11:36 +0200 | [diff] [blame] | 232 | $ENV{BUILDFILE} = $configdata::config{build_file} |
| 233 | if defined($configdata::config{build_file}); |
| 234 | $ENV{$local_config_envname} = $configdata::config{local_config_dir} |
| 235 | if defined($configdata::config{local_config_dir}); |
| 236 | |
| 237 | print "Reconfiguring with: ", join(" ",@argvcopy), "\n"; |
| 238 | print " CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n" |
| 239 | if $ENV{CROSS_COMPILE}; |
| 240 | print " CC = ",$ENV{CC},"\n" if $ENV{CC}; |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 241 | print " CXX = ",$ENV{CXX},"\n" if $ENV{CXX}; |
Richard Levitte | ee4cdb7 | 2016-08-29 22:11:36 +0200 | [diff] [blame] | 242 | print " BUILDFILE = ",$ENV{BUILDFILE},"\n" if $ENV{BUILDFILE}; |
| 243 | print " $local_config_envname = ",$ENV{$local_config_envname},"\n" |
| 244 | if $ENV{$local_config_envname}; |
| 245 | } else { |
| 246 | die "Insufficient data to reconfigure, please do a normal configuration\n"; |
| 247 | } |
| 248 | } |
| 249 | |
| 250 | $config{perlargv} = [ @argvcopy ]; |
| 251 | |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 252 | # Collect version numbers |
| 253 | $config{version} = "unknown"; |
| 254 | $config{version_num} = "unknown"; |
| 255 | $config{shlib_version_number} = "unknown"; |
| 256 | $config{shlib_version_history} = "unknown"; |
| 257 | |
| 258 | collect_information( |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 259 | collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')), |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 260 | qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; }, |
| 261 | qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/ => sub { $config{version_num}=$1 }, |
| 262 | qr/SHLIB_VERSION_NUMBER *"([^"]+)"/ => sub { $config{shlib_version_number}=$1 }, |
| 263 | qr/SHLIB_VERSION_HISTORY *"([^"]*)"/ => sub { $config{shlib_version_history}=$1 } |
| 264 | ); |
| 265 | if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; } |
| 266 | |
| 267 | ($config{major}, $config{minor}) |
| 268 | = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/); |
| 269 | ($config{shlib_major}, $config{shlib_minor}) |
| 270 | = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/); |
| 271 | die "erroneous version information in opensslv.h: ", |
| 272 | "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n" |
| 273 | if ($config{major} eq "" || $config{minor} eq "" |
| 274 | || $config{shlib_major} eq "" || $config{shlib_minor} eq ""); |
| 275 | |
| 276 | # Collect target configurations |
| 277 | |
Richard Levitte | 85152ca | 2016-02-02 19:47:05 +0100 | [diff] [blame] | 278 | my $pattern = catfile(dirname($0), "Configurations", "*.conf"); |
Andy Polyakov | 9785555 | 2016-05-28 16:11:01 +0200 | [diff] [blame] | 279 | foreach (sort glob($pattern)) { |
Rich Salz | f09e7ca | 2015-02-24 17:40:22 -0500 | [diff] [blame] | 280 | &read_config($_); |
| 281 | } |
| 282 | |
Richard Levitte | b5293d4 | 2016-05-02 16:50:51 +0200 | [diff] [blame] | 283 | if (defined $ENV{$local_config_envname}) { |
| 284 | if ($^O eq 'VMS') { |
| 285 | # VMS environment variables are logical names, |
| 286 | # which can be used as is |
| 287 | $pattern = $local_config_envname . ':' . '*.conf'; |
| 288 | } else { |
| 289 | $pattern = catfile($ENV{$local_config_envname}, '*.conf'); |
| 290 | } |
| 291 | |
Andy Polyakov | 9785555 | 2016-05-28 16:11:01 +0200 | [diff] [blame] | 292 | foreach (sort glob($pattern)) { |
Richard Levitte | b5293d4 | 2016-05-02 16:50:51 +0200 | [diff] [blame] | 293 | &read_config($_); |
| 294 | } |
| 295 | } |
| 296 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 297 | |
Vitezslav Cizek | 35a498e | 2016-10-13 11:44:08 +0200 | [diff] [blame] | 298 | print "Configuring OpenSSL version $config{version} ($config{version_num})\n"; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 299 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 300 | $config{prefix}=""; |
| 301 | $config{openssldir}=""; |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 302 | $config{processor}=""; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 303 | $config{libdir}=""; |
Richard Levitte | 642a613 | 2015-12-27 02:27:30 +0100 | [diff] [blame] | 304 | $config{cross_compile_prefix}=""; |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 305 | my $auto_threads=1; # enable threads automatically? true by default |
Bodo Möller | 0396479 | 2001-03-09 13:04:06 +0000 | [diff] [blame] | 306 | my $default_ranlib; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 307 | |
| 308 | # Top level directories to build |
Richard Levitte | 342a1a2 | 2016-09-07 20:56:20 +0200 | [diff] [blame] | 309 | $config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ]; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 310 | # crypto/ subdirectories to build |
| 311 | $config{sdirs} = [ |
| 312 | "objects", |
Todd Short | 3f5616d | 2017-01-11 16:38:44 -0500 | [diff] [blame] | 313 | "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2", "siphash", |
Pauli | d42d0a4 | 2017-02-01 10:10:13 +1000 | [diff] [blame] | 314 | "des", "aes", "rc2", "rc4", "rc5", "idea", "aria", "bf", "cast", "camellia", "seed", "chacha", "modes", |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 315 | "bn", "ec", "rsa", "dsa", "dh", "dso", "engine", |
| 316 | "buffer", "bio", "stack", "lhash", "rand", "err", |
| 317 | "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui", |
Rich Salz | dba3177 | 2016-02-14 00:17:59 -0500 | [diff] [blame] | 318 | "cms", "ts", "srp", "cmac", "ct", "async", "kdf" |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 319 | ]; |
Richard Levitte | cfa7697 | 2016-10-12 16:05:06 +0100 | [diff] [blame] | 320 | # test/ subdirectories to build |
| 321 | $config{tdirs} = [ "ossl_shim" ]; |
Ulf Möller | 99aab16 | 1999-04-01 12:34:33 +0000 | [diff] [blame] | 322 | |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 323 | # Known TLS and DTLS protocols |
Matt Caswell | 84a6833 | 2016-10-30 08:38:52 +0000 | [diff] [blame] | 324 | my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3); |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 325 | my @dtls = qw(dtls1 dtls1_2); |
| 326 | |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 327 | # Explicitly known options that are possible to disable. They can |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 328 | # be regexps, and will be used like this: /^no-${option}$/ |
| 329 | # For developers: keep it sorted alphabetically |
| 330 | |
| 331 | my @disablables = ( |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 332 | "afalgeng", |
Pauli | d42d0a4 | 2017-02-01 10:10:13 +1000 | [diff] [blame] | 333 | "aria", |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 334 | "asan", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 335 | "asm", |
Todd Short | 52739e4 | 2016-02-04 11:41:25 -0500 | [diff] [blame] | 336 | "async", |
Matt Caswell | b184e3e | 2016-02-09 11:26:14 +0000 | [diff] [blame] | 337 | "autoalginit", |
Matt Caswell | 498abff | 2016-02-09 09:39:07 +0000 | [diff] [blame] | 338 | "autoerrinit", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 339 | "bf", |
Bill Cox | 2d0b441 | 2016-03-09 23:08:31 +0100 | [diff] [blame] | 340 | "blake2", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 341 | "camellia", |
| 342 | "capieng", |
| 343 | "cast", |
Andy Polyakov | 48f1484 | 2015-12-09 23:02:11 +0100 | [diff] [blame] | 344 | "chacha", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 345 | "cmac", |
| 346 | "cms", |
| 347 | "comp", |
Mat | 3e45d39 | 2016-01-09 23:55:57 +0100 | [diff] [blame] | 348 | "crypto-mdebug", |
Richard Levitte | ef8ca6b | 2016-02-14 12:16:52 +0100 | [diff] [blame] | 349 | "crypto-mdebug-backtrace", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 350 | "ct", |
| 351 | "deprecated", |
| 352 | "des", |
| 353 | "dgram", |
| 354 | "dh", |
| 355 | "dsa", |
| 356 | "dso", |
Kurt Roeckx | a5ecdc6 | 2015-12-12 11:12:22 +0100 | [diff] [blame] | 357 | "dtls", |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 358 | "dynamic-engine", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 359 | "ec", |
| 360 | "ec2m", |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 361 | "ecdh", |
| 362 | "ecdsa", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 363 | "ec_nistp_64_gcc_128", |
Richard Levitte | b31feae | 2016-02-03 21:08:17 +0100 | [diff] [blame] | 364 | "egd", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 365 | "engine", |
Rich Salz | 1288f26 | 2016-02-17 13:33:51 -0500 | [diff] [blame] | 366 | "err", |
Matt Caswell | ce2596d | 2016-10-12 16:21:13 +0100 | [diff] [blame] | 367 | "external-tests", |
David Woodhouse | 02f7114 | 2015-07-30 11:45:25 +0100 | [diff] [blame] | 368 | "filenames", |
Kurt Roeckx | f59d013 | 2016-05-07 22:09:13 +0200 | [diff] [blame] | 369 | "fuzz-libfuzzer", |
| 370 | "fuzz-afl", |
Matt Caswell | 168c3b7 | 2016-03-21 15:04:08 +0000 | [diff] [blame] | 371 | "gost", |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 372 | "heartbeats", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 373 | "hw(-.+)?", |
| 374 | "idea", |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 375 | "makedepend", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 376 | "md2", |
| 377 | "md4", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 378 | "mdc2", |
Emilia Kasper | 29df306 | 2016-07-28 20:24:28 +0200 | [diff] [blame] | 379 | "msan", |
Matt Caswell | fa22f98 | 2016-03-07 23:26:32 +0000 | [diff] [blame] | 380 | "multiblock", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 381 | "nextprotoneg", |
| 382 | "ocb", |
| 383 | "ocsp", |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 384 | "pic", |
Andy Polyakov | 48f1484 | 2015-12-09 23:02:11 +0100 | [diff] [blame] | 385 | "poly1305", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 386 | "posix-io", |
| 387 | "psk", |
| 388 | "rc2", |
| 389 | "rc4", |
| 390 | "rc5", |
| 391 | "rdrand", |
| 392 | "rfc3779", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 393 | "rmd160", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 394 | "scrypt", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 395 | "sctp", |
| 396 | "seed", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 397 | "shared", |
Todd Short | 3f5616d | 2017-01-11 16:38:44 -0500 | [diff] [blame] | 398 | "siphash", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 399 | "sock", |
| 400 | "srp", |
| 401 | "srtp", |
| 402 | "sse2", |
| 403 | "ssl", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 404 | "ssl-trace", |
| 405 | "static-engine", |
| 406 | "stdio", |
Richard Levitte | 93880ce | 2016-08-30 06:02:50 +0200 | [diff] [blame] | 407 | "tests", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 408 | "threads", |
| 409 | "tls", |
Rich Salz | 1288f26 | 2016-02-17 13:33:51 -0500 | [diff] [blame] | 410 | "ts", |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 411 | "ubsan", |
Rich Salz | 1288f26 | 2016-02-17 13:33:51 -0500 | [diff] [blame] | 412 | "ui", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 413 | "unit-test", |
| 414 | "whirlpool", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 415 | "weak-ssl-ciphers", |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 416 | "zlib", |
| 417 | "zlib-dynamic", |
| 418 | ); |
Viktor Dukhovni | 6b01bed | 2016-01-18 13:10:21 -0500 | [diff] [blame] | 419 | foreach my $proto ((@tls, @dtls)) |
| 420 | { |
| 421 | push(@disablables, $proto); |
| 422 | push(@disablables, "$proto-method"); |
| 423 | } |
Richard Levitte | 8b527be | 2015-10-22 17:09:14 +0200 | [diff] [blame] | 424 | |
Matt Caswell | 2b1343b | 2016-06-16 11:45:24 +0100 | [diff] [blame] | 425 | my %deprecated_disablables = ( |
| 426 | "ssl2" => undef, |
| 427 | "buf-freelists" => undef, |
| 428 | "ripemd" => "rmd160" |
Richard Levitte | e80381e | 2016-02-22 10:42:53 +0100 | [diff] [blame] | 429 | ); |
| 430 | |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 431 | # All of the following is disabled by default (RC5 was enabled before 0.9.8): |
| 432 | |
Richard Levitte | 9e04edf | 2016-02-22 13:45:46 +0100 | [diff] [blame] | 433 | our %disabled = ( # "what" => "comment" |
Pauli | d42d0a4 | 2017-02-01 10:10:13 +1000 | [diff] [blame] | 434 | "aria" => "default", |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 435 | "asan" => "default", |
Benjamin Kaduk | a9c27fe | 2016-08-18 15:47:04 -0500 | [diff] [blame] | 436 | "crypto-mdebug" => "default", |
| 437 | "crypto-mdebug-backtrace" => "default", |
Richard Levitte | 9e04edf | 2016-02-22 13:45:46 +0100 | [diff] [blame] | 438 | "ec_nistp_64_gcc_128" => "default", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 439 | "egd" => "default", |
Matt Caswell | ce2596d | 2016-10-12 16:21:13 +0100 | [diff] [blame] | 440 | "external-tests" => "default", |
Kurt Roeckx | f59d013 | 2016-05-07 22:09:13 +0200 | [diff] [blame] | 441 | "fuzz-libfuzzer" => "default", |
| 442 | "fuzz-afl" => "default", |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 443 | "heartbeats" => "default", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 444 | "md2" => "default", |
Emilia Kasper | 29df306 | 2016-07-28 20:24:28 +0200 | [diff] [blame] | 445 | "msan" => "default", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 446 | "rc5" => "default", |
| 447 | "sctp" => "default", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 448 | "ssl-trace" => "default", |
Kurt Roeckx | 9829b5a | 2016-03-03 22:45:57 +0100 | [diff] [blame] | 449 | "ssl3" => "default", |
| 450 | "ssl3-method" => "default", |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 451 | "ubsan" => "default", |
Matt Caswell | 84a6833 | 2016-10-30 08:38:52 +0000 | [diff] [blame] | 452 | #TODO(TLS1.3): Temporarily disabled while this is a WIP |
| 453 | "tls1_3" => "default", |
Matt Caswell | 8b1a5af | 2016-03-03 15:40:51 +0000 | [diff] [blame] | 454 | "unit-test" => "default", |
| 455 | "weak-ssl-ciphers" => "default", |
| 456 | "zlib" => "default", |
| 457 | "zlib-dynamic" => "default", |
Richard Levitte | 9e04edf | 2016-02-22 13:45:46 +0100 | [diff] [blame] | 458 | ); |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 459 | |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 460 | # Note: => pair form used for aesthetics, not to truly make a hash table |
| 461 | my @disable_cascades = ( |
| 462 | # "what" => [ "cascade", ... ] |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 463 | sub { $config{processor} eq "386" } |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 464 | => [ "sse2" ], |
| 465 | "ssl" => [ "ssl3" ], |
| 466 | "ssl3-method" => [ "ssl3" ], |
| 467 | "zlib" => [ "zlib-dynamic" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 468 | "des" => [ "mdc2" ], |
Richard Levitte | 9e4d6fb | 2016-01-23 22:58:51 +0100 | [diff] [blame] | 469 | "ec" => [ "ecdsa", "ecdh" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 470 | |
Ben Laurie | 3fd4d21 | 2016-03-17 18:17:03 +0000 | [diff] [blame] | 471 | "dgram" => [ "dtls", "sctp" ], |
Matt Caswell | 505f74c | 2016-04-20 11:24:49 +0100 | [diff] [blame] | 472 | "sock" => [ "dgram" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 473 | "dtls" => [ @dtls ], |
Richard Levitte | 343a746 | 2017-02-17 20:48:28 +0100 | [diff] [blame] | 474 | sub { 0 == scalar grep { !$disabled{$_} } @dtls } |
| 475 | => [ "dtls" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 476 | |
| 477 | # SSL 3.0, (D)TLS 1.0 and TLS 1.1 require MD5 and SHA |
| 478 | "md5" => [ "ssl", "tls1", "tls1_1", "dtls1" ], |
| 479 | "sha" => [ "ssl", "tls1", "tls1_1", "dtls1" ], |
| 480 | |
| 481 | # Additionally, SSL 3.0 requires either RSA or DSA+DH |
| 482 | sub { $disabled{rsa} |
| 483 | && ($disabled{dsa} || $disabled{dh}); } |
| 484 | => [ "ssl" ], |
| 485 | |
| 486 | # (D)TLS 1.0 and TLS 1.1 also require either RSA or DSA+DH |
| 487 | # or ECDSA + ECDH. (D)TLS 1.2 has this requirement as well. |
| 488 | # (XXX: We don't support PSK-only builds). |
| 489 | sub { $disabled{rsa} |
| 490 | && ($disabled{dsa} || $disabled{dh}) |
| 491 | && ($disabled{ecdsa} || $disabled{ecdh}); } |
Matt Caswell | 84a6833 | 2016-10-30 08:38:52 +0000 | [diff] [blame] | 492 | => [ "tls1", "tls1_1", "tls1_2", "tls1_3", |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 493 | "dtls1", "dtls1_2" ], |
| 494 | |
| 495 | "tls" => [ @tls ], |
Richard Levitte | 343a746 | 2017-02-17 20:48:28 +0100 | [diff] [blame] | 496 | sub { 0 == scalar grep { !$disabled{$_} } @tls } |
| 497 | => [ "tls" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 498 | |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 499 | # SRP and HEARTBEATS require TLSEXT |
| 500 | "tlsext" => [ "srp", "heartbeats" ], |
Richard Levitte | ef8ca6b | 2016-02-14 12:16:52 +0100 | [diff] [blame] | 501 | |
| 502 | "crypto-mdebug" => [ "crypto-mdebug-backtrace" ], |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 503 | |
| 504 | # Without DSO, we can't load dynamic engines, so don't build them dynamic |
| 505 | "dso" => [ "dynamic-engine" ], |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 506 | |
| 507 | # Without position independent code, there can be no shared libraries or DSOs |
Richard Levitte | 0069806 | 2016-03-11 12:58:15 +0100 | [diff] [blame] | 508 | "pic" => [ "shared" ], |
| 509 | "shared" => [ "dynamic-engine" ], |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 510 | "engine" => [ "afalgeng" ], |
Matt Caswell | d90a6be | 2016-04-14 13:44:15 +0100 | [diff] [blame] | 511 | |
| 512 | # no-autoalginit is only useful when building non-shared |
| 513 | "autoalginit" => [ "shared", "apps" ], |
| 514 | |
Richard Levitte | 25d498c | 2016-08-05 12:54:57 +0200 | [diff] [blame] | 515 | "stdio" => [ "apps", "capieng" ], |
Matt Caswell | d90a6be | 2016-04-14 13:44:15 +0100 | [diff] [blame] | 516 | "apps" => [ "tests" ], |
Matt Caswell | 3cf96e8 | 2016-12-28 15:32:39 +0000 | [diff] [blame] | 517 | "comp" => [ "zlib" ], |
| 518 | "ec" => [ "tls1_3" ], |
Richard Levitte | b612799 | 2016-11-15 14:53:33 +0100 | [diff] [blame] | 519 | sub { !$disabled{"unit-test"} } => [ "heartbeats" ], |
Emilia Kasper | 29df306 | 2016-07-28 20:24:28 +0200 | [diff] [blame] | 520 | |
| 521 | sub { !$disabled{"msan"} } => [ "asm" ], |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 522 | ); |
| 523 | |
| 524 | # Avoid protocol support holes. Also disable all versions below N, if version |
| 525 | # N is disabled while N+1 is enabled. |
| 526 | # |
| 527 | my @list = (reverse @tls); |
| 528 | while ((my $first, my $second) = (shift @list, shift @list)) { |
| 529 | last unless @list; |
| 530 | push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} } |
| 531 | => [ @list ] ); |
| 532 | unshift @list, $second; |
| 533 | } |
| 534 | my @list = (reverse @dtls); |
| 535 | while ((my $first, my $second) = (shift @list, shift @list)) { |
| 536 | last unless @list; |
| 537 | push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} } |
| 538 | => [ @list ] ); |
| 539 | unshift @list, $second; |
| 540 | } |
| 541 | |
Bodo Möller | 7a76219 | 2008-12-02 01:21:39 +0000 | [diff] [blame] | 542 | # Explicit "no-..." options will be collected in %disabled along with the defaults. |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 543 | # To remove something from %disabled, use "enable-foo". |
Bodo Möller | 7a76219 | 2008-12-02 01:21:39 +0000 | [diff] [blame] | 544 | # For symmetry, "disable-foo" is a synonym for "no-foo". |
| 545 | |
Andy Polyakov | d0590fe | 2004-07-18 16:19:34 +0000 | [diff] [blame] | 546 | my $no_sse2=0; |
Richard Levitte | b6e4dac | 2001-11-27 11:48:30 +0000 | [diff] [blame] | 547 | |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 548 | &usage if ($#ARGV < 0); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 549 | |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 550 | my $user_cflags=""; |
| 551 | my @user_defines=(); |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 552 | $config{openssl_api_defines}=[]; |
| 553 | $config{openssl_algorithm_defines}=[]; |
| 554 | $config{openssl_thread_defines}=[]; |
| 555 | $config{openssl_sys_defines}=[]; |
| 556 | $config{openssl_other_defines}=[]; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 557 | my $libs=""; |
| 558 | my $target=""; |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 559 | $config{options}=""; |
Richard Levitte | 8864f0d | 2016-03-02 19:13:26 +0100 | [diff] [blame] | 560 | $config{build_type} = "release"; |
Richard Levitte | c59cb51 | 2000-08-17 10:23:45 +0000 | [diff] [blame] | 561 | |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 562 | my %unsupported_options = (); |
Richard Levitte | e80381e | 2016-02-22 10:42:53 +0100 | [diff] [blame] | 563 | my %deprecated_options = (); |
Richard Levitte | fad599f | 2016-10-12 17:05:35 +0200 | [diff] [blame] | 564 | while (@argvcopy) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 565 | { |
Richard Levitte | fad599f | 2016-10-12 17:05:35 +0200 | [diff] [blame] | 566 | $_ = shift @argvcopy; |
Richard Levitte | 7c55e22 | 2016-02-16 16:07:05 +0100 | [diff] [blame] | 567 | # VMS is a case insensitive environment, and depending on settings |
| 568 | # out of our control, we may receive options uppercased. Let's |
| 569 | # downcase at least the part before any equal sign. |
| 570 | if ($^O eq "VMS") |
| 571 | { |
| 572 | s/^([^=]*)/lc($1)/e; |
| 573 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 574 | s /^-no-/no-/; # some people just can't read the instructions |
Richard Levitte | c59cb51 | 2000-08-17 10:23:45 +0000 | [diff] [blame] | 575 | |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 576 | # rewrite some options in "enable-..." form |
| 577 | s /^-?-?shared$/enable-shared/; |
| 578 | s /^sctp$/enable-sctp/; |
| 579 | s /^threads$/enable-threads/; |
| 580 | s /^zlib$/enable-zlib/; |
| 581 | s /^zlib-dynamic$/enable-zlib-dynamic/; |
Richard Levitte | c59cb51 | 2000-08-17 10:23:45 +0000 | [diff] [blame] | 582 | |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 583 | if (/^(no|disable|enable)-(.+)$/) |
Matt Caswell | 2b1343b | 2016-06-16 11:45:24 +0100 | [diff] [blame] | 584 | { |
| 585 | my $word = $2; |
| 586 | if (!exists $deprecated_disablables{$word} |
| 587 | && !grep { $word =~ /^${_}$/ } @disablables) |
| 588 | { |
| 589 | $unsupported_options{$_} = 1; |
| 590 | next; |
| 591 | } |
| 592 | } |
| 593 | if (/^no-(.+)$/ || /^disable-(.+)$/) |
| 594 | { |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 595 | foreach my $proto ((@tls, @dtls)) |
| 596 | { |
| 597 | if ($1 eq "$proto-method") |
| 598 | { |
| 599 | $disabled{"$proto"} = "option($proto-method)"; |
| 600 | last; |
| 601 | } |
| 602 | } |
| 603 | if ($1 eq "dtls") |
| 604 | { |
| 605 | foreach my $proto (@dtls) |
| 606 | { |
| 607 | $disabled{$proto} = "option(dtls)"; |
| 608 | } |
Kurt Roeckx | c5c7700 | 2016-03-28 00:31:23 +0200 | [diff] [blame] | 609 | $disabled{"dtls"} = "option(dtls)"; |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 610 | } |
| 611 | elsif ($1 eq "ssl") |
| 612 | { |
| 613 | # Last one of its kind |
| 614 | $disabled{"ssl3"} = "option(ssl)"; |
| 615 | } |
| 616 | elsif ($1 eq "tls") |
| 617 | { |
| 618 | # XXX: Tests will fail if all SSL/TLS |
| 619 | # protocols are disabled. |
| 620 | foreach my $proto (@tls) |
| 621 | { |
| 622 | $disabled{$proto} = "option(tls)"; |
| 623 | } |
| 624 | } |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 625 | elsif ($1 eq "static-engine") |
| 626 | { |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 627 | delete $disabled{"dynamic-engine"}; |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 628 | } |
| 629 | elsif ($1 eq "dynamic-engine") |
| 630 | { |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 631 | $disabled{"dynamic-engine"} = "option"; |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 632 | } |
Matt Caswell | 2b1343b | 2016-06-16 11:45:24 +0100 | [diff] [blame] | 633 | elsif (exists $deprecated_disablables{$1}) |
| 634 | { |
| 635 | $deprecated_options{$_} = 1; |
| 636 | if (defined $deprecated_disablables{$1}) |
| 637 | { |
| 638 | $disabled{$deprecated_disablables{$1}} = "option"; |
| 639 | } |
| 640 | } |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 641 | else |
| 642 | { |
| 643 | $disabled{$1} = "option"; |
| 644 | } |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 645 | # No longer an automatic choice |
| 646 | $auto_threads = 0 if ($1 eq "threads"); |
Bodo Möller | fbabb75 | 1999-07-09 12:00:34 +0000 | [diff] [blame] | 647 | } |
Rich Salz | e4ef2e2 | 2016-02-10 11:10:39 -0500 | [diff] [blame] | 648 | elsif (/^enable-(.+)$/) |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 649 | { |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 650 | if ($1 eq "static-engine") |
| 651 | { |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 652 | $disabled{"dynamic-engine"} = "option"; |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 653 | } |
| 654 | elsif ($1 eq "dynamic-engine") |
| 655 | { |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 656 | delete $disabled{"dynamic-engine"}; |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 657 | } |
Richard Levitte | 25004db | 2016-03-03 10:07:29 +0100 | [diff] [blame] | 658 | elsif ($1 eq "zlib-dynamic") |
| 659 | { |
| 660 | delete $disabled{"zlib"}; |
| 661 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 662 | my $algo = $1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 663 | delete $disabled{$algo}; |
| 664 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 665 | # No longer an automatic choice |
| 666 | $auto_threads = 0 if ($1 eq "threads"); |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 667 | } |
| 668 | elsif (/^--strict-warnings$/) |
| 669 | { |
| 670 | $strict_warnings = 1; |
| 671 | } |
| 672 | elsif (/^--debug$/) |
| 673 | { |
Richard Levitte | 8864f0d | 2016-03-02 19:13:26 +0100 | [diff] [blame] | 674 | $config{build_type} = "debug"; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 675 | } |
| 676 | elsif (/^--release$/) |
| 677 | { |
Richard Levitte | 8864f0d | 2016-03-02 19:13:26 +0100 | [diff] [blame] | 678 | $config{build_type} = "release"; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 679 | } |
| 680 | elsif (/^386$/) |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 681 | { $config{processor}=386; } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 682 | elsif (/^fips$/) |
| 683 | { |
Emilia Kasper | b53338c | 2017-02-28 12:30:28 +0100 | [diff] [blame] | 684 | die "FIPS mode not supported\n"; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 685 | } |
| 686 | elsif (/^rsaref$/) |
| 687 | { |
| 688 | # No RSAref support any more since it's not needed. |
| 689 | # The check for the option is there so scripts aren't |
| 690 | # broken |
| 691 | } |
| 692 | elsif (/^nofipscanistercheck$/) |
| 693 | { |
Emilia Kasper | b53338c | 2017-02-28 12:30:28 +0100 | [diff] [blame] | 694 | die "FIPS mode not supported\n"; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 695 | } |
| 696 | elsif (/^[-+]/) |
| 697 | { |
Richard Levitte | 45c6e23 | 2016-04-02 18:36:52 +0200 | [diff] [blame] | 698 | if (/^--prefix=(.*)$/) |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 699 | { |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 700 | $config{prefix}=$1; |
Richard Levitte | 5482dac | 2016-01-30 02:57:19 +0100 | [diff] [blame] | 701 | die "Directory given with --prefix MUST be absolute\n" |
| 702 | unless file_name_is_absolute($config{prefix}); |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 703 | } |
| 704 | elsif (/^--api=(.*)$/) |
| 705 | { |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 706 | $config{api}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 707 | } |
| 708 | elsif (/^--libdir=(.*)$/) |
| 709 | { |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 710 | $config{libdir}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 711 | } |
| 712 | elsif (/^--openssldir=(.*)$/) |
| 713 | { |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 714 | $config{openssldir}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 715 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 716 | elsif (/^--with-zlib-lib=(.*)$/) |
| 717 | { |
Michael Lee | 20a5819 | 2016-02-03 11:31:40 -0500 | [diff] [blame] | 718 | $withargs{zlib_lib}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 719 | } |
| 720 | elsif (/^--with-zlib-include=(.*)$/) |
| 721 | { |
Richard Levitte | da430a5 | 2016-04-12 16:35:32 +0200 | [diff] [blame] | 722 | $withargs{zlib_include}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 723 | } |
Kurt Roeckx | f59d013 | 2016-05-07 22:09:13 +0200 | [diff] [blame] | 724 | elsif (/^--with-fuzzer-lib=(.*)$/) |
| 725 | { |
| 726 | $withargs{fuzzer_lib}=$1; |
| 727 | } |
| 728 | elsif (/^--with-fuzzer-include=(.*)$/) |
| 729 | { |
| 730 | $withargs{fuzzer_include}=$1; |
| 731 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 732 | elsif (/^--cross-compile-prefix=(.*)$/) |
| 733 | { |
Richard Levitte | 642a613 | 2015-12-27 02:27:30 +0100 | [diff] [blame] | 734 | $config{cross_compile_prefix}=$1; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 735 | } |
| 736 | elsif (/^--config=(.*)$/) |
| 737 | { |
| 738 | read_config $1; |
| 739 | } |
| 740 | elsif (/^-[lL](.*)$/ or /^-Wl,/) |
| 741 | { |
| 742 | $libs.=$_." "; |
| 743 | } |
Richard Levitte | fad599f | 2016-10-12 17:05:35 +0200 | [diff] [blame] | 744 | elsif (/^-rpath$/ or /^-R$/) |
| 745 | # -rpath is the OSF1 rpath flag |
| 746 | # -R is the old Solaris rpath flag |
| 747 | { |
| 748 | my $rpath = shift(@argvcopy) || ""; |
| 749 | $rpath .= " " if $rpath ne ""; |
| 750 | $libs.=$_." ".$rpath; |
| 751 | } |
Andy Polyakov | 9d46752 | 2016-08-14 17:24:10 +0200 | [diff] [blame] | 752 | elsif (/^-static$/) |
| 753 | { |
| 754 | $libs.=$_." "; |
Andy Polyakov | 047d97a | 2016-09-01 21:36:13 +0200 | [diff] [blame] | 755 | $disabled{"dso"} = "forced"; |
Andy Polyakov | 9d46752 | 2016-08-14 17:24:10 +0200 | [diff] [blame] | 756 | $disabled{"pic"} = "forced"; |
| 757 | $disabled{"shared"} = "forced"; |
| 758 | $disabled{"threads"} = "forced"; |
| 759 | } |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 760 | elsif (/^-D(.*)$/) |
| 761 | { |
| 762 | push @user_defines, $1; |
| 763 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 764 | else # common if (/^[-+]/), just pass down... |
| 765 | { |
| 766 | $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei; |
Rich Salz | 2b91ec7 | 2016-02-12 14:40:33 -0500 | [diff] [blame] | 767 | $user_cflags.=" ".$_; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 768 | } |
| 769 | } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 770 | else |
| 771 | { |
| 772 | die "target already defined - $target (offending arg: $_)\n" if ($target ne ""); |
| 773 | $target=$_; |
| 774 | } |
| 775 | unless ($_ eq $target || /^no-/ || /^disable-/) |
| 776 | { |
| 777 | # "no-..." follows later after implied disactivations |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 778 | # have been derived. (Don't take this too seriously, |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 779 | # we really only write OPTIONS to the Makefile out of |
| 780 | # nostalgia.) |
| 781 | |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 782 | if ($config{options} eq "") |
| 783 | { $config{options} = $_; } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 784 | else |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 785 | { $config{options} .= " ".$_; } |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 786 | } |
Richard Levitte | 489eb74 | 2015-10-22 17:33:47 +0200 | [diff] [blame] | 787 | |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 788 | if (defined($config{api}) && !exists $apitable->{$config{api}}) { |
| 789 | die "***** Unsupported api compatibility level: $config{api}\n", |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 790 | } |
| 791 | |
Richard Levitte | e80381e | 2016-02-22 10:42:53 +0100 | [diff] [blame] | 792 | if (keys %deprecated_options) |
| 793 | { |
| 794 | warn "***** Deprecated options: ", |
| 795 | join(", ", keys %deprecated_options), "\n"; |
| 796 | } |
Richard Levitte | 489eb74 | 2015-10-22 17:33:47 +0200 | [diff] [blame] | 797 | if (keys %unsupported_options) |
| 798 | { |
| 799 | die "***** Unsupported options: ", |
| 800 | join(", ", keys %unsupported_options), "\n"; |
| 801 | } |
Bodo Möller | fbabb75 | 1999-07-09 12:00:34 +0000 | [diff] [blame] | 802 | } |
Richard Levitte | b6e4dac | 2001-11-27 11:48:30 +0000 | [diff] [blame] | 803 | |
Richard Levitte | 342a1a2 | 2016-09-07 20:56:20 +0200 | [diff] [blame] | 804 | if ($libs =~ /(^|\s)-Wl,-rpath,/ |
| 805 | && !$disabled{shared} |
| 806 | && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) { |
| 807 | die "***** Cannot simultaneously use -rpath, shared libraries, and\n", |
| 808 | "***** any of asan, msan or ubsan\n"; |
| 809 | } |
| 810 | |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 811 | my @tocheckfor = (keys %disabled); |
| 812 | while (@tocheckfor) { |
| 813 | my %new_tocheckfor = (); |
| 814 | my @cascade_copy = (@disable_cascades); |
| 815 | while (@cascade_copy) { |
| 816 | my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy); |
| 817 | if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) { |
Richard Levitte | 2110feb | 2016-04-06 15:02:57 +0200 | [diff] [blame] | 818 | foreach(grep { !defined($disabled{$_}) } @$descendents) { |
Richard Levitte | 01d9997 | 2016-03-14 10:02:13 +0100 | [diff] [blame] | 819 | $new_tocheckfor{$_} = 1; $disabled{$_} = "forced"; |
Richard Levitte | 2110feb | 2016-04-06 15:02:57 +0200 | [diff] [blame] | 820 | } |
Richard Levitte | b6e4dac | 2001-11-27 11:48:30 +0000 | [diff] [blame] | 821 | } |
Richard Levitte | c569e20 | 2015-05-18 11:03:47 +0200 | [diff] [blame] | 822 | } |
| 823 | @tocheckfor = (keys %new_tocheckfor); |
| 824 | } |
Ben Laurie | edc032b | 2011-03-12 17:01:19 +0000 | [diff] [blame] | 825 | |
Richard Levitte | d63c12c | 2016-08-31 19:47:35 +0200 | [diff] [blame] | 826 | our $die = sub { die @_; }; |
Bodo Möller | 436a376 | 1999-05-28 23:18:51 +0000 | [diff] [blame] | 827 | if ($target eq "TABLE") { |
Richard Levitte | d63c12c | 2016-08-31 19:47:35 +0200 | [diff] [blame] | 828 | local $die = sub { warn @_; }; |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 829 | foreach (sort keys %table) { |
| 830 | print_table_entry($_, "TABLE"); |
| 831 | } |
| 832 | exit 0; |
Bodo Möller | 436a376 | 1999-05-28 23:18:51 +0000 | [diff] [blame] | 833 | } |
| 834 | |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 835 | if ($target eq "LIST") { |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 836 | foreach (sort keys %table) { |
| 837 | print $_,"\n" unless $table{$_}->{template}; |
| 838 | } |
| 839 | exit 0; |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 840 | } |
| 841 | |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 842 | if ($target eq "HASH") { |
Richard Levitte | d63c12c | 2016-08-31 19:47:35 +0200 | [diff] [blame] | 843 | local $die = sub { warn @_; }; |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 844 | print "%table = (\n"; |
| 845 | foreach (sort keys %table) { |
| 846 | print_table_entry($_, "HASH"); |
| 847 | } |
| 848 | exit 0; |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 849 | } |
| 850 | |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 851 | # Backward compatibility? |
Richard Levitte | 49e0454 | 2002-02-14 12:28:24 +0000 | [diff] [blame] | 852 | if ($target =~ m/^CygWin32(-.*)$/) { |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 853 | $target = "Cygwin".$1; |
Richard Levitte | 49e0454 | 2002-02-14 12:28:24 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 856 | foreach (sort (keys %disabled)) |
| 857 | { |
Richard Levitte | 3fa04f0 | 2016-01-12 00:17:12 +0100 | [diff] [blame] | 858 | $config{options} .= " no-$_"; |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 859 | |
| 860 | printf " no-%-12s %-10s", $_, "[$disabled{$_}]"; |
| 861 | |
| 862 | if (/^dso$/) |
Richard Levitte | 721f905 | 2016-02-22 14:12:35 +0100 | [diff] [blame] | 863 | { } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 864 | elsif (/^threads$/) |
Richard Levitte | 22bfe05 | 2016-02-22 14:03:23 +0100 | [diff] [blame] | 865 | { } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 866 | elsif (/^shared$/) |
Richard Levitte | 84af1ba | 2016-02-22 13:52:46 +0100 | [diff] [blame] | 867 | { } |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 868 | elsif (/^pic$/) |
| 869 | { } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 870 | elsif (/^zlib$/) |
Richard Levitte | 36a3090 | 2016-02-22 14:04:45 +0100 | [diff] [blame] | 871 | { } |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 872 | elsif (/^dynamic-engine$/) |
Dr. Stephen Henson | fbf002b | 2005-11-06 17:58:26 +0000 | [diff] [blame] | 873 | { } |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 874 | elsif (/^makedepend$/) |
| 875 | { } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 876 | elsif (/^zlib-dynamic$/) |
| 877 | { } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 878 | elsif (/^sse2$/) |
| 879 | { $no_sse2 = 1; } |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 880 | elsif (/^engine$/) |
Rich Salz | 1288f26 | 2016-02-17 13:33:51 -0500 | [diff] [blame] | 881 | { |
| 882 | @{$config{dirs}} = grep !/^engines$/, @{$config{dirs}}; |
| 883 | @{$config{sdirs}} = grep !/^engine$/, @{$config{sdirs}}; |
| 884 | push @{$config{openssl_other_defines}}, "OPENSSL_NO_ENGINE"; |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 885 | print " OPENSSL_NO_ENGINE (skip engines)"; |
Rich Salz | 1288f26 | 2016-02-17 13:33:51 -0500 | [diff] [blame] | 886 | } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 887 | else |
| 888 | { |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 889 | my ($WHAT, $what); |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 890 | |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 891 | ($WHAT = $what = $_) =~ tr/[\-a-z]/[_A-Z]/; |
| 892 | |
| 893 | # Fix up C macro end names |
| 894 | $WHAT = "RMD160" if $what eq "ripemd"; |
| 895 | |
| 896 | # fix-up crypto/directory name(s) |
| 897 | $what = "ripemd" if $what eq "rmd160"; |
| 898 | $what = "whrlpool" if $what eq "whirlpool"; |
| 899 | |
Richard Levitte | 66fe388 | 2016-09-17 21:57:29 +0200 | [diff] [blame] | 900 | if ($what ne "async" && $what ne "err" |
| 901 | && grep { $_ eq $what } @{$config{sdirs}}) |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 902 | { |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 903 | push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$WHAT"; |
| 904 | @{$config{sdirs}} = grep { $_ ne $what} @{$config{sdirs}}; |
Felix Laurie von Massenbach | fce0ba5 | 2014-05-26 17:19:28 +0100 | [diff] [blame] | 905 | |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 906 | print " OPENSSL_NO_$WHAT (skip dir)"; |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 907 | } |
| 908 | else |
| 909 | { |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 910 | push @{$config{openssl_other_defines}}, "OPENSSL_NO_$WHAT"; |
| 911 | print " OPENSSL_NO_$WHAT"; |
Andy Polyakov | 2a4af94 | 2015-01-24 16:46:54 +0100 | [diff] [blame] | 912 | |
Richard Levitte | 3e2dd30 | 2016-09-06 20:14:33 +0200 | [diff] [blame] | 913 | if (/^err$/) { push @user_defines, "OPENSSL_NO_ERR"; } |
Bodo Möller | c9a112f | 2005-02-22 10:29:51 +0000 | [diff] [blame] | 914 | } |
| 915 | } |
| 916 | |
| 917 | print "\n"; |
| 918 | } |
| 919 | |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 920 | print "Configuring for $target\n"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 921 | # Support for legacy targets having a name starting with 'debug-' |
| 922 | my ($d, $t) = $target =~ m/^(debug-)?(.*)$/; |
| 923 | if ($d) { |
Richard Levitte | 8864f0d | 2016-03-02 19:13:26 +0100 | [diff] [blame] | 924 | $config{build_type} = "debug"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 925 | |
| 926 | # If we do not find debug-foo in the table, the target is set to foo. |
| 927 | if (!$table{$target}) { |
| 928 | $target = $t; |
| 929 | } |
| 930 | } |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 931 | $config{target} = $target; |
Richard Levitte | 7930221 | 2016-02-27 10:23:15 +0100 | [diff] [blame] | 932 | my %target = resolve_config($target); |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 933 | |
| 934 | &usage if (!%target || $target{template}); |
| 935 | |
Richard Levitte | ee9b0bb | 2016-09-14 22:21:41 +0200 | [diff] [blame] | 936 | my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}}); |
| 937 | $config{conf_files} = [ sort keys %conf_files ]; |
Richard Levitte | d2b2221 | 2016-02-27 11:25:33 +0100 | [diff] [blame] | 938 | %target = ( %{$table{DEFAULTS}}, %target ); |
Richard Levitte | 7930221 | 2016-02-27 10:23:15 +0100 | [diff] [blame] | 939 | |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 940 | $target{cxxflags}=$target{cflags} unless defined $target{cxxflags}; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 941 | $target{exe_extension}=""; |
Richard Levitte | f99f91f | 2016-02-15 22:13:41 +0100 | [diff] [blame] | 942 | $target{exe_extension}=".exe" if ($config{target} eq "DJGPP" |
| 943 | || $config{target} =~ /^(?:Cygwin|mingw)/); |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 944 | $target{exe_extension}=".pm" if ($config{target} =~ /vos/); |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 945 | |
Richard Levitte | e987f9f | 2016-02-15 17:20:15 +0100 | [diff] [blame] | 946 | ($target{shared_extension_simple}=$target{shared_extension}) |
| 947 | =~ s|\.\$\(SHLIB_MAJOR\)\.\$\(SHLIB_MINOR\)||; |
| 948 | $target{dso_extension}=$target{shared_extension_simple}; |
| 949 | ($target{shared_import_extension}=$target{shared_extension_simple}.".a") |
| 950 | if ($config{target} =~ /^(?:Cygwin|mingw)/); |
| 951 | |
| 952 | |
Richard Levitte | 642a613 | 2015-12-27 02:27:30 +0100 | [diff] [blame] | 953 | $config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'} |
| 954 | if $config{cross_compile_prefix} eq ""; |
Dr. Stephen Henson | f99f41c | 2009-10-07 16:41:14 +0000 | [diff] [blame] | 955 | |
Richard Levitte | b0a1e8b | 2016-03-02 12:22:15 +0100 | [diff] [blame] | 956 | # Allow overriding the names of some tools. USE WITH CARE |
Richard Levitte | d513369 | 2016-07-02 16:39:15 +0200 | [diff] [blame] | 957 | # Note: only Unix cares about HASHBANGPERL... that explains |
| 958 | # the default string. |
Andy Polyakov | 758baa3 | 2016-09-09 23:45:57 +0200 | [diff] [blame] | 959 | $config{perl} = ($^O ne "VMS" ? $^X : "perl"); |
Richard Levitte | d513369 | 2016-07-02 16:39:15 +0200 | [diff] [blame] | 960 | $config{hashbangperl} = |
| 961 | $ENV{'HASHBANGPERL'} || $ENV{'PERL'} || "/usr/bin/env perl"; |
Richard Levitte | b0a1e8b | 2016-03-02 12:22:15 +0100 | [diff] [blame] | 962 | $target{cc} = $ENV{'CC'} || $target{cc} || "cc"; |
Richard Levitte | 83bd048 | 2016-10-14 17:44:25 +0200 | [diff] [blame] | 963 | $target{cxx} = $ENV{'CXX'} || $target{cxx} || "c++"; |
Andy Polyakov | f58a0ac | 2016-05-09 15:35:55 +0200 | [diff] [blame] | 964 | $target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} || |
Andy Polyakov | 656bbdc | 2016-05-20 21:31:11 +0200 | [diff] [blame] | 965 | (which("$config{cross_compile_prefix}ranlib") ? |
Andy Polyakov | f58a0ac | 2016-05-09 15:35:55 +0200 | [diff] [blame] | 966 | "\$(CROSS_COMPILE)ranlib" : "true"); |
Richard Levitte | b0a1e8b | 2016-03-02 12:22:15 +0100 | [diff] [blame] | 967 | $target{ar} = $ENV{'AR'} || $target{ar} || "ar"; |
| 968 | $target{nm} = $ENV{'NM'} || $target{nm} || "nm"; |
Richard Levitte | 8f41ff2 | 2016-05-16 17:08:13 +0200 | [diff] [blame] | 969 | $target{rc} = |
| 970 | $ENV{'RC'} || $ENV{'WINDRES'} || $target{rc} || "windres"; |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 971 | |
Richard Levitte | 8b5156d | 2016-08-29 21:45:19 +0200 | [diff] [blame] | 972 | # Allow overriding the build file name |
| 973 | $target{build_file} = $ENV{BUILDFILE} || $target{build_file} || "Makefile"; |
| 974 | |
| 975 | # Cache information necessary for reconfiguration |
Richard Levitte | a66234b | 2016-08-17 15:39:49 +0200 | [diff] [blame] | 976 | $config{cc} = $target{cc}; |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 977 | $config{cxx} = $target{cxx}; |
Richard Levitte | 8b5156d | 2016-08-29 21:45:19 +0200 | [diff] [blame] | 978 | $config{build_file} = $target{build_file}; |
Richard Levitte | a66234b | 2016-08-17 15:39:49 +0200 | [diff] [blame] | 979 | |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 980 | # For cflags, lflags, plib_lflags, ex_libs and defines, add the debug_ |
| 981 | # or release_ attributes. |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 982 | # Do it in such a way that no spurious space is appended (hence the grep). |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 983 | $config{defines} = []; |
| 984 | $config{cflags} = ""; |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 985 | $config{cxxflags} = ""; |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 986 | $config{ex_libs} = ""; |
| 987 | $config{shared_ldflag} = ""; |
Richard Levitte | aaf878c | 2015-03-06 02:00:21 +0100 | [diff] [blame] | 988 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 989 | # Make sure build_scheme is consistent. |
| 990 | $target{build_scheme} = [ $target{build_scheme} ] |
| 991 | if ref($target{build_scheme}) ne "ARRAY"; |
Richard Levitte | d0d046e | 2002-01-27 15:52:37 +0000 | [diff] [blame] | 992 | |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 993 | my ($builder, $builder_platform, @builder_opts) = |
| 994 | @{$target{build_scheme}}; |
| 995 | |
Richard Levitte | d192a3a | 2017-03-05 21:51:18 +0100 | [diff] [blame] | 996 | foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm", |
| 997 | $builder_platform."-checker.pm")) { |
| 998 | my $checker_path = catfile($srcdir, "Configurations", $checker); |
| 999 | if (-f $checker_path) { |
| 1000 | my $fn = $ENV{CONFIGURE_CHECKER_WARN} |
| 1001 | ? sub { warn $@; } : sub { die $@; }; |
| 1002 | if (! do $checker_path) { |
| 1003 | if ($@) { |
| 1004 | $fn->($@); |
| 1005 | } elsif ($!) { |
| 1006 | $fn->($!); |
| 1007 | } else { |
| 1008 | $fn->("The detected tools didn't match the platform\n"); |
| 1009 | } |
| 1010 | } |
| 1011 | last; |
| 1012 | } |
| 1013 | } |
| 1014 | |
Richard Levitte | 488e2b0 | 2016-04-01 16:03:46 +0200 | [diff] [blame] | 1015 | push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release"; |
| 1016 | |
Richard Levitte | 68ab559 | 2016-02-05 15:14:45 +0100 | [diff] [blame] | 1017 | if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` =~ m/-mno-cygwin/m) |
Andy Polyakov | cbecd29 | 2010-11-30 22:18:02 +0000 | [diff] [blame] | 1018 | { |
Richard Levitte | 68ab559 | 2016-02-05 15:14:45 +0100 | [diff] [blame] | 1019 | $config{cflags} .= " -mno-cygwin"; |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 1020 | $config{shared_ldflag} .= " -mno-cygwin"; |
Andy Polyakov | cbecd29 | 2010-11-30 22:18:02 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Richard Levitte | 00b0d66 | 2016-02-22 14:10:45 +0100 | [diff] [blame] | 1023 | if ($target =~ /linux.*-mips/ && !$disabled{asm} && $user_cflags !~ /-m(ips|arch=)/) { |
Andy Polyakov | 63d8834 | 2012-09-15 11:21:50 +0000 | [diff] [blame] | 1024 | # minimally required architecture flags for assembly modules |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 1025 | $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/); |
| 1026 | $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/); |
Andy Polyakov | 63d8834 | 2012-09-15 11:21:50 +0000 | [diff] [blame] | 1027 | } |
| 1028 | |
Richard Levitte | 2964ba8 | 2003-01-11 11:40:39 +0000 | [diff] [blame] | 1029 | my $no_shared_warn=0; |
Andy Polyakov | 14bcdb0 | 2005-01-24 15:58:25 +0000 | [diff] [blame] | 1030 | my $no_user_cflags=0; |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1031 | my $no_user_defines=0; |
Richard Levitte | 2964ba8 | 2003-01-11 11:40:39 +0000 | [diff] [blame] | 1032 | |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1033 | # The DSO code currently always implements all functions so that no |
| 1034 | # applications will have to worry about that from a compilation point |
| 1035 | # of view. However, the "method"s may return zero unless that platform |
| 1036 | # has support compiled in for them. Currently each method is enabled |
| 1037 | # by a define "DSO_<name>" ... we translate the "dso_scheme" config |
| 1038 | # string entry into using the following logic; |
Richard Levitte | 721f905 | 2016-02-22 14:12:35 +0100 | [diff] [blame] | 1039 | if (!$disabled{dso} && $target{dso_scheme} ne "") |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1040 | { |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1041 | $target{dso_scheme} =~ tr/[a-z]/[A-Z]/; |
| 1042 | if ($target{dso_scheme} eq "DLFCN") |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1043 | { |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 1044 | unshift @{$config{defines}}, "DSO_DLFCN", "HAVE_DLFCN_H"; |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1045 | } |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1046 | elsif ($target{dso_scheme} eq "DLFCN_NO_H") |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1047 | { |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 1048 | unshift @{$config{defines}}, "DSO_DLFCN"; |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1049 | } |
| 1050 | else |
| 1051 | { |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 1052 | unshift @{$config{defines}}, "DSO_$target{dso_scheme}"; |
Geoff Thorpe | bc2aada | 2000-04-06 07:09:45 +0000 | [diff] [blame] | 1053 | } |
| 1054 | } |
Geoff Thorpe | 9ec0126 | 2000-04-04 22:32:19 +0000 | [diff] [blame] | 1055 | |
Richard Levitte | 1740c16 | 2016-01-29 18:07:37 +0100 | [diff] [blame] | 1056 | $config{ex_libs}="$libs$config{ex_libs}" if ($libs ne ""); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1057 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 1058 | # If threads aren't disabled, check how possible they are |
| 1059 | unless ($disabled{threads}) { |
| 1060 | if ($auto_threads) { |
| 1061 | # Enabled by default, disable it forcibly if unavailable |
| 1062 | if ($target{thread_scheme} eq "(unknown)") { |
| 1063 | $disabled{threads} = "unavailable"; |
| 1064 | } |
| 1065 | } else { |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 1066 | # The user chose to enable threads explicitly, let's see |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 1067 | # if there's a chance that's possible |
| 1068 | if ($target{thread_scheme} eq "(unknown)") { |
| 1069 | # If the user asked for "threads" and we don't have internal |
| 1070 | # knowledge how to do it, [s]he is expected to provide any |
| 1071 | # system-dependent compiler options that are necessary. We |
| 1072 | # can't truly check that the given options are correct, but |
| 1073 | # we expect the user to know what [s]He is doing. |
| 1074 | if ($no_user_cflags && $no_user_defines) { |
| 1075 | die "You asked for multi-threading support, but didn't\n" |
| 1076 | ,"provide any system-specific compiler options\n"; |
| 1077 | } |
| 1078 | } |
| 1079 | } |
| 1080 | } |
| 1081 | |
| 1082 | # If threads still aren't disabled, add a C macro to ensure the source |
| 1083 | # code knows about it. Any other flag is taken care of by the configs. |
| 1084 | unless($disabled{threads}) { |
| 1085 | foreach (("defines", "openssl_thread_defines")) { |
| 1086 | push @{$config{$_}}, "OPENSSL_THREADS"; |
| 1087 | } |
| 1088 | } |
Richard Levitte | e452de9 | 2001-07-12 09:11:14 +0000 | [diff] [blame] | 1089 | |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 1090 | # With "deprecated" disable all deprecated features. |
| 1091 | if (defined($disabled{"deprecated"})) { |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 1092 | $config{api} = $maxapi; |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 1093 | } |
Matt Caswell | 07c4c14 | 2014-12-17 13:17:26 +0000 | [diff] [blame] | 1094 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1095 | if ($target{shared_target} eq "") |
Andy Polyakov | 6f7ac8e | 2002-12-13 17:56:14 +0000 | [diff] [blame] | 1096 | { |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 1097 | $no_shared_warn = 1 |
Emilia Kasper | b53338c | 2017-02-28 12:30:28 +0100 | [diff] [blame] | 1098 | if (!$disabled{shared} || !$disabled{"dynamic-engine"}); |
Richard Levitte | 84af1ba | 2016-02-22 13:52:46 +0100 | [diff] [blame] | 1099 | $disabled{shared} = "no-shared-target"; |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 1100 | $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} = |
| 1101 | "no-shared-target"; |
Andy Polyakov | 6f7ac8e | 2002-12-13 17:56:14 +0000 | [diff] [blame] | 1102 | } |
Richard Levitte | b436a98 | 2000-07-21 15:08:53 +0000 | [diff] [blame] | 1103 | |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 1104 | if ($disabled{"dynamic-engine"}) { |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 1105 | push @{$config{defines}}, "OPENSSL_NO_DYNAMIC_ENGINE"; |
| 1106 | $config{dynamic_engines} = 0; |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 1107 | } else { |
| 1108 | push @{$config{defines}}, "OPENSSL_NO_STATIC_ENGINE"; |
| 1109 | $config{dynamic_engines} = 1; |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 1110 | } |
Richard Levitte | ecd4531 | 2002-10-11 18:06:08 +0000 | [diff] [blame] | 1111 | |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 1112 | unless ($disabled{asan}) { |
| 1113 | $config{cflags} .= "-fsanitize=address "; |
| 1114 | } |
| 1115 | |
| 1116 | unless ($disabled{ubsan}) { |
FdaSilvaYY | f430ba3 | 2016-06-19 19:39:01 +0200 | [diff] [blame] | 1117 | # -DPEDANTIC or -fnosanitize=alignment may also be required on some |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 1118 | # platforms. |
| 1119 | $config{cflags} .= "-fsanitize=undefined -fno-sanitize-recover=all "; |
| 1120 | } |
| 1121 | |
Emilia Kasper | 29df306 | 2016-07-28 20:24:28 +0200 | [diff] [blame] | 1122 | unless ($disabled{msan}) { |
| 1123 | $config{cflags} .= "-fsanitize=memory "; |
| 1124 | } |
| 1125 | |
Richard Levitte | 65cc6d5 | 2016-06-05 10:59:31 +0200 | [diff] [blame] | 1126 | unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"} |
Emilia Kasper | 29df306 | 2016-07-28 20:24:28 +0200 | [diff] [blame] | 1127 | && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) { |
Ben Laurie | c38bb72 | 2016-03-26 17:19:14 +0000 | [diff] [blame] | 1128 | $config{cflags} .= "-fno-omit-frame-pointer -g "; |
| 1129 | } |
Andy Polyakov | c313e32 | 2007-09-16 12:23:47 +0000 | [diff] [blame] | 1130 | # |
| 1131 | # Platform fix-ups |
| 1132 | # |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 1133 | |
| 1134 | # This saves the build files from having to check |
| 1135 | if ($disabled{pic}) |
| 1136 | { |
| 1137 | $target{shared_cflag} = $target{shared_ldflag} = |
| 1138 | $target{shared_rcflag} = ""; |
| 1139 | } |
Richard Levitte | 4f16039 | 2016-02-21 20:52:39 +0100 | [diff] [blame] | 1140 | else |
| 1141 | { |
| 1142 | push @{$config{defines}}, "OPENSSL_PIC"; |
| 1143 | } |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 1144 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1145 | if ($target{sys_id} ne "") |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 1146 | { |
Richard Levitte | 642a613 | 2015-12-27 02:27:30 +0100 | [diff] [blame] | 1147 | push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}"; |
Richard Levitte | cf1b7d9 | 2001-02-19 16:06:34 +0000 | [diff] [blame] | 1148 | } |
| 1149 | |
Richard Levitte | 00b0d66 | 2016-02-22 14:10:45 +0100 | [diff] [blame] | 1150 | unless ($disabled{asm}) { |
Richard Levitte | d2b2221 | 2016-02-27 11:25:33 +0100 | [diff] [blame] | 1151 | $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386"); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1152 | $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m})); |
Andy Polyakov | f8c469d | 2004-08-02 22:41:19 +0000 | [diff] [blame] | 1153 | |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1154 | # bn-586 is the only one implementing bn_*_part_words |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1155 | push @{$config{defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/); |
| 1156 | push @{$config{defines}}, "OPENSSL_IA32_SSE2" if (!$no_sse2 && $target{bn_asm_src} =~ /86/); |
Ralf S. Engelschall | dfeab06 | 1998-12-21 11:00:56 +0000 | [diff] [blame] | 1157 | |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1158 | push @{$config{defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/); |
| 1159 | push @{$config{defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/); |
| 1160 | push @{$config{defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/); |
Andy Polyakov | 5ac7bde | 2005-10-07 14:18:06 +0000 | [diff] [blame] | 1161 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1162 | if ($target{sha1_asm_src}) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1163 | push @{$config{defines}}, "SHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/); |
| 1164 | push @{$config{defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/); |
| 1165 | push @{$config{defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/); |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1166 | } |
Richard Levitte | 216e8d9 | 2016-08-26 09:59:55 +0200 | [diff] [blame] | 1167 | if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) { |
| 1168 | push @{$config{defines}}, "RC4_ASM"; |
| 1169 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1170 | if ($target{md5_asm_src}) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1171 | push @{$config{defines}}, "MD5_ASM"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1172 | } |
Richard Levitte | d2b2221 | 2016-02-27 11:25:33 +0100 | [diff] [blame] | 1173 | $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1174 | if ($target{rmd160_asm_src}) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1175 | push @{$config{defines}}, "RMD160_ASM"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1176 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1177 | if ($target{aes_asm_src}) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1178 | push @{$config{defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1179 | # aes-ctr.fake is not a real file, only indication that assembler |
Andy Polyakov | 874a375 | 2010-07-09 12:21:52 +0000 | [diff] [blame] | 1180 | # module implements AES_ctr32_encrypt... |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1181 | push @{$config{defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1182 | # aes-xts.fake indicates presence of AES_xts_[en|de]crypt... |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1183 | push @{$config{defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1184 | $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($no_sse2); |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1185 | push @{$config{defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/); |
| 1186 | push @{$config{defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/); |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1187 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1188 | if ($target{wp_asm_src} =~ /mmx/) { |
Andy Polyakov | 46d4d86 | 2016-01-29 14:23:24 +0100 | [diff] [blame] | 1189 | if ($config{processor} eq "386") { |
Richard Levitte | d2b2221 | 2016-02-27 11:25:33 +0100 | [diff] [blame] | 1190 | $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src}; |
Andy Polyakov | 46d4d86 | 2016-01-29 14:23:24 +0100 | [diff] [blame] | 1191 | } elsif (!$disabled{"whirlpool"}) { |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 1192 | push @{$config{defines}}, "WHIRLPOOL_ASM"; |
Andy Polyakov | 46d4d86 | 2016-01-29 14:23:24 +0100 | [diff] [blame] | 1193 | } |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1194 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1195 | if ($target{modes_asm_src} =~ /ghash-/) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1196 | push @{$config{defines}}, "GHASH_ASM"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1197 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1198 | if ($target{ec_asm_src} =~ /ecp_nistz256/) { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1199 | push @{$config{defines}}, "ECP_NISTZ256_ASM"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1200 | } |
Richard Levitte | 7b176a5 | 2016-08-29 16:58:31 +0200 | [diff] [blame] | 1201 | if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) { |
| 1202 | push @{$config{defines}}, "PADLOCK_ASM"; |
| 1203 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1204 | if ($target{poly1305_asm_src} ne "") { |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1205 | push @{$config{defines}}, "POLY1305_ASM"; |
Richard Levitte | 9e0724a | 2015-05-18 02:54:28 +0200 | [diff] [blame] | 1206 | } |
| 1207 | } |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 1208 | |
Richard Levitte | 8ed40b8 | 2016-01-27 19:03:13 +0100 | [diff] [blame] | 1209 | my $ecc = $target{cc}; |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 1210 | if ($^O ne "VMS" && !$disabled{makedepend}) { |
Richard Levitte | a583fc4 | 2016-02-16 16:08:06 +0100 | [diff] [blame] | 1211 | # Is the compiler gcc or clang? $ecc is used below to see if |
| 1212 | # error-checking can be turned on. |
| 1213 | my $ccpcc = "$config{cross_compile_prefix}$target{cc}"; |
Andy Polyakov | d0db7ee | 2016-03-11 12:33:59 +0100 | [diff] [blame] | 1214 | open(PIPE, "$ccpcc --version 2>&1 |"); |
| 1215 | my $lines = 2; |
Richard Levitte | a583fc4 | 2016-02-16 16:08:06 +0100 | [diff] [blame] | 1216 | while ( <PIPE> ) { |
Richard Levitte | 30752dd | 2016-03-08 17:16:16 +0100 | [diff] [blame] | 1217 | # Find the version number and save the major. |
| 1218 | m|(?:.*)\b(\d+)\.\d+\.\d+\b(?:.*)|; |
Richard Levitte | 39affe1 | 2016-03-10 19:33:11 +0100 | [diff] [blame] | 1219 | my $compiler_major = $1; |
Richard Levitte | 30752dd | 2016-03-08 17:16:16 +0100 | [diff] [blame] | 1220 | # We know that GNU C version 3 and up as well as all clang |
| 1221 | # versions support dependency generation |
Richard Levitte | 39affe1 | 2016-03-10 19:33:11 +0100 | [diff] [blame] | 1222 | $config{makedepprog} = $ccpcc |
Andy Polyakov | 35c11bf | 2016-09-10 21:12:56 +0200 | [diff] [blame] | 1223 | if (/clang/ || (/gcc/ && $compiler_major >= 3)); |
Richard Levitte | a583fc4 | 2016-02-16 16:08:06 +0100 | [diff] [blame] | 1224 | $ecc = "clang" if /clang/; |
| 1225 | $ecc = "gcc" if /gcc/; |
Andy Polyakov | d0db7ee | 2016-03-11 12:33:59 +0100 | [diff] [blame] | 1226 | last if ($config{makedepprog} || !$lines--); |
Richard Levitte | a583fc4 | 2016-02-16 16:08:06 +0100 | [diff] [blame] | 1227 | } |
| 1228 | close(PIPE); |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 1229 | |
Andy Polyakov | 656bbdc | 2016-05-20 21:31:11 +0200 | [diff] [blame] | 1230 | $config{makedepprog} = which('makedepend') unless $config{makedepprog}; |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 1231 | $disabled{makedepend} = "unavailable" unless $config{makedepprog}; |
Rich Salz | f1f07a2 | 2016-01-29 19:50:28 -0500 | [diff] [blame] | 1232 | } |
Richard Levitte | 8ed40b8 | 2016-01-27 19:03:13 +0100 | [diff] [blame] | 1233 | |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1234 | |
Richard Levitte | 09aa263 | 2016-03-09 01:14:29 +0100 | [diff] [blame] | 1235 | |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1236 | # Deal with bn_ops ################################################### |
| 1237 | |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1238 | $config{bn_ll} =0; |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1239 | $config{export_var_as_fn} =0; |
| 1240 | my $def_int="unsigned int"; |
| 1241 | $config{rc4_int} =$def_int; |
Rich Salz | b4f35e5 | 2016-01-23 13:23:25 -0500 | [diff] [blame] | 1242 | ($config{b64l},$config{b64},$config{b32})=(0,0,1); |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1243 | |
Rich Salz | 94af0cd | 2016-01-28 10:13:21 -0500 | [diff] [blame] | 1244 | my $count = 0; |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1245 | foreach (sort split(/\s+/,$target{bn_ops})) { |
Rich Salz | 94af0cd | 2016-01-28 10:13:21 -0500 | [diff] [blame] | 1246 | $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/; |
| 1247 | $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN'; |
| 1248 | $config{bn_ll}=1 if $_ eq 'BN_LLONG'; |
| 1249 | $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR'; |
| 1250 | ($config{b64l},$config{b64},$config{b32}) |
| 1251 | =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT'; |
| 1252 | ($config{b64l},$config{b64},$config{b32}) |
| 1253 | =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG'; |
| 1254 | ($config{b64l},$config{b64},$config{b32}) |
| 1255 | =(0,0,1) if $_ eq 'THIRTY_TWO_BIT'; |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1256 | } |
Rich Salz | 94af0cd | 2016-01-28 10:13:21 -0500 | [diff] [blame] | 1257 | die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n" |
| 1258 | if $count > 1; |
Richard Levitte | 7d130f6 | 2015-05-19 01:40:54 +0200 | [diff] [blame] | 1259 | |
| 1260 | |
| 1261 | # Hack cflags for better warnings (dev option) ####################### |
| 1262 | |
Richard Levitte | 1ed0c66 | 2002-05-30 18:06:35 +0000 | [diff] [blame] | 1263 | # "Stringify" the C flags string. This permits it to be made part of a string |
| 1264 | # and works as well on command lines. |
Richard Levitte | 01d9997 | 2016-03-14 10:02:13 +0100 | [diff] [blame] | 1265 | $config{cflags} =~ s/([\\\"])/\\$1/g; |
Richard Levitte | 1ed0c66 | 2002-05-30 18:06:35 +0000 | [diff] [blame] | 1266 | |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 1267 | if (defined($config{api})) { |
| 1268 | $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ]; |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1269 | my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}}); |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 1270 | push @{$config{defines}}, $apiflag; |
Viktor Dukhovni | 98186eb | 2016-01-04 23:00:33 -0500 | [diff] [blame] | 1271 | } |
| 1272 | |
Dr. Stephen Henson | 0c28f27 | 2009-09-09 16:31:32 +0000 | [diff] [blame] | 1273 | if ($strict_warnings) |
| 1274 | { |
| 1275 | my $wopt; |
Rich Salz | f1f07a2 | 2016-01-29 19:50:28 -0500 | [diff] [blame] | 1276 | die "ERROR --strict-warnings requires gcc or clang" |
| 1277 | unless $ecc eq 'gcc' || $ecc eq 'clang'; |
Dr. Stephen Henson | 0c28f27 | 2009-09-09 16:31:32 +0000 | [diff] [blame] | 1278 | foreach $wopt (split /\s+/, $gcc_devteam_warn) |
| 1279 | { |
Richard Levitte | d918f9c | 2016-02-16 23:27:13 +0100 | [diff] [blame] | 1280 | $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/) |
Dr. Stephen Henson | 0c28f27 | 2009-09-09 16:31:32 +0000 | [diff] [blame] | 1281 | } |
Ben Laurie | 190c8c6 | 2015-04-19 14:10:54 +0100 | [diff] [blame] | 1282 | if ($ecc eq "clang") |
| 1283 | { |
| 1284 | foreach $wopt (split /\s+/, $clang_devteam_warn) |
| 1285 | { |
Richard Levitte | d918f9c | 2016-02-16 23:27:13 +0100 | [diff] [blame] | 1286 | $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/) |
Ben Laurie | 190c8c6 | 2015-04-19 14:10:54 +0100 | [diff] [blame] | 1287 | } |
| 1288 | } |
Richard Levitte | ef8ca6b | 2016-02-14 12:16:52 +0100 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | unless ($disabled{"crypto-mdebug-backtrace"}) |
| 1292 | { |
| 1293 | foreach my $wopt (split /\s+/, $memleak_devteam_backtrace) |
Richard Levitte | a1d3f3d | 2015-12-02 18:44:26 +0100 | [diff] [blame] | 1294 | { |
Richard Levitte | d918f9c | 2016-02-16 23:27:13 +0100 | [diff] [blame] | 1295 | $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/) |
Richard Levitte | ef8ca6b | 2016-02-14 12:16:52 +0100 | [diff] [blame] | 1296 | } |
| 1297 | if ($target =~ /^BSD-/) |
| 1298 | { |
| 1299 | $config{ex_libs} .= " -lexecinfo"; |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1300 | } |
Dr. Stephen Henson | 0c28f27 | 2009-09-09 16:31:32 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Kurt Roeckx | 7cb58c0 | 2016-12-03 16:57:04 +0100 | [diff] [blame] | 1303 | if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; $config{cxxflags}="$config{cxxflags}$user_cflags";} |
Richard Levitte | 6399409 | 2016-02-13 13:02:35 +0100 | [diff] [blame] | 1304 | else { $no_user_cflags=1; } |
| 1305 | if (@user_defines) { $config{defines}=[ @{$config{defines}}, @user_defines ]; } |
| 1306 | else { $no_user_defines=1; } |
| 1307 | |
| 1308 | # ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON |
| 1309 | |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 1310 | unless ($disabled{afalgeng}) { |
| 1311 | $config{afalgeng}=""; |
Richard Levitte | 79fff39 | 2016-03-09 09:04:01 +0100 | [diff] [blame] | 1312 | if ($target =~ m/^linux/) { |
| 1313 | my $minver = 4*10000 + 1*100 + 0; |
| 1314 | if ($config{cross_compile_prefix} eq "") { |
| 1315 | my $verstr = `uname -r`; |
| 1316 | my ($ma, $mi1, $mi2) = split("\\.", $verstr); |
| 1317 | ($mi2) = $mi2 =~ /(\d+)/; |
| 1318 | my $ver = $ma*10000 + $mi1*100 + $mi2; |
| 1319 | if ($ver < $minver) { |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 1320 | $disabled{afalgeng} = "too-old-kernel"; |
Richard Levitte | 79fff39 | 2016-03-09 09:04:01 +0100 | [diff] [blame] | 1321 | } else { |
| 1322 | push @{$config{engdirs}}, "afalg"; |
| 1323 | } |
Matt Caswell | 68dc37c | 2016-03-16 10:08:53 +0000 | [diff] [blame] | 1324 | } else { |
| 1325 | $disabled{afalgeng} = "cross-compiling"; |
clucey | 6cba4a6 | 2016-02-23 08:01:01 +0000 | [diff] [blame] | 1326 | } |
Richard Levitte | 79fff39 | 2016-03-09 09:04:01 +0100 | [diff] [blame] | 1327 | } else { |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 1328 | $disabled{afalgeng} = "not-linux"; |
clucey | 7f458a4 | 2016-02-17 13:38:36 +0000 | [diff] [blame] | 1329 | } |
| 1330 | } |
Matt Caswell | 8da00a3 | 2016-02-29 13:36:47 +0000 | [diff] [blame] | 1331 | |
Emilia Kasper | c91a0a8 | 2016-03-14 12:21:44 +0100 | [diff] [blame] | 1332 | push @{$config{openssl_other_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng}); |
clucey | 7f458a4 | 2016-02-17 13:38:36 +0000 | [diff] [blame] | 1333 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1334 | # If we use the unified build, collect information from build.info files |
| 1335 | my %unified_info = (); |
| 1336 | |
Richard Levitte | 2b6b606 | 2016-03-10 00:04:04 +0100 | [diff] [blame] | 1337 | my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO}); |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 1338 | if ($builder eq "unified") { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1339 | use lib catdir(dirname(__FILE__),"util"); |
| 1340 | use with_fallback qw(Text::Template); |
| 1341 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1342 | sub cleandir { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1343 | my $base = shift; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1344 | my $dir = shift; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1345 | my $relativeto = shift || "."; |
| 1346 | |
| 1347 | $dir = catdir($base,$dir) unless isabsolute($dir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1348 | |
Richard Levitte | ec182ef | 2016-02-09 10:15:13 +0100 | [diff] [blame] | 1349 | # Make sure the directories we're building in exists |
| 1350 | mkpath($dir); |
| 1351 | |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1352 | my $res = abs2rel(absolutedir($dir), rel2abs($relativeto)); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1353 | #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n"; |
| 1354 | return $res; |
| 1355 | } |
| 1356 | |
| 1357 | sub cleanfile { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1358 | my $base = shift; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1359 | my $file = shift; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1360 | my $relativeto = shift || "."; |
| 1361 | |
| 1362 | $file = catfile($base,$file) unless isabsolute($file); |
| 1363 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1364 | my $d = dirname($file); |
| 1365 | my $f = basename($file); |
| 1366 | |
Richard Levitte | ec182ef | 2016-02-09 10:15:13 +0100 | [diff] [blame] | 1367 | # Make sure the directories we're building in exists |
| 1368 | mkpath($d); |
| 1369 | |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1370 | my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto)); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1371 | #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n"; |
| 1372 | return $res; |
| 1373 | } |
| 1374 | |
Richard Levitte | 1967a42 | 2016-09-15 23:55:24 +0200 | [diff] [blame] | 1375 | # Store the name of the template file we will build the build file from |
| 1376 | # in %config. This may be useful for the build file itself. |
| 1377 | my @build_file_template_names = |
| 1378 | ( $builder_platform."-".$target{build_file}.".tmpl", |
| 1379 | $target{build_file}.".tmpl" ); |
| 1380 | my @build_file_templates = (); |
| 1381 | |
| 1382 | # First, look in the user provided directory, if given |
| 1383 | if (defined $ENV{$local_config_envname}) { |
| 1384 | @build_file_templates = |
| 1385 | map { |
| 1386 | if ($^O eq 'VMS') { |
| 1387 | # VMS environment variables are logical names, |
| 1388 | # which can be used as is |
| 1389 | $local_config_envname . ':' . $_; |
| 1390 | } else { |
| 1391 | catfile($ENV{$local_config_envname}, $_); |
| 1392 | } |
| 1393 | } |
| 1394 | @build_file_template_names; |
| 1395 | } |
| 1396 | # Then, look in our standard directory |
| 1397 | push @build_file_templates, |
| 1398 | ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) } |
| 1399 | @build_file_template_names ); |
| 1400 | |
| 1401 | my $build_file_template; |
| 1402 | for $_ (@build_file_templates) { |
| 1403 | $build_file_template = $_; |
| 1404 | last if -f $build_file_template; |
| 1405 | |
| 1406 | $build_file_template = undef; |
| 1407 | } |
| 1408 | if (!defined $build_file_template) { |
| 1409 | die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n"; |
| 1410 | } |
| 1411 | $config{build_file_templates} |
| 1412 | = [ $build_file_template, |
| 1413 | cleanfile($srcdir, catfile("Configurations", "common.tmpl"), |
| 1414 | $blddir) ]; |
| 1415 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1416 | my @build_infos = ( [ ".", "build.info" ] ); |
| 1417 | foreach (@{$config{dirs}}) { |
| 1418 | push @build_infos, [ $_, "build.info" ] |
| 1419 | if (-f catfile($srcdir, $_, "build.info")); |
| 1420 | } |
| 1421 | foreach (@{$config{sdirs}}) { |
| 1422 | push @build_infos, [ catdir("crypto", $_), "build.info" ] |
| 1423 | if (-f catfile($srcdir, "crypto", $_, "build.info")); |
| 1424 | } |
| 1425 | foreach (@{$config{engdirs}}) { |
| 1426 | push @build_infos, [ catdir("engines", $_), "build.info" ] |
| 1427 | if (-f catfile($srcdir, "engines", $_, "build.info")); |
| 1428 | } |
Richard Levitte | cfa7697 | 2016-10-12 16:05:06 +0100 | [diff] [blame] | 1429 | foreach (@{$config{tdirs}}) { |
| 1430 | push @build_infos, [ catdir("test", $_), "build.info" ] |
| 1431 | if (-f catfile($srcdir, "test", $_, "build.info")); |
| 1432 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1433 | |
Richard Levitte | 2e0956b | 2016-02-28 01:13:17 +0100 | [diff] [blame] | 1434 | $config{build_infos} = [ ]; |
| 1435 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1436 | foreach (@build_infos) { |
| 1437 | my $sourced = catdir($srcdir, $_->[0]); |
| 1438 | my $buildd = catdir($blddir, $_->[0]); |
| 1439 | |
Richard Levitte | dca9938 | 2016-02-08 16:27:15 +0100 | [diff] [blame] | 1440 | mkpath($buildd); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1441 | |
| 1442 | my $f = $_->[1]; |
| 1443 | # The basic things we're trying to build |
| 1444 | my @programs = (); |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1445 | my @programs_install = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1446 | my @libraries = (); |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1447 | my @libraries_install = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1448 | my @engines = (); |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1449 | my @engines_install = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1450 | my @scripts = (); |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1451 | my @scripts_install = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1452 | my @extra = (); |
Richard Levitte | 8a67946 | 2016-03-07 14:50:37 +0100 | [diff] [blame] | 1453 | my @overrides = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1454 | my @intermediates = (); |
| 1455 | my @rawlines = (); |
| 1456 | |
| 1457 | my %ordinals = (); |
| 1458 | my %sources = (); |
Richard Levitte | 2a08d1a | 2016-03-29 16:45:03 +0200 | [diff] [blame] | 1459 | my %shared_sources = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1460 | my %includes = (); |
| 1461 | my %depends = (); |
| 1462 | my %renames = (); |
| 1463 | my %sharednames = (); |
Richard Levitte | ae4c745 | 2016-03-07 14:37:00 +0100 | [diff] [blame] | 1464 | my %generate = (); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1465 | |
Richard Levitte | 2e0956b | 2016-02-28 01:13:17 +0100 | [diff] [blame] | 1466 | push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1467 | my $template = Text::Template->new(TYPE => 'FILE', |
| 1468 | SOURCE => catfile($sourced, $f)); |
| 1469 | die "Something went wrong with $sourced/$f: $!\n" unless $template; |
| 1470 | my @text = |
| 1471 | split /^/m, |
| 1472 | $template->fill_in(HASH => { config => \%config, |
| 1473 | target => \%target, |
Richard Levitte | 9e04edf | 2016-02-22 13:45:46 +0100 | [diff] [blame] | 1474 | disabled => \%disabled, |
Kurt Roeckx | f59d013 | 2016-05-07 22:09:13 +0200 | [diff] [blame] | 1475 | withargs => \%withargs, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1476 | builddir => abs2rel($buildd, $blddir), |
| 1477 | sourcedir => abs2rel($sourced, $blddir), |
| 1478 | buildtop => abs2rel($blddir, $blddir), |
| 1479 | sourcetop => abs2rel($srcdir, $blddir) }, |
| 1480 | DELIMITERS => [ "{-", "-}" ]); |
| 1481 | |
| 1482 | # The top item of this stack has the following values |
| 1483 | # -2 positive already run and we found ELSE (following ELSIF should fail) |
| 1484 | # -1 positive already run (skip until ENDIF) |
| 1485 | # 0 negatives so far (if we're at a condition, check it) |
| 1486 | # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF) |
| 1487 | # 2 positive ELSE (following ELSIF should fail) |
| 1488 | my @skip = (); |
| 1489 | collect_information( |
| 1490 | collect_from_array([ @text ], |
| 1491 | qr/\\$/ => sub { my $l1 = shift; my $l2 = shift; |
| 1492 | $l1 =~ s/\\$//; $l1.$l2 }), |
| 1493 | # Info we're looking for |
| 1494 | qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/ |
Richard Levitte | 635bd40 | 2016-03-09 14:33:37 +0100 | [diff] [blame] | 1495 | => sub { |
Richard Levitte | c5798e0 | 2016-03-09 23:58:44 +0100 | [diff] [blame] | 1496 | if (! @skip || $skip[$#skip] > 0) { |
Richard Levitte | 635bd40 | 2016-03-09 14:33:37 +0100 | [diff] [blame] | 1497 | push @skip, !! $1; |
| 1498 | } else { |
| 1499 | push @skip, -1; |
| 1500 | } |
| 1501 | }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1502 | qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/ |
| 1503 | => sub { die "ELSIF out of scope" if ! @skip; |
| 1504 | die "ELSIF following ELSE" if abs($skip[$#skip]) == 2; |
| 1505 | $skip[$#skip] = -1 if $skip[$#skip] != 0; |
| 1506 | $skip[$#skip] = !! $1 |
| 1507 | if $skip[$#skip] == 0; }, |
| 1508 | qr/^\s*ELSE\s*$/ |
| 1509 | => sub { die "ELSE out of scope" if ! @skip; |
| 1510 | $skip[$#skip] = -2 if $skip[$#skip] != 0; |
| 1511 | $skip[$#skip] = 2 if $skip[$#skip] == 0; }, |
| 1512 | qr/^\s*ENDIF\s*$/ |
| 1513 | => sub { die "ENDIF out of scope" if ! @skip; |
| 1514 | pop @skip; }, |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1515 | qr/^\s*PROGRAMS(_NO_INST)?\s*=\s*(.*)\s*$/ |
| 1516 | => sub { |
| 1517 | if (!@skip || $skip[$#skip] > 0) { |
| 1518 | my $install = $1; |
| 1519 | my @x = tokenize($2); |
| 1520 | push @programs, @x; |
| 1521 | push @programs_install, @x unless $install; |
| 1522 | } |
| 1523 | }, |
| 1524 | qr/^\s*LIBS(_NO_INST)?\s*=\s*(.*)\s*$/ |
| 1525 | => sub { |
| 1526 | if (!@skip || $skip[$#skip] > 0) { |
| 1527 | my $install = $1; |
| 1528 | my @x = tokenize($2); |
| 1529 | push @libraries, @x; |
| 1530 | push @libraries_install, @x unless $install; |
| 1531 | } |
| 1532 | }, |
| 1533 | qr/^\s*ENGINES(_NO_INST)?\s*=\s*(.*)\s*$/ |
| 1534 | => sub { |
| 1535 | if (!@skip || $skip[$#skip] > 0) { |
| 1536 | my $install = $1; |
| 1537 | my @x = tokenize($2); |
| 1538 | push @engines, @x; |
| 1539 | push @engines_install, @x unless $install; |
| 1540 | } |
| 1541 | }, |
| 1542 | qr/^\s*SCRIPTS(_NO_INST)?\s*=\s*(.*)\s*$/ |
| 1543 | => sub { |
| 1544 | if (!@skip || $skip[$#skip] > 0) { |
| 1545 | my $install = $1; |
| 1546 | my @x = tokenize($2); |
| 1547 | push @scripts, @x; |
| 1548 | push @scripts_install, @x unless $install; |
| 1549 | } |
| 1550 | }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1551 | qr/^\s*EXTRA\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1552 | => sub { push @extra, tokenize($1) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1553 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 8a67946 | 2016-03-07 14:50:37 +0100 | [diff] [blame] | 1554 | qr/^\s*OVERRIDES\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1555 | => sub { push @overrides, tokenize($1) |
Richard Levitte | 8a67946 | 2016-03-07 14:50:37 +0100 | [diff] [blame] | 1556 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1557 | |
| 1558 | qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/, |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1559 | => sub { push @{$ordinals{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1560 | if !@skip || $skip[$#skip] > 0 }, |
| 1561 | qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1562 | => sub { push @{$sources{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1563 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 2a08d1a | 2016-03-29 16:45:03 +0200 | [diff] [blame] | 1564 | qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1565 | => sub { push @{$shared_sources{$1}}, tokenize($2) |
Richard Levitte | 2a08d1a | 2016-03-29 16:45:03 +0200 | [diff] [blame] | 1566 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1567 | qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1568 | => sub { push @{$includes{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1569 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 4f85829 | 2016-06-13 21:57:51 +0200 | [diff] [blame] | 1570 | qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1571 | => sub { push @{$depends{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1572 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | ae4c745 | 2016-03-07 14:37:00 +0100 | [diff] [blame] | 1573 | qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
| 1574 | => sub { push @{$generate{$1}}, $2 |
| 1575 | if !@skip || $skip[$#skip] > 0 }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1576 | qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1577 | => sub { push @{$renames{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1578 | if !@skip || $skip[$#skip] > 0 }, |
| 1579 | qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/ |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 1580 | => sub { push @{$sharednames{$1}}, tokenize($2) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1581 | if !@skip || $skip[$#skip] > 0 }, |
| 1582 | qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/ |
| 1583 | => sub { |
| 1584 | my $lineiterator = shift; |
| 1585 | my $target_kind = $1; |
| 1586 | while (defined $lineiterator->()) { |
Richard Levitte | 04f171c | 2016-02-12 12:10:27 +0100 | [diff] [blame] | 1587 | s|\R$||; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1588 | if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) { |
| 1589 | die "ENDRAW doesn't match BEGINRAW" |
| 1590 | if $1 ne $target_kind; |
| 1591 | last; |
| 1592 | } |
| 1593 | next if @skip && $skip[$#skip] <= 0; |
| 1594 | push @rawlines, $_ |
| 1595 | if ($target_kind eq $target{build_file} |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 1596 | || $target_kind eq $target{build_file}."(".$builder_platform.")"); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1597 | } |
| 1598 | }, |
Richard Levitte | ab6e147 | 2016-10-25 12:40:32 +0200 | [diff] [blame] | 1599 | qr/^\s*(?:#.*)?$/ => sub { }, |
Richard Levitte | 2b6b606 | 2016-03-10 00:04:04 +0100 | [diff] [blame] | 1600 | "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" }, |
| 1601 | "BEFORE" => sub { |
| 1602 | if ($buildinfo_debug) { |
| 1603 | print STDERR "DEBUG: Parsing ",join(" ", @_),"\n"; |
| 1604 | print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n"; |
| 1605 | } |
| 1606 | }, |
| 1607 | "AFTER" => sub { |
| 1608 | if ($buildinfo_debug) { |
| 1609 | print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n"; |
| 1610 | } |
| 1611 | }, |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1612 | ); |
| 1613 | die "runaway IF?" if (@skip); |
| 1614 | |
| 1615 | foreach (keys %renames) { |
| 1616 | die "$_ renamed to more than one thing: " |
| 1617 | ,join(" ", @{$renames{$_}}),"\n" |
| 1618 | if scalar @{$renames{$_}} > 1; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1619 | my $dest = cleanfile($buildd, $_, $blddir); |
| 1620 | my $to = cleanfile($buildd, $renames{$_}->[0], $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1621 | die "$dest renamed to more than one thing: " |
| 1622 | ,$unified_info{rename}->{$dest}, $to |
| 1623 | unless !defined($unified_info{rename}->{$dest}) |
| 1624 | or $unified_info{rename}->{$dest} eq $to; |
| 1625 | $unified_info{rename}->{$dest} = $to; |
| 1626 | } |
| 1627 | |
| 1628 | foreach (@programs) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1629 | my $program = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1630 | if ($unified_info{rename}->{$program}) { |
| 1631 | $program = $unified_info{rename}->{$program}; |
| 1632 | } |
| 1633 | $unified_info{programs}->{$program} = 1; |
| 1634 | } |
| 1635 | |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1636 | foreach (@programs_install) { |
| 1637 | my $program = cleanfile($buildd, $_, $blddir); |
| 1638 | if ($unified_info{rename}->{$program}) { |
| 1639 | $program = $unified_info{rename}->{$program}; |
| 1640 | } |
| 1641 | $unified_info{install}->{programs}->{$program} = 1; |
| 1642 | } |
| 1643 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1644 | foreach (@libraries) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1645 | my $library = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1646 | if ($unified_info{rename}->{$library}) { |
| 1647 | $library = $unified_info{rename}->{$library}; |
| 1648 | } |
| 1649 | $unified_info{libraries}->{$library} = 1; |
| 1650 | } |
| 1651 | |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1652 | foreach (@libraries_install) { |
| 1653 | my $library = cleanfile($buildd, $_, $blddir); |
| 1654 | if ($unified_info{rename}->{$library}) { |
| 1655 | $library = $unified_info{rename}->{$library}; |
| 1656 | } |
| 1657 | $unified_info{install}->{libraries}->{$library} = 1; |
| 1658 | } |
| 1659 | |
Richard Levitte | 343ec2b | 2016-02-19 22:08:37 +0100 | [diff] [blame] | 1660 | die <<"EOF" if scalar @engines and !$config{dynamic_engines}; |
Richard Levitte | 19ab579 | 2016-02-22 02:06:05 +0100 | [diff] [blame] | 1661 | ENGINES can only be used if configured with 'dynamic-engine'. |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1662 | This is usually a fault in a build.info file. |
| 1663 | EOF |
| 1664 | foreach (@engines) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1665 | my $library = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1666 | if ($unified_info{rename}->{$library}) { |
| 1667 | $library = $unified_info{rename}->{$library}; |
| 1668 | } |
| 1669 | $unified_info{engines}->{$library} = 1; |
| 1670 | } |
| 1671 | |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1672 | foreach (@engines_install) { |
| 1673 | my $library = cleanfile($buildd, $_, $blddir); |
| 1674 | if ($unified_info{rename}->{$library}) { |
| 1675 | $library = $unified_info{rename}->{$library}; |
| 1676 | } |
| 1677 | $unified_info{install}->{engines}->{$library} = 1; |
| 1678 | } |
| 1679 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1680 | foreach (@scripts) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1681 | my $script = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1682 | if ($unified_info{rename}->{$script}) { |
| 1683 | $script = $unified_info{rename}->{$script}; |
| 1684 | } |
| 1685 | $unified_info{scripts}->{$script} = 1; |
| 1686 | } |
| 1687 | |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1688 | foreach (@scripts_install) { |
| 1689 | my $script = cleanfile($buildd, $_, $blddir); |
| 1690 | if ($unified_info{rename}->{$script}) { |
| 1691 | $script = $unified_info{rename}->{$script}; |
| 1692 | } |
| 1693 | $unified_info{install}->{scripts}->{$script} = 1; |
| 1694 | } |
| 1695 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1696 | foreach (@extra) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1697 | my $extra = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1698 | $unified_info{extra}->{$extra} = 1; |
| 1699 | } |
| 1700 | |
Richard Levitte | 8a67946 | 2016-03-07 14:50:37 +0100 | [diff] [blame] | 1701 | foreach (@overrides) { |
| 1702 | my $override = cleanfile($buildd, $_, $blddir); |
| 1703 | $unified_info{overrides}->{$override} = 1; |
| 1704 | } |
| 1705 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1706 | push @{$unified_info{rawlines}}, @rawlines; |
| 1707 | |
Richard Levitte | 84af1ba | 2016-02-22 13:52:46 +0100 | [diff] [blame] | 1708 | unless ($disabled{shared}) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1709 | # Check sharednames. |
| 1710 | foreach (keys %sharednames) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1711 | my $dest = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1712 | if ($unified_info{rename}->{$dest}) { |
| 1713 | $dest = $unified_info{rename}->{$dest}; |
| 1714 | } |
| 1715 | die "shared_name for $dest with multiple values: " |
| 1716 | ,join(" ", @{$sharednames{$_}}),"\n" |
| 1717 | if scalar @{$sharednames{$_}} > 1; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1718 | my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1719 | die "shared_name found for a library $dest that isn't defined\n" |
| 1720 | unless $unified_info{libraries}->{$dest}; |
| 1721 | die "shared_name for $dest with multiple values: " |
| 1722 | ,$unified_info{sharednames}->{$dest}, ", ", $to |
| 1723 | unless !defined($unified_info{sharednames}->{$dest}) |
| 1724 | or $unified_info{sharednames}->{$dest} eq $to; |
| 1725 | $unified_info{sharednames}->{$dest} = $to; |
| 1726 | } |
| 1727 | |
| 1728 | # Additionally, we set up sharednames for libraries that don't |
| 1729 | # have any, as themselves. |
| 1730 | foreach (keys %{$unified_info{libraries}}) { |
| 1731 | if (!defined $unified_info{sharednames}->{$_}) { |
| 1732 | $unified_info{sharednames}->{$_} = $_ |
| 1733 | } |
| 1734 | } |
| 1735 | } |
| 1736 | |
| 1737 | foreach (keys %ordinals) { |
| 1738 | my $dest = $_; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1739 | my $ddest = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1740 | if ($unified_info{rename}->{$ddest}) { |
| 1741 | $ddest = $unified_info{rename}->{$ddest}; |
| 1742 | } |
| 1743 | foreach (@{$ordinals{$dest}}) { |
| 1744 | my %known_ordinals = |
| 1745 | ( |
| 1746 | crypto => |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 1747 | cleanfile($sourced, catfile("util", "libcrypto.num"), $blddir), |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1748 | ssl => |
Richard Levitte | 6928b61 | 2016-03-03 12:42:01 +0100 | [diff] [blame] | 1749 | cleanfile($sourced, catfile("util", "libssl.num"), $blddir) |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1750 | ); |
| 1751 | my $o = $known_ordinals{$_}; |
| 1752 | die "Ordinals for $ddest defined more than once\n" |
| 1753 | if $unified_info{ordinals}->{$ddest}; |
| 1754 | $unified_info{ordinals}->{$ddest} = [ $_, $o ]; |
| 1755 | } |
| 1756 | } |
| 1757 | |
| 1758 | foreach (keys %sources) { |
| 1759 | my $dest = $_; |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1760 | my $ddest = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1761 | if ($unified_info{rename}->{$ddest}) { |
| 1762 | $ddest = $unified_info{rename}->{$ddest}; |
| 1763 | } |
| 1764 | foreach (@{$sources{$dest}}) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1765 | my $s = cleanfile($sourced, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1766 | |
| 1767 | # If it isn't in the source tree, we assume it's generated |
| 1768 | # in the build tree |
| 1769 | if (! -f $s) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1770 | $s = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1771 | } |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 1772 | # We recognise C++, C and asm files |
| 1773 | if ($s =~ /\.(cc|cpp|c|s|S)$/) { |
| 1774 | my $o = $_; |
| 1775 | $o =~ s/\.[csS]$/.o/; # C and assembler |
| 1776 | $o =~ s/\.(cc|cpp)$/_cc.o/; # C++ |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1777 | $o = cleanfile($buildd, $o, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1778 | $unified_info{sources}->{$ddest}->{$o} = 1; |
| 1779 | $unified_info{sources}->{$o}->{$s} = 1; |
| 1780 | } else { |
| 1781 | $unified_info{sources}->{$ddest}->{$s} = 1; |
| 1782 | } |
| 1783 | } |
| 1784 | } |
| 1785 | |
Richard Levitte | 2a08d1a | 2016-03-29 16:45:03 +0200 | [diff] [blame] | 1786 | foreach (keys %shared_sources) { |
| 1787 | my $dest = $_; |
| 1788 | my $ddest = cleanfile($buildd, $_, $blddir); |
| 1789 | if ($unified_info{rename}->{$ddest}) { |
| 1790 | $ddest = $unified_info{rename}->{$ddest}; |
| 1791 | } |
| 1792 | foreach (@{$shared_sources{$dest}}) { |
| 1793 | my $s = cleanfile($sourced, $_, $blddir); |
| 1794 | |
| 1795 | # If it isn't in the source tree, we assume it's generated |
| 1796 | # in the build tree |
| 1797 | if (! -f $s) { |
| 1798 | $s = cleanfile($buildd, $_, $blddir); |
| 1799 | } |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 1800 | # We recognise C++, C and asm files |
| 1801 | if ($s =~ /\.(cc|cpp|c|s|S)$/) { |
| 1802 | my $o = $_; |
| 1803 | $o =~ s/\.[csS]$/.o/; # C and assembler |
| 1804 | $o =~ s/\.(cc|cpp)$/_cc.o/; # C++ |
Richard Levitte | 2a08d1a | 2016-03-29 16:45:03 +0200 | [diff] [blame] | 1805 | $o = cleanfile($buildd, $o, $blddir); |
| 1806 | $unified_info{shared_sources}->{$ddest}->{$o} = 1; |
| 1807 | $unified_info{sources}->{$o}->{$s} = 1; |
| 1808 | } else { |
| 1809 | die "unrecognised source file type for shared library: $s\n"; |
| 1810 | } |
| 1811 | } |
| 1812 | } |
| 1813 | |
Richard Levitte | ae4c745 | 2016-03-07 14:37:00 +0100 | [diff] [blame] | 1814 | foreach (keys %generate) { |
| 1815 | my $dest = $_; |
| 1816 | my $ddest = cleanfile($buildd, $_, $blddir); |
| 1817 | if ($unified_info{rename}->{$ddest}) { |
| 1818 | $ddest = $unified_info{rename}->{$ddest}; |
| 1819 | } |
| 1820 | die "more than one generator for $dest: " |
| 1821 | ,join(" ", @{$generate{$_}}),"\n" |
| 1822 | if scalar @{$generate{$_}} > 1; |
| 1823 | my @generator = split /\s+/, $generate{$dest}->[0]; |
| 1824 | $generator[0] = cleanfile($sourced, $generator[0], $blddir), |
| 1825 | $unified_info{generate}->{$ddest} = [ @generator ]; |
| 1826 | } |
| 1827 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1828 | foreach (keys %depends) { |
| 1829 | my $dest = $_; |
Richard Levitte | 4f85829 | 2016-06-13 21:57:51 +0200 | [diff] [blame] | 1830 | my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir); |
Richard Levitte | 8d34daf | 2016-04-21 14:30:08 +0200 | [diff] [blame] | 1831 | |
| 1832 | # If the destination doesn't exist in source, it can only be |
| 1833 | # a generated file in the build tree. |
Richard Levitte | 4f85829 | 2016-06-13 21:57:51 +0200 | [diff] [blame] | 1834 | if ($ddest ne "" && ! -f $ddest) { |
Richard Levitte | 8d34daf | 2016-04-21 14:30:08 +0200 | [diff] [blame] | 1835 | $ddest = cleanfile($buildd, $_, $blddir); |
| 1836 | if ($unified_info{rename}->{$ddest}) { |
| 1837 | $ddest = $unified_info{rename}->{$ddest}; |
| 1838 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1839 | } |
| 1840 | foreach (@{$depends{$dest}}) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1841 | my $d = cleanfile($sourced, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1842 | |
Richard Levitte | e737d7b | 2016-02-11 15:22:27 +0100 | [diff] [blame] | 1843 | # If we know it's generated, or assume it is because we can't |
| 1844 | # find it in the source tree, we set file we depend on to be |
| 1845 | # in the build tree rather than the source tree, and assume |
| 1846 | # and that there are lines to build it in a BEGINRAW..ENDRAW |
| 1847 | # section or in the Makefile template. |
| 1848 | if (! -f $d |
Richard Levitte | da1f210 | 2016-03-19 01:29:01 +0100 | [diff] [blame] | 1849 | || (grep { $d eq $_ } |
| 1850 | map { cleanfile($srcdir, $_, $blddir) } |
Richard Levitte | 4f85829 | 2016-06-13 21:57:51 +0200 | [diff] [blame] | 1851 | grep { /\.h$/ } keys %{$unified_info{generate}})) { |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 1852 | $d = cleanfile($buildd, $_, $blddir); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1853 | } |
| 1854 | # Take note if the file to depend on is being renamed |
Richard Levitte | 186a31e | 2016-11-09 20:01:51 +0100 | [diff] [blame] | 1855 | # Take extra care with files ending with .a, they should |
| 1856 | # be treated without that extension, and the extension |
| 1857 | # should be added back after treatment. |
| 1858 | $d =~ /(\.a)?$/; |
| 1859 | my $e = $1 // ""; |
| 1860 | $d = $`; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1861 | if ($unified_info{rename}->{$d}) { |
| 1862 | $d = $unified_info{rename}->{$d}; |
| 1863 | } |
Richard Levitte | 186a31e | 2016-11-09 20:01:51 +0100 | [diff] [blame] | 1864 | $d .= $e; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1865 | $unified_info{depends}->{$ddest}->{$d} = 1; |
Richard Levitte | 8d34daf | 2016-04-21 14:30:08 +0200 | [diff] [blame] | 1866 | # If we depend on a header file or a perl module, let's make |
| 1867 | # sure it can get included |
Richard Levitte | 4f85829 | 2016-06-13 21:57:51 +0200 | [diff] [blame] | 1868 | if ($dest ne "" && $d =~ /\.(h|pm)$/) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1869 | my $i = dirname($d); |
Richard Levitte | 4748f89 | 2016-06-29 22:51:42 +0200 | [diff] [blame] | 1870 | push @{$unified_info{includes}->{$ddest}->{source}}, $i |
| 1871 | unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}->{source}}; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1872 | } |
| 1873 | } |
| 1874 | } |
| 1875 | |
| 1876 | foreach (keys %includes) { |
| 1877 | my $dest = $_; |
Richard Levitte | 8d34daf | 2016-04-21 14:30:08 +0200 | [diff] [blame] | 1878 | my $ddest = cleanfile($sourced, $_, $blddir); |
| 1879 | |
| 1880 | # If the destination doesn't exist in source, it can only be |
| 1881 | # a generated file in the build tree. |
| 1882 | if (! -f $ddest) { |
| 1883 | $ddest = cleanfile($buildd, $_, $blddir); |
| 1884 | if ($unified_info{rename}->{$ddest}) { |
| 1885 | $ddest = $unified_info{rename}->{$ddest}; |
| 1886 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1887 | } |
| 1888 | foreach (@{$includes{$dest}}) { |
Richard Levitte | 4748f89 | 2016-06-29 22:51:42 +0200 | [diff] [blame] | 1889 | my $is = cleandir($sourced, $_, $blddir); |
| 1890 | my $ib = cleandir($buildd, $_, $blddir); |
| 1891 | push @{$unified_info{includes}->{$ddest}->{source}}, $is |
| 1892 | unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}}; |
| 1893 | push @{$unified_info{includes}->{$ddest}->{build}}, $ib |
| 1894 | unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}}; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1895 | } |
| 1896 | } |
| 1897 | } |
| 1898 | |
| 1899 | ### Make unified_info a bit more efficient |
| 1900 | # One level structures |
Richard Levitte | 8a67946 | 2016-03-07 14:50:37 +0100 | [diff] [blame] | 1901 | foreach (("programs", "libraries", "engines", "scripts", "extra", "overrides")) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1902 | $unified_info{$_} = [ sort keys %{$unified_info{$_}} ]; |
| 1903 | } |
| 1904 | # Two level structures |
Richard Levitte | 7f5af79 | 2016-07-08 14:28:58 +0200 | [diff] [blame] | 1905 | foreach my $l1 (("install", "sources", "shared_sources", "ldadd", "depends")) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1906 | foreach my $l2 (sort keys %{$unified_info{$l1}}) { |
| 1907 | $unified_info{$l1}->{$l2} = |
| 1908 | [ sort keys %{$unified_info{$l1}->{$l2}} ]; |
| 1909 | } |
| 1910 | } |
Richard Levitte | 4748f89 | 2016-06-29 22:51:42 +0200 | [diff] [blame] | 1911 | # Includes |
| 1912 | foreach my $dest (sort keys %{$unified_info{includes}}) { |
| 1913 | if (defined($unified_info{includes}->{$dest}->{build})) { |
| 1914 | my @source_includes = |
| 1915 | ( @{$unified_info{includes}->{$dest}->{source}} ); |
| 1916 | $unified_info{includes}->{$dest} = |
| 1917 | [ @{$unified_info{includes}->{$dest}->{build}} ]; |
| 1918 | foreach my $inc (@source_includes) { |
| 1919 | push @{$unified_info{includes}->{$dest}}, $inc |
| 1920 | unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}}; |
| 1921 | } |
| 1922 | } else { |
| 1923 | $unified_info{includes}->{$dest} = |
| 1924 | [ @{$unified_info{includes}->{$dest}->{source}} ]; |
| 1925 | } |
| 1926 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | # For the schemes that need it, we provide the old *_obj configs |
| 1930 | # from the *_asm_obj ones |
Richard Levitte | 3a55c92 | 2016-02-18 18:43:56 +0100 | [diff] [blame] | 1931 | foreach (grep /_(asm|aux)_src$/, keys %target) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1932 | my $src = $_; |
Richard Levitte | 3a55c92 | 2016-02-18 18:43:56 +0100 | [diff] [blame] | 1933 | (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/; |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 1934 | $target{$obj} = $target{$src}; |
| 1935 | $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler |
| 1936 | $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++ |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 1937 | } |
| 1938 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1939 | # Write down our configuration where it fits ######################### |
| 1940 | |
| 1941 | open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n"; |
| 1942 | print OUT <<"EOF"; |
| 1943 | package configdata; |
| 1944 | |
| 1945 | use strict; |
| 1946 | use warnings; |
| 1947 | |
| 1948 | use Exporter; |
| 1949 | #use vars qw(\@ISA \@EXPORT); |
| 1950 | our \@ISA = qw(Exporter); |
Richard Levitte | 3850f8c | 2016-03-19 00:41:14 +0100 | [diff] [blame] | 1951 | our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables); |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 1952 | |
| 1953 | EOF |
| 1954 | print OUT "our %config = (\n"; |
| 1955 | foreach (sort keys %config) { |
| 1956 | if (ref($config{$_}) eq "ARRAY") { |
| 1957 | print OUT " ", $_, " => [ ", join(", ", |
| 1958 | map { quotify("perl", $_) } |
| 1959 | @{$config{$_}}), " ],\n"; |
| 1960 | } else { |
| 1961 | print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n" |
| 1962 | } |
| 1963 | } |
| 1964 | print OUT <<"EOF"; |
| 1965 | ); |
| 1966 | |
| 1967 | EOF |
| 1968 | print OUT "our %target = (\n"; |
| 1969 | foreach (sort keys %target) { |
| 1970 | if (ref($target{$_}) eq "ARRAY") { |
| 1971 | print OUT " ", $_, " => [ ", join(", ", |
| 1972 | map { quotify("perl", $_) } |
| 1973 | @{$target{$_}}), " ],\n"; |
| 1974 | } else { |
| 1975 | print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n" |
| 1976 | } |
| 1977 | } |
| 1978 | print OUT <<"EOF"; |
| 1979 | ); |
| 1980 | |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 1981 | EOF |
Richard Levitte | 96d2d7b | 2016-01-26 02:09:33 +0100 | [diff] [blame] | 1982 | print OUT "our \%available_protocols = (\n"; |
| 1983 | print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n"; |
| 1984 | print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n"; |
| 1985 | print OUT <<"EOF"; |
| 1986 | ); |
| 1987 | |
| 1988 | EOF |
Richard Levitte | 3850f8c | 2016-03-19 00:41:14 +0100 | [diff] [blame] | 1989 | print OUT "our \@disablables = (\n"; |
| 1990 | foreach (@disablables) { |
| 1991 | print OUT " ", quotify("perl", $_), ",\n"; |
| 1992 | } |
| 1993 | print OUT <<"EOF"; |
| 1994 | ); |
| 1995 | |
| 1996 | EOF |
Richard Levitte | 96d2d7b | 2016-01-26 02:09:33 +0100 | [diff] [blame] | 1997 | print OUT "our \%disabled = (\n"; |
| 1998 | foreach (sort keys %disabled) { |
| 1999 | print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n"; |
| 2000 | } |
| 2001 | print OUT <<"EOF"; |
| 2002 | ); |
| 2003 | |
| 2004 | EOF |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2005 | print OUT "our %withargs = (\n"; |
| 2006 | foreach (sort keys %withargs) { |
| 2007 | if (ref($withargs{$_}) eq "ARRAY") { |
| 2008 | print OUT " ", $_, " => [ ", join(", ", |
| 2009 | map { quotify("perl", $_) } |
| 2010 | @{$withargs{$_}}), " ],\n"; |
| 2011 | } else { |
| 2012 | print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n" |
| 2013 | } |
| 2014 | } |
| 2015 | print OUT <<"EOF"; |
| 2016 | ); |
| 2017 | |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 2018 | EOF |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 2019 | if ($builder eq "unified") { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2020 | my $recurse; |
| 2021 | $recurse = sub { |
| 2022 | my $indent = shift; |
| 2023 | foreach (@_) { |
| 2024 | if (ref $_ eq "ARRAY") { |
| 2025 | print OUT " "x$indent, "[\n"; |
| 2026 | foreach (@$_) { |
| 2027 | $recurse->($indent + 4, $_); |
| 2028 | } |
| 2029 | print OUT " "x$indent, "],\n"; |
| 2030 | } elsif (ref $_ eq "HASH") { |
| 2031 | my %h = %$_; |
| 2032 | print OUT " "x$indent, "{\n"; |
| 2033 | foreach (sort keys %h) { |
| 2034 | if (ref $h{$_} eq "") { |
| 2035 | print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n"; |
| 2036 | } else { |
| 2037 | print OUT " "x($indent + 4), quotify("perl", $_), " =>\n"; |
| 2038 | $recurse->($indent + 8, $h{$_}); |
| 2039 | } |
| 2040 | } |
| 2041 | print OUT " "x$indent, "},\n"; |
| 2042 | } else { |
| 2043 | print OUT " "x$indent, quotify("perl", $_), ",\n"; |
| 2044 | } |
| 2045 | } |
| 2046 | }; |
| 2047 | print OUT "our %unified_info = (\n"; |
| 2048 | foreach (sort keys %unified_info) { |
| 2049 | if (ref $unified_info{$_} eq "") { |
| 2050 | print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n"; |
| 2051 | } else { |
| 2052 | print OUT " "x4, quotify("perl", $_), " =>\n"; |
| 2053 | $recurse->(8, $unified_info{$_}); |
| 2054 | } |
| 2055 | } |
| 2056 | print OUT <<"EOF"; |
| 2057 | ); |
| 2058 | |
| 2059 | EOF |
| 2060 | } |
| 2061 | print OUT "1;\n"; |
Richard Levitte | 291e94d | 2015-05-18 22:35:23 +0200 | [diff] [blame] | 2062 | close(OUT); |
| 2063 | |
Rich Salz | 141d732 | 2016-09-06 12:26:38 -0400 | [diff] [blame] | 2064 | print "\n"; |
| 2065 | print "PROCESSOR =$config{processor}\n" if $config{processor}; |
| 2066 | print "PERL =$config{perl}\n"; |
Andy Polyakov | 758baa3 | 2016-09-09 23:45:57 +0200 | [diff] [blame] | 2067 | print "PERLVERSION =$Config{version} for $Config{archname}\n"; |
Rich Salz | 141d732 | 2016-09-06 12:26:38 -0400 | [diff] [blame] | 2068 | print "HASHBANGPERL =$config{hashbangperl}\n"; |
Andy Polyakov | f58a0ac | 2016-05-09 15:35:55 +0200 | [diff] [blame] | 2069 | print "CC =$config{cross_compile_prefix}$target{cc}\n"; |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 2070 | print "CFLAG =$target{cflags} $config{cflags}\n"; |
Richard Levitte | ea24195 | 2016-10-12 15:30:08 +0200 | [diff] [blame] | 2071 | print "CXX =$config{cross_compile_prefix}$target{cxx}\n" |
| 2072 | if defined $target{cxx}; |
| 2073 | print "CXXFLAG =$target{cxxflags} $config{cxxflags}\n" |
| 2074 | if defined $target{cxx}; |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 2075 | print "DEFINES =",join(" ", @{$target{defines}}, @{$config{defines}}),"\n"; |
Rich Salz | 141d732 | 2016-09-06 12:26:38 -0400 | [diff] [blame] | 2076 | #print "RANLIB =", $target{ranlib} eq '$(CROSS_COMPILE)ranlib' ? |
| 2077 | # "$config{cross_compile_prefix}ranlib" : |
| 2078 | # "$target{ranlib}", "\n"; |
Richard Levitte | 2952b9b | 2016-03-02 10:57:05 +0100 | [diff] [blame] | 2079 | print "EX_LIBS =$target{ex_libs} $config{ex_libs}\n"; |
Ben Laurie | cba5068 | 1999-03-07 14:05:36 +0000 | [diff] [blame] | 2080 | |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2081 | my %builders = ( |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2082 | unified => sub { |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 2083 | run_dofile(catfile($blddir, $target{build_file}), |
Richard Levitte | 1967a42 | 2016-09-15 23:55:24 +0200 | [diff] [blame] | 2084 | @{$config{build_file_templates}}); |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2085 | }, |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2086 | ); |
| 2087 | |
Richard Levitte | ddf1847 | 2016-01-30 00:57:33 +0100 | [diff] [blame] | 2088 | $builders{$builder}->($builder_platform, @builder_opts); |
Felix Laurie von Massenbach | fce0ba5 | 2014-05-26 17:19:28 +0100 | [diff] [blame] | 2089 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2090 | print <<"EOF" if ($disabled{threads} eq "unavailable"); |
Bodo Möller | 5f8d5c9 | 1999-04-29 16:10:09 +0000 | [diff] [blame] | 2091 | |
| 2092 | The library could not be configured for supporting multi-threaded |
| 2093 | applications as the compiler options required on this system are not known. |
Bodo Möller | ff1b7e0 | 1999-06-26 21:25:01 +0000 | [diff] [blame] | 2094 | See file INSTALL for details if you need multi-threading. |
Bodo Möller | ec57782 | 1999-04-23 22:13:45 +0000 | [diff] [blame] | 2095 | EOF |
| 2096 | |
Richard Levitte | 76ffb43 | 2015-05-18 02:46:21 +0200 | [diff] [blame] | 2097 | print <<"EOF" if ($no_shared_warn); |
Richard Levitte | 2964ba8 | 2003-01-11 11:40:39 +0000 | [diff] [blame] | 2098 | |
Richard Levitte | ae48242 | 2016-02-22 02:09:11 +0100 | [diff] [blame] | 2099 | The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this |
| 2100 | platform, so we will pretend you gave the option 'no-pic', which also disables |
| 2101 | 'shared' and 'dynamic-engine'. If you know how to implement shared libraries |
| 2102 | or position independent code, please let us know (but please first make sure |
| 2103 | you have tried with a current version of OpenSSL). |
Rich Salz | 2e31ef0 | 2015-12-10 12:31:01 -0500 | [diff] [blame] | 2104 | EOF |
| 2105 | |
Richard Levitte | ddc606c | 2016-04-21 18:03:16 +0200 | [diff] [blame] | 2106 | print <<"EOF" if (-f catfile($srcdir, "configdata.pm") && $srcdir ne $blddir); |
| 2107 | |
| 2108 | WARNING: there are indications that another build was made in the source |
| 2109 | directory. This build may have picked up artifacts from that build, the |
| 2110 | safest course of action is to clean the source directory and redo this |
| 2111 | configuration. |
| 2112 | EOF |
| 2113 | |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2114 | exit(0); |
| 2115 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2116 | ###################################################################### |
| 2117 | # |
| 2118 | # Helpers and utility functions |
| 2119 | # |
| 2120 | |
| 2121 | # Configuration file reading ######################################### |
| 2122 | |
Richard Levitte | 1f2e1cd | 2016-03-17 09:09:31 +0100 | [diff] [blame] | 2123 | # Note: All of the helper functions are for lazy evaluation. They all |
| 2124 | # return a CODE ref, which will return the intended value when evaluated. |
| 2125 | # Thus, whenever there's mention of a returned value, it's about that |
| 2126 | # intended value. |
| 2127 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2128 | # Helper function to implement conditional inheritance depending on the |
Richard Levitte | 00b0d66 | 2016-02-22 14:10:45 +0100 | [diff] [blame] | 2129 | # value of $disabled{asm}. Used in inherit_from values as follows: |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2130 | # |
| 2131 | # inherit_from => [ "template", asm("asm_tmpl") ] |
| 2132 | # |
| 2133 | sub asm { |
| 2134 | my @x = @_; |
| 2135 | sub { |
Richard Levitte | 00b0d66 | 2016-02-22 14:10:45 +0100 | [diff] [blame] | 2136 | $disabled{asm} ? () : @x; |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2137 | } |
| 2138 | } |
| 2139 | |
Richard Levitte | 1f2e1cd | 2016-03-17 09:09:31 +0100 | [diff] [blame] | 2140 | # Helper function to implement conditional value variants, with a default |
| 2141 | # plus additional values based on the value of $config{build_type}. |
| 2142 | # Arguments are given in hash table form: |
| 2143 | # |
| 2144 | # picker(default => "Basic string: ", |
| 2145 | # debug => "debug", |
| 2146 | # release => "release") |
| 2147 | # |
| 2148 | # When configuring with --debug, the resulting string will be |
| 2149 | # "Basic string: debug", and when not, it will be "Basic string: release" |
| 2150 | # |
| 2151 | # This can be used to create variants of sets of flags according to the |
| 2152 | # build type: |
| 2153 | # |
| 2154 | # cflags => picker(default => "-Wall", |
| 2155 | # debug => "-g -O0", |
| 2156 | # release => "-O3") |
| 2157 | # |
| 2158 | sub picker { |
| 2159 | my %opts = @_; |
| 2160 | return sub { add($opts{default} || (), |
| 2161 | $opts{$config{build_type}} || ())->(); } |
| 2162 | } |
| 2163 | |
| 2164 | # Helper function to combine several values of different types into one. |
| 2165 | # This is useful if you want to combine a string with the result of a |
| 2166 | # lazy function, such as: |
| 2167 | # |
| 2168 | # cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" }) |
| 2169 | # |
| 2170 | sub combine { |
| 2171 | my @stuff = @_; |
| 2172 | return sub { add(@stuff)->(); } |
| 2173 | } |
| 2174 | |
| 2175 | # Helper function to implement conditional values depending on the value |
| 2176 | # of $disabled{threads}. Can be used as follows: |
| 2177 | # |
| 2178 | # cflags => combine("-Wall", threads("-pthread")) |
| 2179 | # |
| 2180 | sub threads { |
| 2181 | my @flags = @_; |
| 2182 | return sub { add($disabled{threads} ? () : @flags)->(); } |
| 2183 | } |
| 2184 | |
| 2185 | |
| 2186 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2187 | our $add_called = 0; |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2188 | # Helper function to implement adding values to already existing configuration |
| 2189 | # values. It handles elements that are ARRAYs, CODEs and scalars |
| 2190 | sub _add { |
| 2191 | my $separator = shift; |
| 2192 | |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 2193 | # If there's any ARRAY in the collection of values OR the separator |
| 2194 | # is undef, we will return an ARRAY of combined values, otherwise a |
| 2195 | # string of joined values with $separator as the separator. |
| 2196 | my $found_array = !defined($separator); |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2197 | |
| 2198 | my @values = |
| 2199 | map { |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2200 | my $res = $_; |
| 2201 | while (ref($res) eq "CODE") { |
| 2202 | $res = $res->(); |
| 2203 | } |
| 2204 | if (defined($res)) { |
| 2205 | if (ref($res) eq "ARRAY") { |
| 2206 | $found_array = 1; |
| 2207 | @$res; |
| 2208 | } else { |
| 2209 | $res; |
| 2210 | } |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2211 | } else { |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2212 | (); |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2213 | } |
| 2214 | } (@_); |
| 2215 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2216 | $add_called = 1; |
| 2217 | |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2218 | if ($found_array) { |
| 2219 | [ @values ]; |
| 2220 | } else { |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2221 | join($separator, grep { defined($_) && $_ ne "" } @values); |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2222 | } |
| 2223 | } |
| 2224 | sub add_before { |
Richard Levitte | bdcd83e | 2016-02-25 00:17:59 +0100 | [diff] [blame] | 2225 | my $separator = " "; |
| 2226 | if (ref($_[$#_]) eq "HASH") { |
| 2227 | my $opts = pop; |
| 2228 | $separator = $opts->{separator}; |
| 2229 | } |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2230 | my @x = @_; |
| 2231 | sub { _add($separator, @x, @_) }; |
| 2232 | } |
| 2233 | sub add { |
Richard Levitte | bdcd83e | 2016-02-25 00:17:59 +0100 | [diff] [blame] | 2234 | my $separator = " "; |
| 2235 | if (ref($_[$#_]) eq "HASH") { |
| 2236 | my $opts = pop; |
| 2237 | $separator = $opts->{separator}; |
| 2238 | } |
Richard Levitte | 8808741 | 2015-05-18 14:31:49 +0200 | [diff] [blame] | 2239 | my @x = @_; |
| 2240 | sub { _add($separator, @_, @x) }; |
| 2241 | } |
| 2242 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2243 | # configuration reader, evaluates the input file as a perl script and expects |
| 2244 | # it to fill %targets with target configurations. Those are then added to |
| 2245 | # %table. |
| 2246 | sub read_config { |
| 2247 | my $fname = shift; |
| 2248 | open(CONFFILE, "< $fname") |
| 2249 | or die "Can't open configuration file '$fname'!\n"; |
| 2250 | my $x = $/; |
| 2251 | undef $/; |
| 2252 | my $content = <CONFFILE>; |
| 2253 | $/ = $x; |
| 2254 | close(CONFFILE); |
| 2255 | my %targets = (); |
| 2256 | { |
Richard Levitte | ee9b0bb | 2016-09-14 22:21:41 +0200 | [diff] [blame] | 2257 | # Protect certain tables from tampering |
| 2258 | local %table = %::table; |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2259 | |
| 2260 | eval $content; |
| 2261 | warn $@ if $@; |
| 2262 | } |
| 2263 | |
| 2264 | # For each target, check that it's configured with a hash table. |
| 2265 | foreach (keys %targets) { |
| 2266 | if (ref($targets{$_}) ne "HASH") { |
| 2267 | if (ref($targets{$_}) eq "") { |
| 2268 | warn "Deprecated target configuration for $_, ignoring...\n"; |
| 2269 | } else { |
| 2270 | warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n"; |
| 2271 | } |
| 2272 | delete $targets{$_}; |
Richard Levitte | ee9b0bb | 2016-09-14 22:21:41 +0200 | [diff] [blame] | 2273 | } else { |
| 2274 | $targets{$_}->{_conf_fname_int} = add([ $fname ]); |
| 2275 | } |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2276 | } |
| 2277 | |
| 2278 | %table = (%table, %targets); |
| 2279 | |
| 2280 | } |
| 2281 | |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 2282 | # configuration resolver. Will only resolve all the lazy evaluation |
| 2283 | # codeblocks for the chosen target and all those it inherits from, |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2284 | # recursively |
| 2285 | sub resolve_config { |
| 2286 | my $target = shift; |
| 2287 | my @breadcrumbs = @_; |
| 2288 | |
Richard Levitte | c471884 | 2016-03-09 17:18:07 +0100 | [diff] [blame] | 2289 | # my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS}); |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2290 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2291 | if (grep { $_ eq $target } @breadcrumbs) { |
| 2292 | die "inherit_from loop! target backtrace:\n " |
| 2293 | ,$target,"\n ",join("\n ", @breadcrumbs),"\n"; |
| 2294 | } |
| 2295 | |
| 2296 | if (!defined($table{$target})) { |
| 2297 | warn "Warning! target $target doesn't exist!\n"; |
| 2298 | return (); |
| 2299 | } |
| 2300 | # Recurse through all inheritances. They will be resolved on the |
| 2301 | # fly, so when this operation is done, they will all just be a |
| 2302 | # bunch of attributes with string values. |
| 2303 | # What we get here, though, are keys with references to lists of |
| 2304 | # the combined values of them all. We will deal with lists after |
| 2305 | # this stage is done. |
| 2306 | my %combined_inheritance = (); |
| 2307 | if ($table{$target}->{inherit_from}) { |
| 2308 | my @inherit_from = |
| 2309 | map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}}; |
| 2310 | foreach (@inherit_from) { |
| 2311 | my %inherited_config = resolve_config($_, $target, @breadcrumbs); |
| 2312 | |
| 2313 | # 'template' is a marker that's considered private to |
| 2314 | # the config that had it. |
| 2315 | delete $inherited_config{template}; |
| 2316 | |
Richard Levitte | 2110feb | 2016-04-06 15:02:57 +0200 | [diff] [blame] | 2317 | foreach (keys %inherited_config) { |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2318 | if (!$combined_inheritance{$_}) { |
| 2319 | $combined_inheritance{$_} = []; |
| 2320 | } |
| 2321 | push @{$combined_inheritance{$_}}, $inherited_config{$_}; |
Richard Levitte | 2110feb | 2016-04-06 15:02:57 +0200 | [diff] [blame] | 2322 | } |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2323 | } |
| 2324 | } |
| 2325 | |
| 2326 | # We won't need inherit_from in this target any more, since we've |
| 2327 | # resolved all the inheritances that lead to this |
| 2328 | delete $table{$target}->{inherit_from}; |
| 2329 | |
| 2330 | # Now is the time to deal with those lists. Here's the place to |
| 2331 | # decide what shall be done with those lists, all based on the |
| 2332 | # values of the target we're currently dealing with. |
| 2333 | # - If a value is a coderef, it will be executed with the list of |
| 2334 | # inherited values as arguments. |
| 2335 | # - If the corresponding key doesn't have a value at all or is the |
FdaSilvaYY | 8483a00 | 2016-03-10 21:34:48 +0100 | [diff] [blame] | 2336 | # empty string, the inherited value list will be run through the |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2337 | # default combiner (below), and the result becomes this target's |
| 2338 | # value. |
| 2339 | # - Otherwise, this target's value is assumed to be a string that |
| 2340 | # will simply override the inherited list of values. |
Richard Levitte | a26d8be | 2016-02-26 12:25:13 +0100 | [diff] [blame] | 2341 | my $default_combiner = add(); |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2342 | |
| 2343 | my %all_keys = |
| 2344 | map { $_ => 1 } (keys %combined_inheritance, |
| 2345 | keys %{$table{$target}}); |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2346 | |
| 2347 | sub process_values { |
| 2348 | my $object = shift; |
| 2349 | my $inherited = shift; # Always a [ list ] |
| 2350 | my $target = shift; |
| 2351 | my $entry = shift; |
| 2352 | |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2353 | $add_called = 0; |
| 2354 | |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2355 | while(ref($object) eq "CODE") { |
| 2356 | $object = $object->(@$inherited); |
| 2357 | } |
| 2358 | if (!defined($object)) { |
| 2359 | return (); |
| 2360 | } |
| 2361 | elsif (ref($object) eq "ARRAY") { |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2362 | local $add_called; # To make sure recursive calls don't affect it |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2363 | return [ map { process_values($_, $inherited, $target, $entry) } |
| 2364 | @$object ]; |
| 2365 | } elsif (ref($object) eq "") { |
| 2366 | return $object; |
| 2367 | } else { |
| 2368 | die "cannot handle reference type ",ref($object) |
| 2369 | ," found in target ",$target," -> ",$entry,"\n"; |
| 2370 | } |
| 2371 | } |
| 2372 | |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2373 | foreach (sort keys %all_keys) { |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2374 | my $previous = $combined_inheritance{$_}; |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2375 | |
| 2376 | # Current target doesn't have a value for the current key? |
| 2377 | # Assign it the default combiner, the rest of this loop body |
| 2378 | # will handle it just like any other coderef. |
| 2379 | if (!exists $table{$target}->{$_}) { |
| 2380 | $table{$target}->{$_} = $default_combiner; |
| 2381 | } |
| 2382 | |
Richard Levitte | b0b92a5 | 2016-02-27 11:08:21 +0100 | [diff] [blame] | 2383 | $table{$target}->{$_} = process_values($table{$target}->{$_}, |
| 2384 | $combined_inheritance{$_}, |
| 2385 | $target, $_); |
| 2386 | unless(defined($table{$target}->{$_})) { |
| 2387 | delete $table{$target}->{$_}; |
| 2388 | } |
Richard Levitte | c471884 | 2016-03-09 17:18:07 +0100 | [diff] [blame] | 2389 | # if ($extra_checks && |
| 2390 | # $previous && !($add_called || $previous ~~ $table{$target}->{$_})) { |
| 2391 | # warn "$_ got replaced in $target\n"; |
| 2392 | # } |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2393 | } |
| 2394 | |
| 2395 | # Finally done, return the result. |
| 2396 | return %{$table{$target}}; |
| 2397 | } |
| 2398 | |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2399 | sub usage |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2400 | { |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2401 | print STDERR $usage; |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 2402 | print STDERR "\npick os/compiler from:\n"; |
Ben Laurie | 1641cb6 | 1998-12-28 17:08:48 +0000 | [diff] [blame] | 2403 | my $j=0; |
Ben Laurie | 6457ad1 | 1999-02-07 18:22:15 +0000 | [diff] [blame] | 2404 | my $i; |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 2405 | my $k=0; |
Ben Laurie | 6457ad1 | 1999-02-07 18:22:15 +0000 | [diff] [blame] | 2406 | foreach $i (sort keys %table) |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2407 | { |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2408 | next if $table{$i}->{template}; |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2409 | next if $i =~ /^debug/; |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 2410 | $k += length($i) + 1; |
| 2411 | if ($k > 78) |
| 2412 | { |
| 2413 | print STDERR "\n"; |
| 2414 | $k=length($i); |
| 2415 | } |
| 2416 | print STDERR $i . " "; |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2417 | } |
| 2418 | foreach $i (sort keys %table) |
| 2419 | { |
Richard Levitte | bd5192b | 2015-05-18 02:57:24 +0200 | [diff] [blame] | 2420 | next if $table{$i}->{template}; |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2421 | next if $i !~ /^debug/; |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 2422 | $k += length($i) + 1; |
| 2423 | if ($k > 78) |
| 2424 | { |
| 2425 | print STDERR "\n"; |
| 2426 | $k=length($i); |
| 2427 | } |
| 2428 | print STDERR $i . " "; |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2429 | } |
Ulf Möller | 10a926c | 2000-02-21 00:55:45 +0000 | [diff] [blame] | 2430 | print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n"; |
Ulf Möller | 462ba4f | 1999-04-24 22:59:36 +0000 | [diff] [blame] | 2431 | exit(1); |
Ralf S. Engelschall | d02b48c | 1998-12-21 10:52:47 +0000 | [diff] [blame] | 2432 | } |
| 2433 | |
Richard Levitte | 01d9997 | 2016-03-14 10:02:13 +0100 | [diff] [blame] | 2434 | sub run_dofile |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2435 | { |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2436 | my $out = shift; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2437 | my @templates = @_; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2438 | |
Rich Salz | ced2c2c | 2016-01-29 13:29:45 -0500 | [diff] [blame] | 2439 | unlink $out || warn "Can't remove $out, $!" |
| 2440 | if -f $out; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2441 | foreach (@templates) { |
| 2442 | die "Can't open $_, $!" unless -f $_; |
| 2443 | } |
Richard Levitte | f879d5f | 2016-08-30 18:41:00 +0200 | [diff] [blame] | 2444 | my $perlcmd = (quotify("maybeshell", $config{perl}))[0]; |
| 2445 | my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\""; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2446 | #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n"; |
| 2447 | system($cmd); |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2448 | exit 1 if $? != 0; |
| 2449 | rename("$out.new", $out) || die "Can't rename $out.new, $!"; |
| 2450 | } |
| 2451 | |
Andy Polyakov | 656bbdc | 2016-05-20 21:31:11 +0200 | [diff] [blame] | 2452 | sub which |
| 2453 | { |
| 2454 | my ($name)=@_; |
| 2455 | |
| 2456 | if (eval { require IPC::Cmd; 1; }) { |
| 2457 | IPC::Cmd->import(); |
| 2458 | return scalar IPC::Cmd::can_run($name); |
| 2459 | } else { |
| 2460 | # if there is $directories component in splitpath, |
| 2461 | # then it's not something to test with $PATH... |
| 2462 | return $name if (File::Spec->splitpath($name))[1]; |
| 2463 | |
| 2464 | foreach (File::Spec->path()) { |
| 2465 | my $fullpath = catfile($_, "$name$target{exe_extension}"); |
| 2466 | if (-f $fullpath and -x $fullpath) { |
| 2467 | return $fullpath; |
| 2468 | } |
| 2469 | } |
| 2470 | } |
| 2471 | } |
| 2472 | |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2473 | # Configuration printer ############################################## |
| 2474 | |
| 2475 | sub print_table_entry |
| 2476 | { |
| 2477 | my $target = shift; |
| 2478 | my %target = resolve_config($target); |
| 2479 | my $type = shift; |
| 2480 | |
| 2481 | # Don't print the templates |
| 2482 | return if $target{template}; |
| 2483 | |
| 2484 | my @sequence = ( |
Richard Levitte | f0bd468 | 2016-01-25 21:51:22 +0100 | [diff] [blame] | 2485 | "sys_id", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2486 | "cc", |
| 2487 | "cflags", |
Richard Levitte | bcb1977 | 2016-01-30 02:17:05 +0100 | [diff] [blame] | 2488 | "defines", |
Richard Levitte | f0bd468 | 2016-01-25 21:51:22 +0100 | [diff] [blame] | 2489 | "unistd", |
| 2490 | "ld", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2491 | "lflags", |
Richard Levitte | 0c0d78b | 2016-08-31 19:47:08 +0200 | [diff] [blame] | 2492 | "loutflag", |
Richard Levitte | c86ddbe | 2016-02-05 11:47:14 +0100 | [diff] [blame] | 2493 | "plib_lflags", |
Richard Levitte | 1740c16 | 2016-01-29 18:07:37 +0100 | [diff] [blame] | 2494 | "ex_libs", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2495 | "bn_ops", |
Richard Levitte | 0c0d78b | 2016-08-31 19:47:08 +0200 | [diff] [blame] | 2496 | "apps_aux_src", |
| 2497 | "cpuid_asm_src", |
| 2498 | "uplink_aux_src", |
| 2499 | "bn_asm_src", |
| 2500 | "ec_asm_src", |
| 2501 | "des_asm_src", |
| 2502 | "aes_asm_src", |
| 2503 | "bf_asm_src", |
| 2504 | "md5_asm_src", |
| 2505 | "cast_asm_src", |
| 2506 | "sha1_asm_src", |
| 2507 | "rc4_asm_src", |
| 2508 | "rmd160_asm_src", |
| 2509 | "rc5_asm_src", |
| 2510 | "wp_asm_src", |
| 2511 | "cmll_asm_src", |
| 2512 | "modes_asm_src", |
| 2513 | "padlock_asm_src", |
| 2514 | "chacha_asm_src", |
| 2515 | "poly1035_asm_src", |
Richard Levitte | 9c62a27 | 2016-02-27 16:51:34 +0100 | [diff] [blame] | 2516 | "thread_scheme", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2517 | "perlasm_scheme", |
| 2518 | "dso_scheme", |
| 2519 | "shared_target", |
| 2520 | "shared_cflag", |
Richard Levitte | 0c0d78b | 2016-08-31 19:47:08 +0200 | [diff] [blame] | 2521 | "shared_defines", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2522 | "shared_ldflag", |
Richard Levitte | 64c443e | 2016-02-05 15:17:33 +0100 | [diff] [blame] | 2523 | "shared_rcflag", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2524 | "shared_extension", |
Richard Levitte | e987f9f | 2016-02-15 17:20:15 +0100 | [diff] [blame] | 2525 | "dso_extension", |
Richard Levitte | f0bd468 | 2016-01-25 21:51:22 +0100 | [diff] [blame] | 2526 | "obj_extension", |
| 2527 | "exe_extension", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2528 | "ranlib", |
Richard Levitte | f0bd468 | 2016-01-25 21:51:22 +0100 | [diff] [blame] | 2529 | "ar", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2530 | "arflags", |
Richard Levitte | 0c0d78b | 2016-08-31 19:47:08 +0200 | [diff] [blame] | 2531 | "aroutflag", |
| 2532 | "rc", |
| 2533 | "rcflags", |
| 2534 | "rcoutflag", |
| 2535 | "mt", |
| 2536 | "mtflags", |
| 2537 | "mtinflag", |
| 2538 | "mtoutflag", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2539 | "multilib", |
Richard Levitte | f0bd468 | 2016-01-25 21:51:22 +0100 | [diff] [blame] | 2540 | "build_scheme", |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2541 | ); |
| 2542 | |
| 2543 | if ($type eq "TABLE") { |
| 2544 | print "\n"; |
| 2545 | print "*** $target\n"; |
Richard Levitte | cb212f2 | 2016-02-24 01:32:51 +0100 | [diff] [blame] | 2546 | foreach (@sequence) { |
| 2547 | if (ref($target{$_}) eq "ARRAY") { |
| 2548 | printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}}); |
| 2549 | } else { |
| 2550 | printf "\$%-12s = %s\n", $_, $target{$_}; |
| 2551 | } |
| 2552 | } |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2553 | } elsif ($type eq "HASH") { |
| 2554 | my $largest = |
| 2555 | length((sort { length($a) <=> length($b) } @sequence)[-1]); |
| 2556 | print " '$target' => {\n"; |
| 2557 | foreach (@sequence) { |
| 2558 | if ($target{$_}) { |
Richard Levitte | cb212f2 | 2016-02-24 01:32:51 +0100 | [diff] [blame] | 2559 | if (ref($target{$_}) eq "ARRAY") { |
| 2560 | print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n"; |
| 2561 | } else { |
| 2562 | print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n"; |
| 2563 | } |
Richard Levitte | 00ae96c | 2015-05-18 12:53:38 +0200 | [diff] [blame] | 2564 | } |
| 2565 | } |
| 2566 | print " },\n"; |
| 2567 | } |
| 2568 | } |
| 2569 | |
| 2570 | # Utility routines ################################################### |
| 2571 | |
Richard Levitte | 2e96384 | 2016-02-10 02:00:37 +0100 | [diff] [blame] | 2572 | # On VMS, if the given file is a logical name, File::Spec::Functions |
| 2573 | # will consider it an absolute path. There are cases when we want a |
| 2574 | # purely syntactic check without checking the environment. |
| 2575 | sub isabsolute { |
| 2576 | my $file = shift; |
| 2577 | |
| 2578 | # On non-platforms, we just use file_name_is_absolute(). |
| 2579 | return file_name_is_absolute($file) unless $^O eq "VMS"; |
| 2580 | |
| 2581 | # If the file spec includes a device or a directpry spec, |
| 2582 | # file_name_is_absolute() is perfectly safe. |
| 2583 | return file_name_is_absolute($file) if $file =~ m|[:\[]|; |
| 2584 | |
| 2585 | # Here, we know the given file spec isn't absolute |
| 2586 | return 0; |
| 2587 | } |
| 2588 | |
Richard Levitte | ec182ef | 2016-02-09 10:15:13 +0100 | [diff] [blame] | 2589 | # Makes a directory absolute and cleans out /../ in paths like foo/../bar |
| 2590 | # On some platforms, this uses rel2abs(), while on others, realpath() is used. |
| 2591 | # realpath() requires that at least all path components except the last is an |
| 2592 | # existing directory. On VMS, the last component of the directory spec must |
| 2593 | # exist. |
| 2594 | sub absolutedir { |
| 2595 | my $dir = shift; |
| 2596 | |
| 2597 | # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which |
| 2598 | # will return the volume name for the device, no matter what. Also, |
| 2599 | # it will return an incorrect directory spec if the argument is a |
| 2600 | # directory that doesn't exist. |
| 2601 | if ($^O eq "VMS") { |
| 2602 | return rel2abs($dir); |
| 2603 | } |
| 2604 | |
| 2605 | # We use realpath() on Unix, since no other will properly clean out |
| 2606 | # a directory spec. |
| 2607 | use Cwd qw/realpath/; |
| 2608 | |
| 2609 | return realpath($dir); |
| 2610 | } |
| 2611 | |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 2612 | sub quotify { |
| 2613 | my %processors = ( |
| 2614 | perl => sub { my $x = shift; |
| 2615 | $x =~ s/([\\\$\@"])/\\$1/g; |
| 2616 | return '"'.$x.'"'; }, |
Richard Levitte | f879d5f | 2016-08-30 18:41:00 +0200 | [diff] [blame] | 2617 | maybeshell => sub { my $x = shift; |
| 2618 | (my $y = $x) =~ s/([\\\"])/\\$1/g; |
| 2619 | if ($x ne $y || $x =~ m|\s|) { |
| 2620 | return '"'.$y.'"'; |
| 2621 | } else { |
| 2622 | return $x; |
| 2623 | } |
| 2624 | }, |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 2625 | ); |
| 2626 | my $for = shift; |
| 2627 | my $processor = |
| 2628 | defined($processors{$for}) ? $processors{$for} : sub { shift; }; |
| 2629 | |
Richard Levitte | 2110feb | 2016-04-06 15:02:57 +0200 | [diff] [blame] | 2630 | return map { $processor->($_); } @_; |
Richard Levitte | fe05264 | 2015-05-18 03:33:55 +0200 | [diff] [blame] | 2631 | } |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2632 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2633 | # collect_from_file($filename, $line_concat_cond_re, $line_concat) |
| 2634 | # $filename is a file name to read from |
| 2635 | # $line_concat_cond_re is a regexp detecting a line continuation ending |
| 2636 | # $line_concat is a CODEref that takes care of concatenating two lines |
| 2637 | sub collect_from_file { |
| 2638 | my $filename = shift; |
| 2639 | my $line_concat_cond_re = shift; |
| 2640 | my $line_concat = shift; |
| 2641 | |
| 2642 | open my $fh, $filename || die "unable to read $filename: $!\n"; |
| 2643 | return sub { |
| 2644 | my $saved_line = ""; |
| 2645 | $_ = ""; |
| 2646 | while (<$fh>) { |
Richard Levitte | 04f171c | 2016-02-12 12:10:27 +0100 | [diff] [blame] | 2647 | s|\R$||; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2648 | if (defined $line_concat) { |
| 2649 | $_ = $line_concat->($saved_line, $_); |
| 2650 | $saved_line = ""; |
| 2651 | } |
| 2652 | if (defined $line_concat_cond_re && /$line_concat_cond_re/) { |
| 2653 | $saved_line = $_; |
| 2654 | next; |
| 2655 | } |
| 2656 | return $_; |
| 2657 | } |
| 2658 | die "$filename ending with continuation line\n" if $_; |
| 2659 | close $fh; |
| 2660 | return undef; |
| 2661 | } |
| 2662 | } |
| 2663 | |
| 2664 | # collect_from_array($array, $line_concat_cond_re, $line_concat) |
| 2665 | # $array is an ARRAYref of lines |
| 2666 | # $line_concat_cond_re is a regexp detecting a line continuation ending |
| 2667 | # $line_concat is a CODEref that takes care of concatenating two lines |
| 2668 | sub collect_from_array { |
| 2669 | my $array = shift; |
| 2670 | my $line_concat_cond_re = shift; |
| 2671 | my $line_concat = shift; |
| 2672 | my @array = (@$array); |
| 2673 | |
| 2674 | return sub { |
| 2675 | my $saved_line = ""; |
| 2676 | $_ = ""; |
| 2677 | while (defined($_ = shift @array)) { |
Richard Levitte | 04f171c | 2016-02-12 12:10:27 +0100 | [diff] [blame] | 2678 | s|\R$||; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2679 | if (defined $line_concat) { |
| 2680 | $_ = $line_concat->($saved_line, $_); |
| 2681 | $saved_line = ""; |
| 2682 | } |
| 2683 | if (defined $line_concat_cond_re && /$line_concat_cond_re/) { |
| 2684 | $saved_line = $_; |
| 2685 | next; |
| 2686 | } |
| 2687 | return $_; |
| 2688 | } |
| 2689 | die "input text ending with continuation line\n" if $_; |
| 2690 | return undef; |
| 2691 | } |
| 2692 | } |
| 2693 | |
| 2694 | # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...) |
| 2695 | # $lineiterator is a CODEref that delivers one line at a time. |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2696 | # All following arguments are regex/CODEref pairs, where the regexp detects a |
| 2697 | # line and the CODEref does something with the result of the regexp. |
| 2698 | sub collect_information { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2699 | my $lineiterator = shift; |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2700 | my %collectors = @_; |
| 2701 | |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2702 | while(defined($_ = $lineiterator->())) { |
Richard Levitte | 04f171c | 2016-02-12 12:10:27 +0100 | [diff] [blame] | 2703 | s|\R$||; |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2704 | my $found = 0; |
Richard Levitte | 2b6b606 | 2016-03-10 00:04:04 +0100 | [diff] [blame] | 2705 | if ($collectors{"BEFORE"}) { |
| 2706 | $collectors{"BEFORE"}->($_); |
| 2707 | } |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2708 | foreach my $re (keys %collectors) { |
Richard Levitte | 2b6b606 | 2016-03-10 00:04:04 +0100 | [diff] [blame] | 2709 | if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) { |
Richard Levitte | 9fe2bb7 | 2016-01-29 19:45:51 +0100 | [diff] [blame] | 2710 | $collectors{$re}->($lineiterator); |
| 2711 | $found = 1; |
| 2712 | }; |
| 2713 | } |
| 2714 | if ($collectors{"OTHERWISE"}) { |
| 2715 | $collectors{"OTHERWISE"}->($lineiterator, $_) |
| 2716 | unless $found || !defined $collectors{"OTHERWISE"}; |
| 2717 | } |
Richard Levitte | 2b6b606 | 2016-03-10 00:04:04 +0100 | [diff] [blame] | 2718 | if ($collectors{"AFTER"}) { |
| 2719 | $collectors{"AFTER"}->($_); |
| 2720 | } |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2721 | } |
Richard Levitte | 107b579 | 2015-05-20 20:03:20 +0200 | [diff] [blame] | 2722 | } |
Richard Levitte | ce95981 | 2016-05-24 17:39:52 +0200 | [diff] [blame] | 2723 | |
| 2724 | # tokenize($line) |
| 2725 | # $line is a line of text to split up into tokens |
| 2726 | # returns a list of tokens |
| 2727 | # |
| 2728 | # Tokens are divided by spaces. If the tokens include spaces, they |
| 2729 | # have to be quoted with single or double quotes. Double quotes |
| 2730 | # inside a double quoted token must be escaped. Escaping is done |
| 2731 | # with backslash. |
| 2732 | # Basically, the same quoting rules apply for " and ' as in any |
| 2733 | # Unix shell. |
| 2734 | sub tokenize { |
| 2735 | my $line = my $debug_line = shift; |
| 2736 | my @result = (); |
| 2737 | |
| 2738 | while ($line =~ s|^\s+||, $line ne "") { |
| 2739 | my $token = ""; |
| 2740 | while ($line ne "" && $line !~ m|^\s|) { |
| 2741 | if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) { |
| 2742 | $token .= $1; |
| 2743 | $line = $'; |
| 2744 | } elsif ($line =~ m/^'([^']*)'/) { |
| 2745 | $token .= $1; |
| 2746 | $line = $'; |
| 2747 | } elsif ($line =~ m/^(\S+)/) { |
| 2748 | $token .= $1; |
| 2749 | $line = $'; |
| 2750 | } |
| 2751 | } |
| 2752 | push @result, $token; |
| 2753 | } |
| 2754 | |
| 2755 | if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) { |
| 2756 | print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n"; |
| 2757 | print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n"; |
| 2758 | } |
| 2759 | return @result; |
| 2760 | } |