blob: b7d669c11898e5a821fd5ad13308ee8dec2b6c5b [file] [log] [blame]
Richard Levittede17db92015-11-24 14:06:45 +01001#! /usr/bin/env perl
Jacob Bandes-Storchf4d8f032015-11-23 21:44:58 -08002# -*- mode: perl; -*-
Paulid42d0a42017-02-01 10:10:13 +10003# Copyright 2016-2017 The OpenSSL Project Authors. All Rights Reserved.
Rich Salzac3d0e12016-04-20 10:20:59 -04004#
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 Levittede17db92015-11-24 14:06:45 +01009
Ralf S. Engelschalla4ed5531999-02-25 08:48:52 +000010## Configure -- OpenSSL source tree configuration script
Ben Laurie1641cb61998-12-28 17:08:48 +000011
Richard Levitte9f519ad2016-03-14 10:03:14 +010012require 5.10.0;
Ben Laurie1641cb61998-12-28 17:08:48 +000013use strict;
Rich Salz141d7322016-09-06 12:26:38 -040014use Config;
Rich Salzf09e7ca2015-02-24 17:40:22 -050015use File::Basename;
Richard Levitte85152ca2016-02-02 19:47:05 +010016use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
Richard Levittedca99382016-02-08 16:27:15 +010017use File::Path qw/mkpath/;
Richard Levitte23049aa2016-05-30 11:20:37 +020018use if $^O ne "VMS", 'File::Glob' => qw/glob/;
Ben Laurie1641cb61998-12-28 17:08:48 +000019
Ulf Möller22a4f961999-04-19 13:54:11 +000020# see INSTALL for instructions.
Ulf Möller462ba4f1999-04-24 22:59:36 +000021
Rich Salze4ef2e22016-02-10 11:10:39 -050022my $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öller462ba4f1999-04-24 22:59:36 +000023
Ulf Möller434c5dd1999-04-19 15:19:58 +000024# Options:
Bodo Möllere5f30451999-04-29 21:52:08 +000025#
Rich Salzf09e7ca2015-02-24 17:40:22 -050026# --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 Levitted74dfaf2016-01-20 18:11:51 +010029# --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öllere5f30451999-04-29 21:52:08 +000038#
Andy Polyakovcbfb39d2006-10-21 13:38:16 +000039# --cross-compile-prefix Add specified prefix to binutils components.
40#
Viktor Dukhovni98186eb2016-01-04 23:00:33 -050041# --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 Levitte5270e702000-10-26 21:07:28 +000044# 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öller5f8d5c91999-04-29 16:10:09 +000049# [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 Levittefcc6a1c2000-08-02 04:19:50 +000052# [no-]shared [don't] try to create shared libraries when supported.
Richard Levitteae482422016-02-22 02:09:11 +010053# [no-]pic [don't] try to build position independent code when supported.
Richard Levitte45b71ab2016-02-22 15:57:25 +010054# If disabled, it also disables shared and dynamic-engine.
Ulf Möllera7239791999-04-19 14:55:56 +000055# no-asm do not use assembler
Geoff Thorpebc2aada2000-04-06 07:09:45 +000056# no-dso do not compile in any native shared-library methods. This
57# will ensure that all methods just return NULL.
Benjamin Kaduk0423f812016-01-12 18:02:16 -060058# no-egd do not compile support for the entropy-gathering daemon APIs
Richard Levittee452de92001-07-12 09:11:14 +000059# [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 Henson7e159e02011-12-25 14:45:15 +000062# sctp include SCTP support
Matt Caswell8b1a5af2016-03-03 15:40:51 +000063# enable-weak-ssl-ciphers
64# Enable weak ciphers that are disabled by default. This currently
65# only includes RC4 based ciphers.
Andy Polyakov5ae5dc92016-11-20 21:52:41 +010066# 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öller79df9d61999-04-27 03:19:12 +000069# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
Felix Laurie von Massenbachfce0ba52014-05-26 17:19:28 +010070# -<xxx> +<xxx> compiler options are passed through
Andy Polyakov047d97a2016-09-01 21:36:13 +020071# -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 Thorpee41c8d62000-06-01 05:13:52 +000087#
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. Engelschalld02b48c1998-12-21 10:52:47 +000091# BN_LLONG use the type 'long long' in crypto/bn/bn.h
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +000092# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
Andy Polyakovd0590fe2004-07-18 16:19:34 +000093# Following are set automatically by this script
94#
FdaSilvaYY8483a002016-03-10 21:34:48 +010095# 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 Polyakovd0590fe2004-07-18 16:19:34 +000098# SHA256_ASM sha256_block is implemented in assembler
99# SHA512_ASM sha512_block is implemented in assembler
Petr Vaněk28bd8e92016-06-21 13:30:54 +0200100# AES_ASM AES_[en|de]crypt is implemented in assembler
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000101
Dr. Stephen Henson363bd0b2009-01-11 15:56:32 +0000102# Minimum warning options... any contributions to OpenSSL should at least get
Felix Laurie von Massenbachfce0ba52014-05-26 17:19:28 +0100103# past these.
Dr. Stephen Henson363bd0b2009-01-11 15:56:32 +0000104
Andy Polyakov463a7b82016-04-06 12:47:35 +0200105# DEBUG_UNUSED enables __owur (warn unused result) checks.
Rich Salz77305332017-01-30 16:13:41 -0500106# -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 Polyakov463a7b82016-04-06 12:47:35 +0200118my $gcc_devteam_warn = "-DDEBUG_UNUSED"
Rich Salzf3b3d7f2016-08-30 13:31:18 -0400119 . " -Wswitch"
Andy Polyakov463a7b82016-04-06 12:47:35 +0200120 . " -DPEDANTIC -pedantic -Wno-long-long"
Rich Salz8bccbce2016-02-13 12:27:11 -0500121 . " -Wall"
Rich Salz8bccbce2016-02-13 12:27:11 -0500122 . " -Wsign-compare"
123 . " -Wmissing-prototypes"
124 . " -Wshadow"
125 . " -Wformat"
126 . " -Wtype-limits"
Bernd Edlinger01b76c22017-02-23 14:52:23 +0100127 . " -Wundef"
Rich Salz8bccbce2016-02-13 12:27:11 -0500128 . " -Werror"
129 ;
Dr. Stephen Henson363bd0b2009-01-11 15:56:32 +0000130
Ben Laurie190c8c62015-04-19 14:10:54 +0100131# 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 Laurie480405e2015-08-02 02:45:44 +0100133# following warnings can also be enabled:
Rich Salz8bccbce2016-02-13 12:27:11 -0500134# -Wcast-align
Rich Salz77305332017-01-30 16:13:41 -0500135# -Wunreachable-code -- no, too ugly/compiler-specific
Rich Salza773b522016-02-13 22:33:56 -0500136# -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 Salz8bccbce2016-02-13 12:27:11 -0500139my $clang_devteam_warn = ""
140 . " -Qunused-arguments"
141 . " -Wextra"
Rich Salzf3b3d7f2016-08-30 13:31:18 -0400142 . " -Wswitch -Wswitch-default"
Rich Salz8bccbce2016-02-13 12:27:11 -0500143 . " -Wno-unused-parameter"
Rich Salz77305332017-01-30 16:13:41 -0500144 . " -Wno-parentheses-equality"
Rich Salz8bccbce2016-02-13 12:27:11 -0500145 . " -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 Edlinger01b76c22017-02-23 14:52:23 +0100151 . " -Wundef"
Rich Salz8bccbce2016-02-13 12:27:11 -0500152 ;
Emilia Kaspercb2bc052015-01-05 13:46:26 +0100153
Richard Levitteef8ca6b2016-02-14 12:16:52 +0100154# This adds backtrace information to the memory leak info. Is only used
155# when crypto-mdebug-backtrace is enabled.
156my $memleak_devteam_backtrace = "-rdynamic";
Richard Levittea1d3f3d2015-12-02 18:44:26 +0100157
Dr. Stephen Henson0c28f272009-09-09 16:31:32 +0000158my $strict_warnings = 0;
159
Andy Polyakovb7efa562005-01-24 14:38:14 +0000160# As for $BSDthreads. Idea is to maintain "collective" set of flags,
Felix Laurie von Massenbachfce0ba52014-05-26 17:19:28 +0100161# which would cover all BSD flavors. -pthread applies to them all,
Andy Polyakovb7efa562005-01-24 14:38:14 +0000162# 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 Levitte9c62a272016-02-27 16:51:34 +0100167our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000168
Viktor Dukhovni98186eb2016-01-04 23:00:33 -0500169#
FdaSilvaYYf430ba32016-06-19 19:39:01 +0200170# API compatibility name to version number mapping.
Viktor Dukhovni98186eb2016-01-04 23:00:33 -0500171#
172my $maxapi = "1.1.0"; # API for "no-deprecated" builds
173my $apitable = {
174 "1.1.0" => "0x10100000L",
175 "1.0.0" => "0x10000000L",
176 "0.9.8" => "0x00908000L",
177};
178
Richard Levitte9e0724a2015-05-18 02:54:28 +0200179our %table = ();
Richard Levitte291e94d2015-05-18 22:35:23 +0200180our %config = ();
Richard Levitte98fdbce2016-02-27 11:37:33 +0100181our %withargs = ();
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000182
Richard Levittebd5192b2015-05-18 02:57:24 +0200183# Forward declarations ###############################################
Andy Polyakov7ead0c82015-03-16 22:33:36 +0100184
Richard Levittebd5192b2015-05-18 02:57:24 +0200185# read_config(filename)
186#
187# Reads a configuration file and populates %table with the contents
188# (which the configuration file places in %targets).
189sub read_config;
Andy Polyakov7ead0c82015-03-16 22:33:36 +0100190
Richard Levittebd5192b2015-05-18 02:57:24 +0200191# resolve_config(target)
192#
FdaSilvaYY8483a002016-03-10 21:34:48 +0100193# Resolves all the late evaluations, inheritances and so on for the
Richard Levittebd5192b2015-05-18 02:57:24 +0200194# chosen target and any target it inherits from.
195sub resolve_config;
Richard Levitteaaf878c2015-03-06 02:00:21 +0100196
Rich Salzf09e7ca2015-02-24 17:40:22 -0500197
Richard Levitte107b5792015-05-20 20:03:20 +0200198# Information collection #############################################
199
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100200# Unified build supports separate build dir
Richard Levitteec182ef2016-02-09 10:15:13 +0100201my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
202my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100203my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
204
Richard Levitteb5293d42016-05-02 16:50:51 +0200205my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
206
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100207$config{sourcedir} = abs2rel($srcdir);
208$config{builddir} = abs2rel($blddir);
209
Richard Levitteee4cdb72016-08-29 22:11:36 +0200210# Collect reconfiguration information if needed
211my @argvcopy=@ARGV;
212
213if (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 Levitteea241952016-10-12 15:30:08 +0200230 $ENV{CXX} = $configdata::config{cxx}
231 if defined($configdata::config{cxx});
Richard Levitteee4cdb72016-08-29 22:11:36 +0200232 $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 Levitteea241952016-10-12 15:30:08 +0200241 print " CXX = ",$ENV{CXX},"\n" if $ENV{CXX};
Richard Levitteee4cdb72016-08-29 22:11:36 +0200242 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 Levitte107b5792015-05-20 20:03:20 +0200252# 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
258collect_information(
Richard Levitte9fe2bb72016-01-29 19:45:51 +0100259 collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
Richard Levitte107b5792015-05-20 20:03:20 +0200260 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 );
265if ($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\.]+)/);
271die "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 Levitte85152ca2016-02-02 19:47:05 +0100278my $pattern = catfile(dirname($0), "Configurations", "*.conf");
Andy Polyakov97855552016-05-28 16:11:01 +0200279foreach (sort glob($pattern)) {
Rich Salzf09e7ca2015-02-24 17:40:22 -0500280 &read_config($_);
281}
282
Richard Levitteb5293d42016-05-02 16:50:51 +0200283if (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 Polyakov97855552016-05-28 16:11:01 +0200292 foreach (sort glob($pattern)) {
Richard Levitteb5293d42016-05-02 16:50:51 +0200293 &read_config($_);
294 }
295}
296
Richard Levitte291e94d2015-05-18 22:35:23 +0200297
Vitezslav Cizek35a498e2016-10-13 11:44:08 +0200298print "Configuring OpenSSL version $config{version} ($config{version_num})\n";
Richard Levitte107b5792015-05-20 20:03:20 +0200299
Richard Levitte291e94d2015-05-18 22:35:23 +0200300$config{prefix}="";
301$config{openssldir}="";
Richard Levitte7d130f62015-05-19 01:40:54 +0200302$config{processor}="";
Richard Levitte107b5792015-05-20 20:03:20 +0200303$config{libdir}="";
Richard Levitte642a6132015-12-27 02:27:30 +0100304$config{cross_compile_prefix}="";
Richard Levitte9c62a272016-02-27 16:51:34 +0100305my $auto_threads=1; # enable threads automatically? true by default
Bodo Möller03964792001-03-09 13:04:06 +0000306my $default_ranlib;
Richard Levitte107b5792015-05-20 20:03:20 +0200307
308# Top level directories to build
Richard Levitte342a1a22016-09-07 20:56:20 +0200309$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
Richard Levitte107b5792015-05-20 20:03:20 +0200310# crypto/ subdirectories to build
311$config{sdirs} = [
312 "objects",
Todd Short3f5616d2017-01-11 16:38:44 -0500313 "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2", "siphash",
Paulid42d0a42017-02-01 10:10:13 +1000314 "des", "aes", "rc2", "rc4", "rc5", "idea", "aria", "bf", "cast", "camellia", "seed", "chacha", "modes",
Richard Levitte107b5792015-05-20 20:03:20 +0200315 "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 Salzdba31772016-02-14 00:17:59 -0500318 "cms", "ts", "srp", "cmac", "ct", "async", "kdf"
Richard Levitte107b5792015-05-20 20:03:20 +0200319 ];
Richard Levittecfa76972016-10-12 16:05:06 +0100320# test/ subdirectories to build
321$config{tdirs} = [ "ossl_shim" ];
Ulf Möller99aab161999-04-01 12:34:33 +0000322
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500323# Known TLS and DTLS protocols
Matt Caswell84a68332016-10-30 08:38:52 +0000324my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500325my @dtls = qw(dtls1 dtls1_2);
326
FdaSilvaYY8483a002016-03-10 21:34:48 +0100327# Explicitly known options that are possible to disable. They can
Richard Levitte8b527be2015-10-22 17:09:14 +0200328# be regexps, and will be used like this: /^no-${option}$/
329# For developers: keep it sorted alphabetically
330
331my @disablables = (
Emilia Kasperc91a0a82016-03-14 12:21:44 +0100332 "afalgeng",
Paulid42d0a42017-02-01 10:10:13 +1000333 "aria",
Ben Lauriec38bb722016-03-26 17:19:14 +0000334 "asan",
Richard Levitte8b527be2015-10-22 17:09:14 +0200335 "asm",
Todd Short52739e42016-02-04 11:41:25 -0500336 "async",
Matt Caswellb184e3e2016-02-09 11:26:14 +0000337 "autoalginit",
Matt Caswell498abff2016-02-09 09:39:07 +0000338 "autoerrinit",
Richard Levitte8b527be2015-10-22 17:09:14 +0200339 "bf",
Bill Cox2d0b4412016-03-09 23:08:31 +0100340 "blake2",
Richard Levitte8b527be2015-10-22 17:09:14 +0200341 "camellia",
342 "capieng",
343 "cast",
Andy Polyakov48f14842015-12-09 23:02:11 +0100344 "chacha",
Richard Levitte8b527be2015-10-22 17:09:14 +0200345 "cmac",
346 "cms",
347 "comp",
Mat3e45d392016-01-09 23:55:57 +0100348 "crypto-mdebug",
Richard Levitteef8ca6b2016-02-14 12:16:52 +0100349 "crypto-mdebug-backtrace",
Richard Levitte8b527be2015-10-22 17:09:14 +0200350 "ct",
351 "deprecated",
352 "des",
353 "dgram",
354 "dh",
355 "dsa",
356 "dso",
Kurt Roeckxa5ecdc62015-12-12 11:12:22 +0100357 "dtls",
Richard Levitte343ec2b2016-02-19 22:08:37 +0100358 "dynamic-engine",
Richard Levitte8b527be2015-10-22 17:09:14 +0200359 "ec",
360 "ec2m",
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500361 "ecdh",
362 "ecdsa",
Richard Levitte8b527be2015-10-22 17:09:14 +0200363 "ec_nistp_64_gcc_128",
Richard Levitteb31feae2016-02-03 21:08:17 +0100364 "egd",
Richard Levitte8b527be2015-10-22 17:09:14 +0200365 "engine",
Rich Salz1288f262016-02-17 13:33:51 -0500366 "err",
Matt Caswellce2596d2016-10-12 16:21:13 +0100367 "external-tests",
David Woodhouse02f71142015-07-30 11:45:25 +0100368 "filenames",
Kurt Roeckxf59d0132016-05-07 22:09:13 +0200369 "fuzz-libfuzzer",
370 "fuzz-afl",
Matt Caswell168c3b72016-03-21 15:04:08 +0000371 "gost",
Richard Levitteb6127992016-11-15 14:53:33 +0100372 "heartbeats",
Richard Levitte8b527be2015-10-22 17:09:14 +0200373 "hw(-.+)?",
374 "idea",
Richard Levitte09aa2632016-03-09 01:14:29 +0100375 "makedepend",
Richard Levitte8b527be2015-10-22 17:09:14 +0200376 "md2",
377 "md4",
Richard Levitte8b527be2015-10-22 17:09:14 +0200378 "mdc2",
Emilia Kasper29df3062016-07-28 20:24:28 +0200379 "msan",
Matt Caswellfa22f982016-03-07 23:26:32 +0000380 "multiblock",
Richard Levitte8b527be2015-10-22 17:09:14 +0200381 "nextprotoneg",
382 "ocb",
383 "ocsp",
Richard Levitteae482422016-02-22 02:09:11 +0100384 "pic",
Andy Polyakov48f14842015-12-09 23:02:11 +0100385 "poly1305",
Richard Levitte8b527be2015-10-22 17:09:14 +0200386 "posix-io",
387 "psk",
388 "rc2",
389 "rc4",
390 "rc5",
391 "rdrand",
392 "rfc3779",
Richard Levitte8b527be2015-10-22 17:09:14 +0200393 "rmd160",
Richard Levitte8b527be2015-10-22 17:09:14 +0200394 "scrypt",
Richard Levitte8b527be2015-10-22 17:09:14 +0200395 "sctp",
396 "seed",
Richard Levitte8b527be2015-10-22 17:09:14 +0200397 "shared",
Todd Short3f5616d2017-01-11 16:38:44 -0500398 "siphash",
Richard Levitte8b527be2015-10-22 17:09:14 +0200399 "sock",
400 "srp",
401 "srtp",
402 "sse2",
403 "ssl",
Richard Levitte8b527be2015-10-22 17:09:14 +0200404 "ssl-trace",
405 "static-engine",
406 "stdio",
Richard Levitte93880ce2016-08-30 06:02:50 +0200407 "tests",
Richard Levitte8b527be2015-10-22 17:09:14 +0200408 "threads",
409 "tls",
Rich Salz1288f262016-02-17 13:33:51 -0500410 "ts",
Ben Lauriec38bb722016-03-26 17:19:14 +0000411 "ubsan",
Rich Salz1288f262016-02-17 13:33:51 -0500412 "ui",
Richard Levitte8b527be2015-10-22 17:09:14 +0200413 "unit-test",
414 "whirlpool",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000415 "weak-ssl-ciphers",
Richard Levitte8b527be2015-10-22 17:09:14 +0200416 "zlib",
417 "zlib-dynamic",
418 );
Viktor Dukhovni6b01bed2016-01-18 13:10:21 -0500419foreach my $proto ((@tls, @dtls))
420 {
421 push(@disablables, $proto);
422 push(@disablables, "$proto-method");
423 }
Richard Levitte8b527be2015-10-22 17:09:14 +0200424
Matt Caswell2b1343b2016-06-16 11:45:24 +0100425my %deprecated_disablables = (
426 "ssl2" => undef,
427 "buf-freelists" => undef,
428 "ripemd" => "rmd160"
Richard Levittee80381e2016-02-22 10:42:53 +0100429 );
430
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000431# All of the following is disabled by default (RC5 was enabled before 0.9.8):
432
Richard Levitte9e04edf2016-02-22 13:45:46 +0100433our %disabled = ( # "what" => "comment"
Paulid42d0a42017-02-01 10:10:13 +1000434 "aria" => "default",
Ben Lauriec38bb722016-03-26 17:19:14 +0000435 "asan" => "default",
Benjamin Kaduka9c27fe2016-08-18 15:47:04 -0500436 "crypto-mdebug" => "default",
437 "crypto-mdebug-backtrace" => "default",
Richard Levitte9e04edf2016-02-22 13:45:46 +0100438 "ec_nistp_64_gcc_128" => "default",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000439 "egd" => "default",
Matt Caswellce2596d2016-10-12 16:21:13 +0100440 "external-tests" => "default",
Kurt Roeckxf59d0132016-05-07 22:09:13 +0200441 "fuzz-libfuzzer" => "default",
442 "fuzz-afl" => "default",
Richard Levitteb6127992016-11-15 14:53:33 +0100443 "heartbeats" => "default",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000444 "md2" => "default",
Emilia Kasper29df3062016-07-28 20:24:28 +0200445 "msan" => "default",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000446 "rc5" => "default",
447 "sctp" => "default",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000448 "ssl-trace" => "default",
Kurt Roeckx9829b5a2016-03-03 22:45:57 +0100449 "ssl3" => "default",
450 "ssl3-method" => "default",
Ben Lauriec38bb722016-03-26 17:19:14 +0000451 "ubsan" => "default",
Matt Caswell84a68332016-10-30 08:38:52 +0000452 #TODO(TLS1.3): Temporarily disabled while this is a WIP
453 "tls1_3" => "default",
Matt Caswell8b1a5af2016-03-03 15:40:51 +0000454 "unit-test" => "default",
455 "weak-ssl-ciphers" => "default",
456 "zlib" => "default",
457 "zlib-dynamic" => "default",
Richard Levitte9e04edf2016-02-22 13:45:46 +0100458 );
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000459
Richard Levittec569e202015-05-18 11:03:47 +0200460# Note: => pair form used for aesthetics, not to truly make a hash table
461my @disable_cascades = (
462 # "what" => [ "cascade", ... ]
Richard Levitte7d130f62015-05-19 01:40:54 +0200463 sub { $config{processor} eq "386" }
Richard Levittec569e202015-05-18 11:03:47 +0200464 => [ "sse2" ],
465 "ssl" => [ "ssl3" ],
466 "ssl3-method" => [ "ssl3" ],
467 "zlib" => [ "zlib-dynamic" ],
Richard Levittec569e202015-05-18 11:03:47 +0200468 "des" => [ "mdc2" ],
Richard Levitte9e4d6fb2016-01-23 22:58:51 +0100469 "ec" => [ "ecdsa", "ecdh" ],
Richard Levittec569e202015-05-18 11:03:47 +0200470
Ben Laurie3fd4d212016-03-17 18:17:03 +0000471 "dgram" => [ "dtls", "sctp" ],
Matt Caswell505f74c2016-04-20 11:24:49 +0100472 "sock" => [ "dgram" ],
Richard Levittec569e202015-05-18 11:03:47 +0200473 "dtls" => [ @dtls ],
Richard Levitte343a7462017-02-17 20:48:28 +0100474 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
475 => [ "dtls" ],
Richard Levittec569e202015-05-18 11:03:47 +0200476
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 Caswell84a68332016-10-30 08:38:52 +0000492 => [ "tls1", "tls1_1", "tls1_2", "tls1_3",
Richard Levittec569e202015-05-18 11:03:47 +0200493 "dtls1", "dtls1_2" ],
494
495 "tls" => [ @tls ],
Richard Levitte343a7462017-02-17 20:48:28 +0100496 sub { 0 == scalar grep { !$disabled{$_} } @tls }
497 => [ "tls" ],
Richard Levittec569e202015-05-18 11:03:47 +0200498
Richard Levitteb6127992016-11-15 14:53:33 +0100499 # SRP and HEARTBEATS require TLSEXT
500 "tlsext" => [ "srp", "heartbeats" ],
Richard Levitteef8ca6b2016-02-14 12:16:52 +0100501
502 "crypto-mdebug" => [ "crypto-mdebug-backtrace" ],
Richard Levitte343ec2b2016-02-19 22:08:37 +0100503
504 # Without DSO, we can't load dynamic engines, so don't build them dynamic
505 "dso" => [ "dynamic-engine" ],
Richard Levitteae482422016-02-22 02:09:11 +0100506
507 # Without position independent code, there can be no shared libraries or DSOs
Richard Levitte00698062016-03-11 12:58:15 +0100508 "pic" => [ "shared" ],
509 "shared" => [ "dynamic-engine" ],
Emilia Kasperc91a0a82016-03-14 12:21:44 +0100510 "engine" => [ "afalgeng" ],
Matt Caswelld90a6be2016-04-14 13:44:15 +0100511
512 # no-autoalginit is only useful when building non-shared
513 "autoalginit" => [ "shared", "apps" ],
514
Richard Levitte25d498c2016-08-05 12:54:57 +0200515 "stdio" => [ "apps", "capieng" ],
Matt Caswelld90a6be2016-04-14 13:44:15 +0100516 "apps" => [ "tests" ],
Matt Caswell3cf96e82016-12-28 15:32:39 +0000517 "comp" => [ "zlib" ],
518 "ec" => [ "tls1_3" ],
Richard Levitteb6127992016-11-15 14:53:33 +0100519 sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
Emilia Kasper29df3062016-07-28 20:24:28 +0200520
521 sub { !$disabled{"msan"} } => [ "asm" ],
Richard Levittec569e202015-05-18 11:03:47 +0200522 );
523
524# Avoid protocol support holes. Also disable all versions below N, if version
525# N is disabled while N+1 is enabled.
526#
527my @list = (reverse @tls);
528while ((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}
534my @list = (reverse @dtls);
535while ((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öller7a762192008-12-02 01:21:39 +0000542# Explicit "no-..." options will be collected in %disabled along with the defaults.
Rich Salze4ef2e22016-02-10 11:10:39 -0500543# To remove something from %disabled, use "enable-foo".
Bodo Möller7a762192008-12-02 01:21:39 +0000544# For symmetry, "disable-foo" is a synonym for "no-foo".
545
Andy Polyakovd0590fe2004-07-18 16:19:34 +0000546my $no_sse2=0;
Richard Levitteb6e4dac2001-11-27 11:48:30 +0000547
Ulf Möller462ba4f1999-04-24 22:59:36 +0000548&usage if ($#ARGV < 0);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000549
Richard Levittebcb19772016-01-30 02:17:05 +0100550my $user_cflags="";
551my @user_defines=();
Richard Levitte7d130f62015-05-19 01:40:54 +0200552$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 Levittefe052642015-05-18 03:33:55 +0200557my $libs="";
558my $target="";
Richard Levitte3fa04f02016-01-12 00:17:12 +0100559$config{options}="";
Richard Levitte8864f0d2016-03-02 19:13:26 +0100560$config{build_type} = "release";
Richard Levittec59cb512000-08-17 10:23:45 +0000561
Richard Levittefe052642015-05-18 03:33:55 +0200562my %unsupported_options = ();
Richard Levittee80381e2016-02-22 10:42:53 +0100563my %deprecated_options = ();
Richard Levittefad599f2016-10-12 17:05:35 +0200564while (@argvcopy)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +0000565 {
Richard Levittefad599f2016-10-12 17:05:35 +0200566 $_ = shift @argvcopy;
Richard Levitte7c55e222016-02-16 16:07:05 +0100567 # 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 Levittefe052642015-05-18 03:33:55 +0200574 s /^-no-/no-/; # some people just can't read the instructions
Richard Levittec59cb512000-08-17 10:23:45 +0000575
Richard Levittefe052642015-05-18 03:33:55 +0200576 # 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 Levittec59cb512000-08-17 10:23:45 +0000582
Rich Salze4ef2e22016-02-10 11:10:39 -0500583 if (/^(no|disable|enable)-(.+)$/)
Matt Caswell2b1343b2016-06-16 11:45:24 +0100584 {
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 Salze4ef2e22016-02-10 11:10:39 -0500595 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 Roeckxc5c77002016-03-28 00:31:23 +0200609 $disabled{"dtls"} = "option(dtls)";
Rich Salze4ef2e22016-02-10 11:10:39 -0500610 }
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 Levitte343ec2b2016-02-19 22:08:37 +0100625 elsif ($1 eq "static-engine")
626 {
Richard Levitte19ab5792016-02-22 02:06:05 +0100627 delete $disabled{"dynamic-engine"};
Richard Levitte343ec2b2016-02-19 22:08:37 +0100628 }
629 elsif ($1 eq "dynamic-engine")
630 {
Richard Levitte19ab5792016-02-22 02:06:05 +0100631 $disabled{"dynamic-engine"} = "option";
Richard Levitte343ec2b2016-02-19 22:08:37 +0100632 }
Matt Caswell2b1343b2016-06-16 11:45:24 +0100633 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 Salze4ef2e22016-02-10 11:10:39 -0500641 else
642 {
643 $disabled{$1} = "option";
644 }
Richard Levitte9c62a272016-02-27 16:51:34 +0100645 # No longer an automatic choice
646 $auto_threads = 0 if ($1 eq "threads");
Bodo Möllerfbabb751999-07-09 12:00:34 +0000647 }
Rich Salze4ef2e22016-02-10 11:10:39 -0500648 elsif (/^enable-(.+)$/)
Richard Levittefe052642015-05-18 03:33:55 +0200649 {
Richard Levitte343ec2b2016-02-19 22:08:37 +0100650 if ($1 eq "static-engine")
651 {
Richard Levitte19ab5792016-02-22 02:06:05 +0100652 $disabled{"dynamic-engine"} = "option";
Richard Levitte343ec2b2016-02-19 22:08:37 +0100653 }
654 elsif ($1 eq "dynamic-engine")
655 {
Richard Levitte19ab5792016-02-22 02:06:05 +0100656 delete $disabled{"dynamic-engine"};
Richard Levitte343ec2b2016-02-19 22:08:37 +0100657 }
Richard Levitte25004db2016-03-03 10:07:29 +0100658 elsif ($1 eq "zlib-dynamic")
659 {
660 delete $disabled{"zlib"};
661 }
Richard Levittefe052642015-05-18 03:33:55 +0200662 my $algo = $1;
Richard Levittefe052642015-05-18 03:33:55 +0200663 delete $disabled{$algo};
664
Richard Levitte9c62a272016-02-27 16:51:34 +0100665 # No longer an automatic choice
666 $auto_threads = 0 if ($1 eq "threads");
Richard Levittefe052642015-05-18 03:33:55 +0200667 }
668 elsif (/^--strict-warnings$/)
669 {
670 $strict_warnings = 1;
671 }
672 elsif (/^--debug$/)
673 {
Richard Levitte8864f0d2016-03-02 19:13:26 +0100674 $config{build_type} = "debug";
Richard Levittefe052642015-05-18 03:33:55 +0200675 }
676 elsif (/^--release$/)
677 {
Richard Levitte8864f0d2016-03-02 19:13:26 +0100678 $config{build_type} = "release";
Richard Levittefe052642015-05-18 03:33:55 +0200679 }
680 elsif (/^386$/)
Richard Levitte7d130f62015-05-19 01:40:54 +0200681 { $config{processor}=386; }
Richard Levittefe052642015-05-18 03:33:55 +0200682 elsif (/^fips$/)
683 {
Emilia Kasperb53338c2017-02-28 12:30:28 +0100684 die "FIPS mode not supported\n";
Richard Levittefe052642015-05-18 03:33:55 +0200685 }
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 Kasperb53338c2017-02-28 12:30:28 +0100694 die "FIPS mode not supported\n";
Richard Levittefe052642015-05-18 03:33:55 +0200695 }
696 elsif (/^[-+]/)
697 {
Richard Levitte45c6e232016-04-02 18:36:52 +0200698 if (/^--prefix=(.*)$/)
Richard Levittefe052642015-05-18 03:33:55 +0200699 {
Richard Levitte291e94d2015-05-18 22:35:23 +0200700 $config{prefix}=$1;
Richard Levitte5482dac2016-01-30 02:57:19 +0100701 die "Directory given with --prefix MUST be absolute\n"
702 unless file_name_is_absolute($config{prefix});
Richard Levittefe052642015-05-18 03:33:55 +0200703 }
704 elsif (/^--api=(.*)$/)
705 {
Richard Levitte107b5792015-05-20 20:03:20 +0200706 $config{api}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200707 }
708 elsif (/^--libdir=(.*)$/)
709 {
Richard Levitte107b5792015-05-20 20:03:20 +0200710 $config{libdir}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200711 }
712 elsif (/^--openssldir=(.*)$/)
713 {
Richard Levitte291e94d2015-05-18 22:35:23 +0200714 $config{openssldir}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200715 }
Richard Levittefe052642015-05-18 03:33:55 +0200716 elsif (/^--with-zlib-lib=(.*)$/)
717 {
Michael Lee20a58192016-02-03 11:31:40 -0500718 $withargs{zlib_lib}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200719 }
720 elsif (/^--with-zlib-include=(.*)$/)
721 {
Richard Levitteda430a52016-04-12 16:35:32 +0200722 $withargs{zlib_include}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200723 }
Kurt Roeckxf59d0132016-05-07 22:09:13 +0200724 elsif (/^--with-fuzzer-lib=(.*)$/)
725 {
726 $withargs{fuzzer_lib}=$1;
727 }
728 elsif (/^--with-fuzzer-include=(.*)$/)
729 {
730 $withargs{fuzzer_include}=$1;
731 }
Richard Levittefe052642015-05-18 03:33:55 +0200732 elsif (/^--cross-compile-prefix=(.*)$/)
733 {
Richard Levitte642a6132015-12-27 02:27:30 +0100734 $config{cross_compile_prefix}=$1;
Richard Levittefe052642015-05-18 03:33:55 +0200735 }
736 elsif (/^--config=(.*)$/)
737 {
738 read_config $1;
739 }
740 elsif (/^-[lL](.*)$/ or /^-Wl,/)
741 {
742 $libs.=$_." ";
743 }
Richard Levittefad599f2016-10-12 17:05:35 +0200744 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 Polyakov9d467522016-08-14 17:24:10 +0200752 elsif (/^-static$/)
753 {
754 $libs.=$_." ";
Andy Polyakov047d97a2016-09-01 21:36:13 +0200755 $disabled{"dso"} = "forced";
Andy Polyakov9d467522016-08-14 17:24:10 +0200756 $disabled{"pic"} = "forced";
757 $disabled{"shared"} = "forced";
758 $disabled{"threads"} = "forced";
759 }
Richard Levittebcb19772016-01-30 02:17:05 +0100760 elsif (/^-D(.*)$/)
761 {
762 push @user_defines, $1;
763 }
Richard Levittefe052642015-05-18 03:33:55 +0200764 else # common if (/^[-+]/), just pass down...
765 {
766 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
Rich Salz2b91ec72016-02-12 14:40:33 -0500767 $user_cflags.=" ".$_;
Richard Levittefe052642015-05-18 03:33:55 +0200768 }
769 }
Richard Levittefe052642015-05-18 03:33:55 +0200770 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
FdaSilvaYY8483a002016-03-10 21:34:48 +0100778 # have been derived. (Don't take this too seriously,
Richard Levittefe052642015-05-18 03:33:55 +0200779 # we really only write OPTIONS to the Makefile out of
780 # nostalgia.)
781
Richard Levitte3fa04f02016-01-12 00:17:12 +0100782 if ($config{options} eq "")
783 { $config{options} = $_; }
Richard Levittefe052642015-05-18 03:33:55 +0200784 else
Richard Levitte3fa04f02016-01-12 00:17:12 +0100785 { $config{options} .= " ".$_; }
Richard Levittefe052642015-05-18 03:33:55 +0200786 }
Richard Levitte489eb742015-10-22 17:33:47 +0200787
Richard Levitte107b5792015-05-20 20:03:20 +0200788 if (defined($config{api}) && !exists $apitable->{$config{api}}) {
789 die "***** Unsupported api compatibility level: $config{api}\n",
Viktor Dukhovni98186eb2016-01-04 23:00:33 -0500790 }
791
Richard Levittee80381e2016-02-22 10:42:53 +0100792 if (keys %deprecated_options)
793 {
794 warn "***** Deprecated options: ",
795 join(", ", keys %deprecated_options), "\n";
796 }
Richard Levitte489eb742015-10-22 17:33:47 +0200797 if (keys %unsupported_options)
798 {
799 die "***** Unsupported options: ",
800 join(", ", keys %unsupported_options), "\n";
801 }
Bodo Möllerfbabb751999-07-09 12:00:34 +0000802 }
Richard Levitteb6e4dac2001-11-27 11:48:30 +0000803
Richard Levitte342a1a22016-09-07 20:56:20 +0200804if ($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 Levittec569e202015-05-18 11:03:47 +0200811my @tocheckfor = (keys %disabled);
812while (@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 Levitte2110feb2016-04-06 15:02:57 +0200818 foreach(grep { !defined($disabled{$_}) } @$descendents) {
Richard Levitte01d99972016-03-14 10:02:13 +0100819 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
Richard Levitte2110feb2016-04-06 15:02:57 +0200820 }
Richard Levitteb6e4dac2001-11-27 11:48:30 +0000821 }
Richard Levittec569e202015-05-18 11:03:47 +0200822 }
823 @tocheckfor = (keys %new_tocheckfor);
824}
Ben Laurieedc032b2011-03-12 17:01:19 +0000825
Richard Levitted63c12c2016-08-31 19:47:35 +0200826our $die = sub { die @_; };
Bodo Möller436a3761999-05-28 23:18:51 +0000827if ($target eq "TABLE") {
Richard Levitted63c12c2016-08-31 19:47:35 +0200828 local $die = sub { warn @_; };
Richard Levitte00ae96c2015-05-18 12:53:38 +0200829 foreach (sort keys %table) {
830 print_table_entry($_, "TABLE");
831 }
832 exit 0;
Bodo Möller436a3761999-05-28 23:18:51 +0000833}
834
Ulf Möller10a926c2000-02-21 00:55:45 +0000835if ($target eq "LIST") {
Richard Levitte00ae96c2015-05-18 12:53:38 +0200836 foreach (sort keys %table) {
837 print $_,"\n" unless $table{$_}->{template};
838 }
839 exit 0;
Ulf Möller10a926c2000-02-21 00:55:45 +0000840}
841
Richard Levitteaaf878c2015-03-06 02:00:21 +0100842if ($target eq "HASH") {
Richard Levitted63c12c2016-08-31 19:47:35 +0200843 local $die = sub { warn @_; };
Richard Levitte00ae96c2015-05-18 12:53:38 +0200844 print "%table = (\n";
845 foreach (sort keys %table) {
846 print_table_entry($_, "HASH");
847 }
848 exit 0;
Richard Levitteaaf878c2015-03-06 02:00:21 +0100849}
850
Richard Levitte00ae96c2015-05-18 12:53:38 +0200851# Backward compatibility?
Richard Levitte49e04542002-02-14 12:28:24 +0000852if ($target =~ m/^CygWin32(-.*)$/) {
Richard Levitte00ae96c2015-05-18 12:53:38 +0200853 $target = "Cygwin".$1;
Richard Levitte49e04542002-02-14 12:28:24 +0000854}
855
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000856foreach (sort (keys %disabled))
857 {
Richard Levitte3fa04f02016-01-12 00:17:12 +0100858 $config{options} .= " no-$_";
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000859
860 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
861
862 if (/^dso$/)
Richard Levitte721f9052016-02-22 14:12:35 +0100863 { }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000864 elsif (/^threads$/)
Richard Levitte22bfe052016-02-22 14:03:23 +0100865 { }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000866 elsif (/^shared$/)
Richard Levitte84af1ba2016-02-22 13:52:46 +0100867 { }
Richard Levitteae482422016-02-22 02:09:11 +0100868 elsif (/^pic$/)
869 { }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000870 elsif (/^zlib$/)
Richard Levitte36a30902016-02-22 14:04:45 +0100871 { }
Richard Levitte19ab5792016-02-22 02:06:05 +0100872 elsif (/^dynamic-engine$/)
Dr. Stephen Hensonfbf002b2005-11-06 17:58:26 +0000873 { }
Richard Levitte09aa2632016-03-09 01:14:29 +0100874 elsif (/^makedepend$/)
875 { }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000876 elsif (/^zlib-dynamic$/)
877 { }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000878 elsif (/^sse2$/)
879 { $no_sse2 = 1; }
Richard Levitte107b5792015-05-20 20:03:20 +0200880 elsif (/^engine$/)
Rich Salz1288f262016-02-17 13:33:51 -0500881 {
882 @{$config{dirs}} = grep !/^engines$/, @{$config{dirs}};
883 @{$config{sdirs}} = grep !/^engine$/, @{$config{sdirs}};
884 push @{$config{openssl_other_defines}}, "OPENSSL_NO_ENGINE";
Richard Levitte3e2dd302016-09-06 20:14:33 +0200885 print " OPENSSL_NO_ENGINE (skip engines)";
Rich Salz1288f262016-02-17 13:33:51 -0500886 }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000887 else
888 {
Richard Levitte3e2dd302016-09-06 20:14:33 +0200889 my ($WHAT, $what);
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000890
Richard Levitte3e2dd302016-09-06 20:14:33 +0200891 ($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 Levitte66fe3882016-09-17 21:57:29 +0200900 if ($what ne "async" && $what ne "err"
901 && grep { $_ eq $what } @{$config{sdirs}})
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000902 {
Richard Levitte3e2dd302016-09-06 20:14:33 +0200903 push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$WHAT";
904 @{$config{sdirs}} = grep { $_ ne $what} @{$config{sdirs}};
Felix Laurie von Massenbachfce0ba52014-05-26 17:19:28 +0100905
Richard Levitte3e2dd302016-09-06 20:14:33 +0200906 print " OPENSSL_NO_$WHAT (skip dir)";
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000907 }
908 else
909 {
Richard Levitte3e2dd302016-09-06 20:14:33 +0200910 push @{$config{openssl_other_defines}}, "OPENSSL_NO_$WHAT";
911 print " OPENSSL_NO_$WHAT";
Andy Polyakov2a4af942015-01-24 16:46:54 +0100912
Richard Levitte3e2dd302016-09-06 20:14:33 +0200913 if (/^err$/) { push @user_defines, "OPENSSL_NO_ERR"; }
Bodo Möllerc9a112f2005-02-22 10:29:51 +0000914 }
915 }
916
917 print "\n";
918 }
919
Richard Levitte9e0724a2015-05-18 02:54:28 +0200920print "Configuring for $target\n";
Richard Levitte9e0724a2015-05-18 02:54:28 +0200921# Support for legacy targets having a name starting with 'debug-'
922my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
923if ($d) {
Richard Levitte8864f0d2016-03-02 19:13:26 +0100924 $config{build_type} = "debug";
Richard Levitte9e0724a2015-05-18 02:54:28 +0200925
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 Levitte291e94d2015-05-18 22:35:23 +0200931$config{target} = $target;
Richard Levitte79302212016-02-27 10:23:15 +0100932my %target = resolve_config($target);
Richard Levitte9e0724a2015-05-18 02:54:28 +0200933
934&usage if (!%target || $target{template});
935
Richard Levitteee9b0bb2016-09-14 22:21:41 +0200936my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
937$config{conf_files} = [ sort keys %conf_files ];
Richard Levitted2b22212016-02-27 11:25:33 +0100938%target = ( %{$table{DEFAULTS}}, %target );
Richard Levitte79302212016-02-27 10:23:15 +0100939
Richard Levitteea241952016-10-12 15:30:08 +0200940$target{cxxflags}=$target{cflags} unless defined $target{cxxflags};
Richard Levitte107b5792015-05-20 20:03:20 +0200941$target{exe_extension}="";
Richard Levittef99f91f2016-02-15 22:13:41 +0100942$target{exe_extension}=".exe" if ($config{target} eq "DJGPP"
943 || $config{target} =~ /^(?:Cygwin|mingw)/);
Richard Levitte107b5792015-05-20 20:03:20 +0200944$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
Ulf Möller462ba4f1999-04-24 22:59:36 +0000945
Richard Levittee987f9f2016-02-15 17:20:15 +0100946($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 Levitte642a6132015-12-27 02:27:30 +0100953$config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'}
954 if $config{cross_compile_prefix} eq "";
Dr. Stephen Hensonf99f41c2009-10-07 16:41:14 +0000955
Richard Levitteb0a1e8b2016-03-02 12:22:15 +0100956# Allow overriding the names of some tools. USE WITH CARE
Richard Levitted5133692016-07-02 16:39:15 +0200957# Note: only Unix cares about HASHBANGPERL... that explains
958# the default string.
Andy Polyakov758baa32016-09-09 23:45:57 +0200959$config{perl} = ($^O ne "VMS" ? $^X : "perl");
Richard Levitted5133692016-07-02 16:39:15 +0200960$config{hashbangperl} =
961 $ENV{'HASHBANGPERL'} || $ENV{'PERL'} || "/usr/bin/env perl";
Richard Levitteb0a1e8b2016-03-02 12:22:15 +0100962$target{cc} = $ENV{'CC'} || $target{cc} || "cc";
Richard Levitte83bd0482016-10-14 17:44:25 +0200963$target{cxx} = $ENV{'CXX'} || $target{cxx} || "c++";
Andy Polyakovf58a0ac2016-05-09 15:35:55 +0200964$target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} ||
Andy Polyakov656bbdc2016-05-20 21:31:11 +0200965 (which("$config{cross_compile_prefix}ranlib") ?
Andy Polyakovf58a0ac2016-05-09 15:35:55 +0200966 "\$(CROSS_COMPILE)ranlib" : "true");
Richard Levitteb0a1e8b2016-03-02 12:22:15 +0100967$target{ar} = $ENV{'AR'} || $target{ar} || "ar";
968$target{nm} = $ENV{'NM'} || $target{nm} || "nm";
Richard Levitte8f41ff22016-05-16 17:08:13 +0200969$target{rc} =
970 $ENV{'RC'} || $ENV{'WINDRES'} || $target{rc} || "windres";
Richard Levitteaaf878c2015-03-06 02:00:21 +0100971
Richard Levitte8b5156d2016-08-29 21:45:19 +0200972# Allow overriding the build file name
973$target{build_file} = $ENV{BUILDFILE} || $target{build_file} || "Makefile";
974
975# Cache information necessary for reconfiguration
Richard Levittea66234b2016-08-17 15:39:49 +0200976$config{cc} = $target{cc};
Richard Levitteea241952016-10-12 15:30:08 +0200977$config{cxx} = $target{cxx};
Richard Levitte8b5156d2016-08-29 21:45:19 +0200978$config{build_file} = $target{build_file};
Richard Levittea66234b2016-08-17 15:39:49 +0200979
Richard Levittebcb19772016-01-30 02:17:05 +0100980# For cflags, lflags, plib_lflags, ex_libs and defines, add the debug_
981# or release_ attributes.
Richard Levitteaaf878c2015-03-06 02:00:21 +0100982# Do it in such a way that no spurious space is appended (hence the grep).
Richard Levitte2952b9b2016-03-02 10:57:05 +0100983$config{defines} = [];
984$config{cflags} = "";
Richard Levitteea241952016-10-12 15:30:08 +0200985$config{cxxflags} = "";
Richard Levitte2952b9b2016-03-02 10:57:05 +0100986$config{ex_libs} = "";
987$config{shared_ldflag} = "";
Richard Levitteaaf878c2015-03-06 02:00:21 +0100988
Richard Levitte291e94d2015-05-18 22:35:23 +0200989# Make sure build_scheme is consistent.
990$target{build_scheme} = [ $target{build_scheme} ]
991 if ref($target{build_scheme}) ne "ARRAY";
Richard Levitted0d046e2002-01-27 15:52:37 +0000992
Richard Levitteddf18472016-01-30 00:57:33 +0100993my ($builder, $builder_platform, @builder_opts) =
994 @{$target{build_scheme}};
995
Richard Levitted192a3a2017-03-05 21:51:18 +0100996foreach 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 Levitte488e2b02016-04-01 16:03:46 +02001015push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release";
1016
Richard Levitte68ab5592016-02-05 15:14:45 +01001017if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` =~ m/-mno-cygwin/m)
Andy Polyakovcbecd292010-11-30 22:18:02 +00001018 {
Richard Levitte68ab5592016-02-05 15:14:45 +01001019 $config{cflags} .= " -mno-cygwin";
Richard Levitte2952b9b2016-03-02 10:57:05 +01001020 $config{shared_ldflag} .= " -mno-cygwin";
Andy Polyakovcbecd292010-11-30 22:18:02 +00001021 }
1022
Richard Levitte00b0d662016-02-22 14:10:45 +01001023if ($target =~ /linux.*-mips/ && !$disabled{asm} && $user_cflags !~ /-m(ips|arch=)/) {
Andy Polyakov63d88342012-09-15 11:21:50 +00001024 # minimally required architecture flags for assembly modules
Richard Levitte107b5792015-05-20 20:03:20 +02001025 $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/);
1026 $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/);
Andy Polyakov63d88342012-09-15 11:21:50 +00001027}
1028
Richard Levitte2964ba82003-01-11 11:40:39 +00001029my $no_shared_warn=0;
Andy Polyakov14bcdb02005-01-24 15:58:25 +00001030my $no_user_cflags=0;
Richard Levittebcb19772016-01-30 02:17:05 +01001031my $no_user_defines=0;
Richard Levitte2964ba82003-01-11 11:40:39 +00001032
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001033# 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 Levitte721f9052016-02-22 14:12:35 +01001039if (!$disabled{dso} && $target{dso_scheme} ne "")
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001040 {
Richard Levitte291e94d2015-05-18 22:35:23 +02001041 $target{dso_scheme} =~ tr/[a-z]/[A-Z]/;
1042 if ($target{dso_scheme} eq "DLFCN")
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001043 {
Richard Levitte2952b9b2016-03-02 10:57:05 +01001044 unshift @{$config{defines}}, "DSO_DLFCN", "HAVE_DLFCN_H";
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001045 }
Richard Levitte291e94d2015-05-18 22:35:23 +02001046 elsif ($target{dso_scheme} eq "DLFCN_NO_H")
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001047 {
Richard Levitte2952b9b2016-03-02 10:57:05 +01001048 unshift @{$config{defines}}, "DSO_DLFCN";
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001049 }
1050 else
1051 {
Richard Levitte2952b9b2016-03-02 10:57:05 +01001052 unshift @{$config{defines}}, "DSO_$target{dso_scheme}";
Geoff Thorpebc2aada2000-04-06 07:09:45 +00001053 }
1054 }
Geoff Thorpe9ec01262000-04-04 22:32:19 +00001055
Richard Levitte1740c162016-01-29 18:07:37 +01001056$config{ex_libs}="$libs$config{ex_libs}" if ($libs ne "");
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001057
Richard Levitte9c62a272016-02-27 16:51:34 +01001058# If threads aren't disabled, check how possible they are
1059unless ($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 {
FdaSilvaYY8483a002016-03-10 21:34:48 +01001066 # The user chose to enable threads explicitly, let's see
Richard Levitte9c62a272016-02-27 16:51:34 +01001067 # 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.
1084unless($disabled{threads}) {
1085 foreach (("defines", "openssl_thread_defines")) {
1086 push @{$config{$_}}, "OPENSSL_THREADS";
1087 }
1088}
Richard Levittee452de92001-07-12 09:11:14 +00001089
Viktor Dukhovni98186eb2016-01-04 23:00:33 -05001090# With "deprecated" disable all deprecated features.
1091if (defined($disabled{"deprecated"})) {
Richard Levitte107b5792015-05-20 20:03:20 +02001092 $config{api} = $maxapi;
Viktor Dukhovni98186eb2016-01-04 23:00:33 -05001093}
Matt Caswell07c4c142014-12-17 13:17:26 +00001094
Richard Levitte291e94d2015-05-18 22:35:23 +02001095if ($target{shared_target} eq "")
Andy Polyakov6f7ac8e2002-12-13 17:56:14 +00001096 {
Richard Levitteae482422016-02-22 02:09:11 +01001097 $no_shared_warn = 1
Emilia Kasperb53338c2017-02-28 12:30:28 +01001098 if (!$disabled{shared} || !$disabled{"dynamic-engine"});
Richard Levitte84af1ba2016-02-22 13:52:46 +01001099 $disabled{shared} = "no-shared-target";
Richard Levitteae482422016-02-22 02:09:11 +01001100 $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1101 "no-shared-target";
Andy Polyakov6f7ac8e2002-12-13 17:56:14 +00001102 }
Richard Levitteb436a982000-07-21 15:08:53 +00001103
Richard Levitte19ab5792016-02-22 02:06:05 +01001104if ($disabled{"dynamic-engine"}) {
Richard Levitte343ec2b2016-02-19 22:08:37 +01001105 push @{$config{defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1106 $config{dynamic_engines} = 0;
Richard Levitte19ab5792016-02-22 02:06:05 +01001107} else {
1108 push @{$config{defines}}, "OPENSSL_NO_STATIC_ENGINE";
1109 $config{dynamic_engines} = 1;
Richard Levitte343ec2b2016-02-19 22:08:37 +01001110}
Richard Levitteecd45312002-10-11 18:06:08 +00001111
Ben Lauriec38bb722016-03-26 17:19:14 +00001112unless ($disabled{asan}) {
1113 $config{cflags} .= "-fsanitize=address ";
1114}
1115
1116unless ($disabled{ubsan}) {
FdaSilvaYYf430ba32016-06-19 19:39:01 +02001117 # -DPEDANTIC or -fnosanitize=alignment may also be required on some
Ben Lauriec38bb722016-03-26 17:19:14 +00001118 # platforms.
1119 $config{cflags} .= "-fsanitize=undefined -fno-sanitize-recover=all ";
1120}
1121
Emilia Kasper29df3062016-07-28 20:24:28 +02001122unless ($disabled{msan}) {
1123 $config{cflags} .= "-fsanitize=memory ";
1124}
1125
Richard Levitte65cc6d52016-06-05 10:59:31 +02001126unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
Emilia Kasper29df3062016-07-28 20:24:28 +02001127 && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
Ben Lauriec38bb722016-03-26 17:19:14 +00001128 $config{cflags} .= "-fno-omit-frame-pointer -g ";
1129}
Andy Polyakovc313e322007-09-16 12:23:47 +00001130#
1131# Platform fix-ups
1132#
Richard Levitteae482422016-02-22 02:09:11 +01001133
1134# This saves the build files from having to check
1135if ($disabled{pic})
1136 {
1137 $target{shared_cflag} = $target{shared_ldflag} =
1138 $target{shared_rcflag} = "";
1139 }
Richard Levitte4f160392016-02-21 20:52:39 +01001140else
1141 {
1142 push @{$config{defines}}, "OPENSSL_PIC";
1143 }
Richard Levitteae482422016-02-22 02:09:11 +01001144
Richard Levitte291e94d2015-05-18 22:35:23 +02001145if ($target{sys_id} ne "")
Richard Levittecf1b7d92001-02-19 16:06:34 +00001146 {
Richard Levitte642a6132015-12-27 02:27:30 +01001147 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
Richard Levittecf1b7d92001-02-19 16:06:34 +00001148 }
1149
Richard Levitte00b0d662016-02-22 14:10:45 +01001150unless ($disabled{asm}) {
Richard Levitted2b22212016-02-27 11:25:33 +01001151 $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001152 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
Andy Polyakovf8c469d2004-08-02 22:41:19 +00001153
Richard Levitte9e0724a2015-05-18 02:54:28 +02001154 # bn-586 is the only one implementing bn_*_part_words
Richard Levittebcb19772016-01-30 02:17:05 +01001155 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. Engelschalldfeab061998-12-21 11:00:56 +00001157
Richard Levittebcb19772016-01-30 02:17:05 +01001158 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 Polyakov5ac7bde2005-10-07 14:18:06 +00001161
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001162 if ($target{sha1_asm_src}) {
Richard Levittebcb19772016-01-30 02:17:05 +01001163 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 Levitte9e0724a2015-05-18 02:54:28 +02001166 }
Richard Levitte216e8d92016-08-26 09:59:55 +02001167 if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
1168 push @{$config{defines}}, "RC4_ASM";
1169 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001170 if ($target{md5_asm_src}) {
Richard Levittebcb19772016-01-30 02:17:05 +01001171 push @{$config{defines}}, "MD5_ASM";
Richard Levitte9e0724a2015-05-18 02:54:28 +02001172 }
Richard Levitted2b22212016-02-27 11:25:33 +01001173 $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001174 if ($target{rmd160_asm_src}) {
Richard Levittebcb19772016-01-30 02:17:05 +01001175 push @{$config{defines}}, "RMD160_ASM";
Richard Levitte9e0724a2015-05-18 02:54:28 +02001176 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001177 if ($target{aes_asm_src}) {
Richard Levittebcb19772016-01-30 02:17:05 +01001178 push @{$config{defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001179 # aes-ctr.fake is not a real file, only indication that assembler
Andy Polyakov874a3752010-07-09 12:21:52 +00001180 # module implements AES_ctr32_encrypt...
Richard Levittebcb19772016-01-30 02:17:05 +01001181 push @{$config{defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001182 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
Richard Levittebcb19772016-01-30 02:17:05 +01001183 push @{$config{defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001184 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($no_sse2);
Richard Levittebcb19772016-01-30 02:17:05 +01001185 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 Levitte9e0724a2015-05-18 02:54:28 +02001187 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001188 if ($target{wp_asm_src} =~ /mmx/) {
Andy Polyakov46d4d862016-01-29 14:23:24 +01001189 if ($config{processor} eq "386") {
Richard Levitted2b22212016-02-27 11:25:33 +01001190 $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
Andy Polyakov46d4d862016-01-29 14:23:24 +01001191 } elsif (!$disabled{"whirlpool"}) {
Richard Levitte2952b9b2016-03-02 10:57:05 +01001192 push @{$config{defines}}, "WHIRLPOOL_ASM";
Andy Polyakov46d4d862016-01-29 14:23:24 +01001193 }
Richard Levitte9e0724a2015-05-18 02:54:28 +02001194 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001195 if ($target{modes_asm_src} =~ /ghash-/) {
Richard Levittebcb19772016-01-30 02:17:05 +01001196 push @{$config{defines}}, "GHASH_ASM";
Richard Levitte9e0724a2015-05-18 02:54:28 +02001197 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001198 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
Richard Levittebcb19772016-01-30 02:17:05 +01001199 push @{$config{defines}}, "ECP_NISTZ256_ASM";
Richard Levitte9e0724a2015-05-18 02:54:28 +02001200 }
Richard Levitte7b176a52016-08-29 16:58:31 +02001201 if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
1202 push @{$config{defines}}, "PADLOCK_ASM";
1203 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001204 if ($target{poly1305_asm_src} ne "") {
Richard Levittebcb19772016-01-30 02:17:05 +01001205 push @{$config{defines}}, "POLY1305_ASM";
Richard Levitte9e0724a2015-05-18 02:54:28 +02001206 }
1207}
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00001208
Richard Levitte8ed40b82016-01-27 19:03:13 +01001209my $ecc = $target{cc};
Richard Levitte09aa2632016-03-09 01:14:29 +01001210if ($^O ne "VMS" && !$disabled{makedepend}) {
Richard Levittea583fc42016-02-16 16:08:06 +01001211 # 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 Polyakovd0db7ee2016-03-11 12:33:59 +01001214 open(PIPE, "$ccpcc --version 2>&1 |");
1215 my $lines = 2;
Richard Levittea583fc42016-02-16 16:08:06 +01001216 while ( <PIPE> ) {
Richard Levitte30752dd2016-03-08 17:16:16 +01001217 # Find the version number and save the major.
1218 m|(?:.*)\b(\d+)\.\d+\.\d+\b(?:.*)|;
Richard Levitte39affe12016-03-10 19:33:11 +01001219 my $compiler_major = $1;
Richard Levitte30752dd2016-03-08 17:16:16 +01001220 # We know that GNU C version 3 and up as well as all clang
1221 # versions support dependency generation
Richard Levitte39affe12016-03-10 19:33:11 +01001222 $config{makedepprog} = $ccpcc
Andy Polyakov35c11bf2016-09-10 21:12:56 +02001223 if (/clang/ || (/gcc/ && $compiler_major >= 3));
Richard Levittea583fc42016-02-16 16:08:06 +01001224 $ecc = "clang" if /clang/;
1225 $ecc = "gcc" if /gcc/;
Andy Polyakovd0db7ee2016-03-11 12:33:59 +01001226 last if ($config{makedepprog} || !$lines--);
Richard Levittea583fc42016-02-16 16:08:06 +01001227 }
1228 close(PIPE);
Richard Levitte09aa2632016-03-09 01:14:29 +01001229
Andy Polyakov656bbdc2016-05-20 21:31:11 +02001230 $config{makedepprog} = which('makedepend') unless $config{makedepprog};
Richard Levitte09aa2632016-03-09 01:14:29 +01001231 $disabled{makedepend} = "unavailable" unless $config{makedepprog};
Rich Salzf1f07a22016-01-29 19:50:28 -05001232}
Richard Levitte8ed40b82016-01-27 19:03:13 +01001233
Richard Levitte7d130f62015-05-19 01:40:54 +02001234
Richard Levitte09aa2632016-03-09 01:14:29 +01001235
Richard Levitte7d130f62015-05-19 01:40:54 +02001236# Deal with bn_ops ###################################################
1237
Richard Levitte7d130f62015-05-19 01:40:54 +02001238$config{bn_ll} =0;
Richard Levitte7d130f62015-05-19 01:40:54 +02001239$config{export_var_as_fn} =0;
1240my $def_int="unsigned int";
1241$config{rc4_int} =$def_int;
Rich Salzb4f35e52016-01-23 13:23:25 -05001242($config{b64l},$config{b64},$config{b32})=(0,0,1);
Richard Levitte7d130f62015-05-19 01:40:54 +02001243
Rich Salz94af0cd2016-01-28 10:13:21 -05001244my $count = 0;
Richard Levitte7d130f62015-05-19 01:40:54 +02001245foreach (sort split(/\s+/,$target{bn_ops})) {
Rich Salz94af0cd2016-01-28 10:13:21 -05001246 $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 Levitte7d130f62015-05-19 01:40:54 +02001256}
Rich Salz94af0cd2016-01-28 10:13:21 -05001257die "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 Levitte7d130f62015-05-19 01:40:54 +02001259
1260
1261# Hack cflags for better warnings (dev option) #######################
1262
Richard Levitte1ed0c662002-05-30 18:06:35 +00001263# "Stringify" the C flags string. This permits it to be made part of a string
1264# and works as well on command lines.
Richard Levitte01d99972016-03-14 10:02:13 +01001265$config{cflags} =~ s/([\\\"])/\\$1/g;
Richard Levitte1ed0c662002-05-30 18:06:35 +00001266
Richard Levitte107b5792015-05-20 20:03:20 +02001267if (defined($config{api})) {
1268 $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
Richard Levittebcb19772016-01-30 02:17:05 +01001269 my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
Richard Levittebcb19772016-01-30 02:17:05 +01001270 push @{$config{defines}}, $apiflag;
Viktor Dukhovni98186eb2016-01-04 23:00:33 -05001271}
1272
Dr. Stephen Henson0c28f272009-09-09 16:31:32 +00001273if ($strict_warnings)
1274 {
1275 my $wopt;
Rich Salzf1f07a22016-01-29 19:50:28 -05001276 die "ERROR --strict-warnings requires gcc or clang"
1277 unless $ecc eq 'gcc' || $ecc eq 'clang';
Dr. Stephen Henson0c28f272009-09-09 16:31:32 +00001278 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1279 {
Richard Levitted918f9c2016-02-16 23:27:13 +01001280 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
Dr. Stephen Henson0c28f272009-09-09 16:31:32 +00001281 }
Ben Laurie190c8c62015-04-19 14:10:54 +01001282 if ($ecc eq "clang")
1283 {
1284 foreach $wopt (split /\s+/, $clang_devteam_warn)
1285 {
Richard Levitted918f9c2016-02-16 23:27:13 +01001286 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
Ben Laurie190c8c62015-04-19 14:10:54 +01001287 }
1288 }
Richard Levitteef8ca6b2016-02-14 12:16:52 +01001289 }
1290
1291unless ($disabled{"crypto-mdebug-backtrace"})
1292 {
1293 foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
Richard Levittea1d3f3d2015-12-02 18:44:26 +01001294 {
Richard Levitted918f9c2016-02-16 23:27:13 +01001295 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
Richard Levitteef8ca6b2016-02-14 12:16:52 +01001296 }
1297 if ($target =~ /^BSD-/)
1298 {
1299 $config{ex_libs} .= " -lexecinfo";
Richard Levitte291e94d2015-05-18 22:35:23 +02001300 }
Dr. Stephen Henson0c28f272009-09-09 16:31:32 +00001301 }
1302
Kurt Roeckx7cb58c02016-12-03 16:57:04 +01001303if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; $config{cxxflags}="$config{cxxflags}$user_cflags";}
Richard Levitte63994092016-02-13 13:02:35 +01001304else { $no_user_cflags=1; }
1305if (@user_defines) { $config{defines}=[ @{$config{defines}}, @user_defines ]; }
1306else { $no_user_defines=1; }
1307
1308# ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1309
Emilia Kasperc91a0a82016-03-14 12:21:44 +01001310unless ($disabled{afalgeng}) {
1311 $config{afalgeng}="";
Richard Levitte79fff392016-03-09 09:04:01 +01001312 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 Kasperc91a0a82016-03-14 12:21:44 +01001320 $disabled{afalgeng} = "too-old-kernel";
Richard Levitte79fff392016-03-09 09:04:01 +01001321 } else {
1322 push @{$config{engdirs}}, "afalg";
1323 }
Matt Caswell68dc37c2016-03-16 10:08:53 +00001324 } else {
1325 $disabled{afalgeng} = "cross-compiling";
clucey6cba4a62016-02-23 08:01:01 +00001326 }
Richard Levitte79fff392016-03-09 09:04:01 +01001327 } else {
Emilia Kasperc91a0a82016-03-14 12:21:44 +01001328 $disabled{afalgeng} = "not-linux";
clucey7f458a42016-02-17 13:38:36 +00001329 }
1330}
Matt Caswell8da00a32016-02-29 13:36:47 +00001331
Emilia Kasperc91a0a82016-03-14 12:21:44 +01001332push @{$config{openssl_other_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
clucey7f458a42016-02-17 13:38:36 +00001333
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001334# If we use the unified build, collect information from build.info files
1335my %unified_info = ();
1336
Richard Levitte2b6b6062016-03-10 00:04:04 +01001337my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
Richard Levitteddf18472016-01-30 00:57:33 +01001338if ($builder eq "unified") {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001339 use lib catdir(dirname(__FILE__),"util");
1340 use with_fallback qw(Text::Template);
1341
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001342 sub cleandir {
Richard Levitte2e963842016-02-10 02:00:37 +01001343 my $base = shift;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001344 my $dir = shift;
Richard Levitte2e963842016-02-10 02:00:37 +01001345 my $relativeto = shift || ".";
1346
1347 $dir = catdir($base,$dir) unless isabsolute($dir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001348
Richard Levitteec182ef2016-02-09 10:15:13 +01001349 # Make sure the directories we're building in exists
1350 mkpath($dir);
1351
Richard Levitte2e963842016-02-10 02:00:37 +01001352 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001353 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1354 return $res;
1355 }
1356
1357 sub cleanfile {
Richard Levitte2e963842016-02-10 02:00:37 +01001358 my $base = shift;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001359 my $file = shift;
Richard Levitte2e963842016-02-10 02:00:37 +01001360 my $relativeto = shift || ".";
1361
1362 $file = catfile($base,$file) unless isabsolute($file);
1363
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001364 my $d = dirname($file);
1365 my $f = basename($file);
1366
Richard Levitteec182ef2016-02-09 10:15:13 +01001367 # Make sure the directories we're building in exists
1368 mkpath($d);
1369
Richard Levitte2e963842016-02-10 02:00:37 +01001370 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001371 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1372 return $res;
1373 }
1374
Richard Levitte1967a422016-09-15 23:55:24 +02001375 # 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 Levitte9fe2bb72016-01-29 19:45:51 +01001416 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 Levittecfa76972016-10-12 16:05:06 +01001429 foreach (@{$config{tdirs}}) {
1430 push @build_infos, [ catdir("test", $_), "build.info" ]
1431 if (-f catfile($srcdir, "test", $_, "build.info"));
1432 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001433
Richard Levitte2e0956b2016-02-28 01:13:17 +01001434 $config{build_infos} = [ ];
1435
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001436 foreach (@build_infos) {
1437 my $sourced = catdir($srcdir, $_->[0]);
1438 my $buildd = catdir($blddir, $_->[0]);
1439
Richard Levittedca99382016-02-08 16:27:15 +01001440 mkpath($buildd);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001441
1442 my $f = $_->[1];
1443 # The basic things we're trying to build
1444 my @programs = ();
Richard Levitte7f5af792016-07-08 14:28:58 +02001445 my @programs_install = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001446 my @libraries = ();
Richard Levitte7f5af792016-07-08 14:28:58 +02001447 my @libraries_install = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001448 my @engines = ();
Richard Levitte7f5af792016-07-08 14:28:58 +02001449 my @engines_install = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001450 my @scripts = ();
Richard Levitte7f5af792016-07-08 14:28:58 +02001451 my @scripts_install = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001452 my @extra = ();
Richard Levitte8a679462016-03-07 14:50:37 +01001453 my @overrides = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001454 my @intermediates = ();
1455 my @rawlines = ();
1456
1457 my %ordinals = ();
1458 my %sources = ();
Richard Levitte2a08d1a2016-03-29 16:45:03 +02001459 my %shared_sources = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001460 my %includes = ();
1461 my %depends = ();
1462 my %renames = ();
1463 my %sharednames = ();
Richard Levitteae4c7452016-03-07 14:37:00 +01001464 my %generate = ();
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001465
Richard Levitte2e0956b2016-02-28 01:13:17 +01001466 push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001467 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 Levitte9e04edf2016-02-22 13:45:46 +01001474 disabled => \%disabled,
Kurt Roeckxf59d0132016-05-07 22:09:13 +02001475 withargs => \%withargs,
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001476 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 Levitte635bd402016-03-09 14:33:37 +01001495 => sub {
Richard Levittec5798e02016-03-09 23:58:44 +01001496 if (! @skip || $skip[$#skip] > 0) {
Richard Levitte635bd402016-03-09 14:33:37 +01001497 push @skip, !! $1;
1498 } else {
1499 push @skip, -1;
1500 }
1501 },
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001502 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 Levitte7f5af792016-07-08 14:28:58 +02001515 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 Levitte9fe2bb72016-01-29 19:45:51 +01001551 qr/^\s*EXTRA\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001552 => sub { push @extra, tokenize($1)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001553 if !@skip || $skip[$#skip] > 0 },
Richard Levitte8a679462016-03-07 14:50:37 +01001554 qr/^\s*OVERRIDES\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001555 => sub { push @overrides, tokenize($1)
Richard Levitte8a679462016-03-07 14:50:37 +01001556 if !@skip || $skip[$#skip] > 0 },
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001557
1558 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
Richard Levittece959812016-05-24 17:39:52 +02001559 => sub { push @{$ordinals{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001560 if !@skip || $skip[$#skip] > 0 },
1561 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001562 => sub { push @{$sources{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001563 if !@skip || $skip[$#skip] > 0 },
Richard Levitte2a08d1a2016-03-29 16:45:03 +02001564 qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001565 => sub { push @{$shared_sources{$1}}, tokenize($2)
Richard Levitte2a08d1a2016-03-29 16:45:03 +02001566 if !@skip || $skip[$#skip] > 0 },
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001567 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001568 => sub { push @{$includes{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001569 if !@skip || $skip[$#skip] > 0 },
Richard Levitte4f858292016-06-13 21:57:51 +02001570 qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001571 => sub { push @{$depends{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001572 if !@skip || $skip[$#skip] > 0 },
Richard Levitteae4c7452016-03-07 14:37:00 +01001573 qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1574 => sub { push @{$generate{$1}}, $2
1575 if !@skip || $skip[$#skip] > 0 },
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001576 qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001577 => sub { push @{$renames{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001578 if !@skip || $skip[$#skip] > 0 },
1579 qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
Richard Levittece959812016-05-24 17:39:52 +02001580 => sub { push @{$sharednames{$1}}, tokenize($2)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001581 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 Levitte04f171c2016-02-12 12:10:27 +01001587 s|\R$||;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001588 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 Levitteddf18472016-01-30 00:57:33 +01001596 || $target_kind eq $target{build_file}."(".$builder_platform.")");
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001597 }
1598 },
Richard Levitteab6e1472016-10-25 12:40:32 +02001599 qr/^\s*(?:#.*)?$/ => sub { },
Richard Levitte2b6b6062016-03-10 00:04:04 +01001600 "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 Levitte9fe2bb72016-01-29 19:45:51 +01001612 );
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 Levitte2e963842016-02-10 02:00:37 +01001619 my $dest = cleanfile($buildd, $_, $blddir);
1620 my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001621 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 Levitte2e963842016-02-10 02:00:37 +01001629 my $program = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001630 if ($unified_info{rename}->{$program}) {
1631 $program = $unified_info{rename}->{$program};
1632 }
1633 $unified_info{programs}->{$program} = 1;
1634 }
1635
Richard Levitte7f5af792016-07-08 14:28:58 +02001636 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 Levitte9fe2bb72016-01-29 19:45:51 +01001644 foreach (@libraries) {
Richard Levitte2e963842016-02-10 02:00:37 +01001645 my $library = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001646 if ($unified_info{rename}->{$library}) {
1647 $library = $unified_info{rename}->{$library};
1648 }
1649 $unified_info{libraries}->{$library} = 1;
1650 }
1651
Richard Levitte7f5af792016-07-08 14:28:58 +02001652 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 Levitte343ec2b2016-02-19 22:08:37 +01001660 die <<"EOF" if scalar @engines and !$config{dynamic_engines};
Richard Levitte19ab5792016-02-22 02:06:05 +01001661ENGINES can only be used if configured with 'dynamic-engine'.
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001662This is usually a fault in a build.info file.
1663EOF
1664 foreach (@engines) {
Richard Levitte2e963842016-02-10 02:00:37 +01001665 my $library = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001666 if ($unified_info{rename}->{$library}) {
1667 $library = $unified_info{rename}->{$library};
1668 }
1669 $unified_info{engines}->{$library} = 1;
1670 }
1671
Richard Levitte7f5af792016-07-08 14:28:58 +02001672 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 Levitte9fe2bb72016-01-29 19:45:51 +01001680 foreach (@scripts) {
Richard Levitte2e963842016-02-10 02:00:37 +01001681 my $script = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001682 if ($unified_info{rename}->{$script}) {
1683 $script = $unified_info{rename}->{$script};
1684 }
1685 $unified_info{scripts}->{$script} = 1;
1686 }
1687
Richard Levitte7f5af792016-07-08 14:28:58 +02001688 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 Levitte9fe2bb72016-01-29 19:45:51 +01001696 foreach (@extra) {
Richard Levitte2e963842016-02-10 02:00:37 +01001697 my $extra = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001698 $unified_info{extra}->{$extra} = 1;
1699 }
1700
Richard Levitte8a679462016-03-07 14:50:37 +01001701 foreach (@overrides) {
1702 my $override = cleanfile($buildd, $_, $blddir);
1703 $unified_info{overrides}->{$override} = 1;
1704 }
1705
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001706 push @{$unified_info{rawlines}}, @rawlines;
1707
Richard Levitte84af1ba2016-02-22 13:52:46 +01001708 unless ($disabled{shared}) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001709 # Check sharednames.
1710 foreach (keys %sharednames) {
Richard Levitte2e963842016-02-10 02:00:37 +01001711 my $dest = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001712 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 Levitte2e963842016-02-10 02:00:37 +01001718 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001719 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 Levitte2e963842016-02-10 02:00:37 +01001739 my $ddest = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001740 if ($unified_info{rename}->{$ddest}) {
1741 $ddest = $unified_info{rename}->{$ddest};
1742 }
1743 foreach (@{$ordinals{$dest}}) {
1744 my %known_ordinals =
1745 (
1746 crypto =>
Richard Levitte6928b612016-03-03 12:42:01 +01001747 cleanfile($sourced, catfile("util", "libcrypto.num"), $blddir),
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001748 ssl =>
Richard Levitte6928b612016-03-03 12:42:01 +01001749 cleanfile($sourced, catfile("util", "libssl.num"), $blddir)
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001750 );
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 Levitte2e963842016-02-10 02:00:37 +01001760 my $ddest = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001761 if ($unified_info{rename}->{$ddest}) {
1762 $ddest = $unified_info{rename}->{$ddest};
1763 }
1764 foreach (@{$sources{$dest}}) {
Richard Levitte2e963842016-02-10 02:00:37 +01001765 my $s = cleanfile($sourced, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001766
1767 # If it isn't in the source tree, we assume it's generated
1768 # in the build tree
1769 if (! -f $s) {
Richard Levitte2e963842016-02-10 02:00:37 +01001770 $s = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001771 }
Richard Levitteea241952016-10-12 15:30:08 +02001772 # 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 Levitte2e963842016-02-10 02:00:37 +01001777 $o = cleanfile($buildd, $o, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001778 $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 Levitte2a08d1a2016-03-29 16:45:03 +02001786 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 Levitteea241952016-10-12 15:30:08 +02001800 # 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 Levitte2a08d1a2016-03-29 16:45:03 +02001805 $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 Levitteae4c7452016-03-07 14:37:00 +01001814 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 Levitte9fe2bb72016-01-29 19:45:51 +01001828 foreach (keys %depends) {
1829 my $dest = $_;
Richard Levitte4f858292016-06-13 21:57:51 +02001830 my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
Richard Levitte8d34daf2016-04-21 14:30:08 +02001831
1832 # If the destination doesn't exist in source, it can only be
1833 # a generated file in the build tree.
Richard Levitte4f858292016-06-13 21:57:51 +02001834 if ($ddest ne "" && ! -f $ddest) {
Richard Levitte8d34daf2016-04-21 14:30:08 +02001835 $ddest = cleanfile($buildd, $_, $blddir);
1836 if ($unified_info{rename}->{$ddest}) {
1837 $ddest = $unified_info{rename}->{$ddest};
1838 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001839 }
1840 foreach (@{$depends{$dest}}) {
Richard Levitte2e963842016-02-10 02:00:37 +01001841 my $d = cleanfile($sourced, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001842
Richard Levittee737d7b2016-02-11 15:22:27 +01001843 # 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 Levitteda1f2102016-03-19 01:29:01 +01001849 || (grep { $d eq $_ }
1850 map { cleanfile($srcdir, $_, $blddir) }
Richard Levitte4f858292016-06-13 21:57:51 +02001851 grep { /\.h$/ } keys %{$unified_info{generate}})) {
Richard Levitte2e963842016-02-10 02:00:37 +01001852 $d = cleanfile($buildd, $_, $blddir);
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001853 }
1854 # Take note if the file to depend on is being renamed
Richard Levitte186a31e2016-11-09 20:01:51 +01001855 # 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 Levitte9fe2bb72016-01-29 19:45:51 +01001861 if ($unified_info{rename}->{$d}) {
1862 $d = $unified_info{rename}->{$d};
1863 }
Richard Levitte186a31e2016-11-09 20:01:51 +01001864 $d .= $e;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001865 $unified_info{depends}->{$ddest}->{$d} = 1;
Richard Levitte8d34daf2016-04-21 14:30:08 +02001866 # If we depend on a header file or a perl module, let's make
1867 # sure it can get included
Richard Levitte4f858292016-06-13 21:57:51 +02001868 if ($dest ne "" && $d =~ /\.(h|pm)$/) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001869 my $i = dirname($d);
Richard Levitte4748f892016-06-29 22:51:42 +02001870 push @{$unified_info{includes}->{$ddest}->{source}}, $i
1871 unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}->{source}};
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001872 }
1873 }
1874 }
1875
1876 foreach (keys %includes) {
1877 my $dest = $_;
Richard Levitte8d34daf2016-04-21 14:30:08 +02001878 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 Levitte9fe2bb72016-01-29 19:45:51 +01001887 }
1888 foreach (@{$includes{$dest}}) {
Richard Levitte4748f892016-06-29 22:51:42 +02001889 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 Levitte9fe2bb72016-01-29 19:45:51 +01001895 }
1896 }
1897 }
1898
1899 ### Make unified_info a bit more efficient
1900 # One level structures
Richard Levitte8a679462016-03-07 14:50:37 +01001901 foreach (("programs", "libraries", "engines", "scripts", "extra", "overrides")) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001902 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
1903 }
1904 # Two level structures
Richard Levitte7f5af792016-07-08 14:28:58 +02001905 foreach my $l1 (("install", "sources", "shared_sources", "ldadd", "depends")) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001906 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
1907 $unified_info{$l1}->{$l2} =
1908 [ sort keys %{$unified_info{$l1}->{$l2}} ];
1909 }
1910 }
Richard Levitte4748f892016-06-29 22:51:42 +02001911 # 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 Levitte9fe2bb72016-01-29 19:45:51 +01001927}
1928
1929# For the schemes that need it, we provide the old *_obj configs
1930# from the *_asm_obj ones
Richard Levitte3a55c922016-02-18 18:43:56 +01001931foreach (grep /_(asm|aux)_src$/, keys %target) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01001932 my $src = $_;
Richard Levitte3a55c922016-02-18 18:43:56 +01001933 (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
Richard Levitteea241952016-10-12 15:30:08 +02001934 $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 Levitte9fe2bb72016-01-29 19:45:51 +01001937}
1938
Richard Levitte291e94d2015-05-18 22:35:23 +02001939# Write down our configuration where it fits #########################
1940
1941open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
1942print OUT <<"EOF";
1943package configdata;
1944
1945use strict;
1946use warnings;
1947
1948use Exporter;
1949#use vars qw(\@ISA \@EXPORT);
1950our \@ISA = qw(Exporter);
Richard Levitte3850f8c2016-03-19 00:41:14 +01001951our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
Richard Levitte291e94d2015-05-18 22:35:23 +02001952
1953EOF
1954print OUT "our %config = (\n";
1955foreach (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}
1964print OUT <<"EOF";
1965);
1966
1967EOF
1968print OUT "our %target = (\n";
1969foreach (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}
1978print OUT <<"EOF";
1979);
1980
Richard Levitte107b5792015-05-20 20:03:20 +02001981EOF
Richard Levitte96d2d7b2016-01-26 02:09:33 +01001982print OUT "our \%available_protocols = (\n";
1983print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
1984print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
1985print OUT <<"EOF";
1986);
1987
1988EOF
Richard Levitte3850f8c2016-03-19 00:41:14 +01001989print OUT "our \@disablables = (\n";
1990foreach (@disablables) {
1991 print OUT " ", quotify("perl", $_), ",\n";
1992}
1993print OUT <<"EOF";
1994);
1995
1996EOF
Richard Levitte96d2d7b2016-01-26 02:09:33 +01001997print OUT "our \%disabled = (\n";
1998foreach (sort keys %disabled) {
1999 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
2000}
2001print OUT <<"EOF";
2002);
2003
2004EOF
Richard Levitte107b5792015-05-20 20:03:20 +02002005print OUT "our %withargs = (\n";
2006foreach (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}
2015print OUT <<"EOF";
2016);
2017
Richard Levitte291e94d2015-05-18 22:35:23 +02002018EOF
Richard Levitteddf18472016-01-30 00:57:33 +01002019if ($builder eq "unified") {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002020 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
2059EOF
2060}
2061print OUT "1;\n";
Richard Levitte291e94d2015-05-18 22:35:23 +02002062close(OUT);
2063
Rich Salz141d7322016-09-06 12:26:38 -04002064print "\n";
2065print "PROCESSOR =$config{processor}\n" if $config{processor};
2066print "PERL =$config{perl}\n";
Andy Polyakov758baa32016-09-09 23:45:57 +02002067print "PERLVERSION =$Config{version} for $Config{archname}\n";
Rich Salz141d7322016-09-06 12:26:38 -04002068print "HASHBANGPERL =$config{hashbangperl}\n";
Andy Polyakovf58a0ac2016-05-09 15:35:55 +02002069print "CC =$config{cross_compile_prefix}$target{cc}\n";
Richard Levitte2952b9b2016-03-02 10:57:05 +01002070print "CFLAG =$target{cflags} $config{cflags}\n";
Richard Levitteea241952016-10-12 15:30:08 +02002071print "CXX =$config{cross_compile_prefix}$target{cxx}\n"
2072 if defined $target{cxx};
2073print "CXXFLAG =$target{cxxflags} $config{cxxflags}\n"
2074 if defined $target{cxx};
Richard Levitte2952b9b2016-03-02 10:57:05 +01002075print "DEFINES =",join(" ", @{$target{defines}}, @{$config{defines}}),"\n";
Rich Salz141d7322016-09-06 12:26:38 -04002076#print "RANLIB =", $target{ranlib} eq '$(CROSS_COMPILE)ranlib' ?
2077# "$config{cross_compile_prefix}ranlib" :
2078# "$target{ranlib}", "\n";
Richard Levitte2952b9b2016-03-02 10:57:05 +01002079print "EX_LIBS =$target{ex_libs} $config{ex_libs}\n";
Ben Lauriecba50681999-03-07 14:05:36 +00002080
Richard Levitte88087412015-05-18 14:31:49 +02002081my %builders = (
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002082 unified => sub {
Richard Levitteddf18472016-01-30 00:57:33 +01002083 run_dofile(catfile($blddir, $target{build_file}),
Richard Levitte1967a422016-09-15 23:55:24 +02002084 @{$config{build_file_templates}});
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002085 },
Richard Levitte88087412015-05-18 14:31:49 +02002086 );
2087
Richard Levitteddf18472016-01-30 00:57:33 +01002088$builders{$builder}->($builder_platform, @builder_opts);
Felix Laurie von Massenbachfce0ba52014-05-26 17:19:28 +01002089
Richard Levitte9c62a272016-02-27 16:51:34 +01002090print <<"EOF" if ($disabled{threads} eq "unavailable");
Bodo Möller5f8d5c91999-04-29 16:10:09 +00002091
2092The library could not be configured for supporting multi-threaded
2093applications as the compiler options required on this system are not known.
Bodo Möllerff1b7e01999-06-26 21:25:01 +00002094See file INSTALL for details if you need multi-threading.
Bodo Möllerec577821999-04-23 22:13:45 +00002095EOF
2096
Richard Levitte76ffb432015-05-18 02:46:21 +02002097print <<"EOF" if ($no_shared_warn);
Richard Levitte2964ba82003-01-11 11:40:39 +00002098
Richard Levitteae482422016-02-22 02:09:11 +01002099The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2100platform, 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
2102or position independent code, please let us know (but please first make sure
2103you have tried with a current version of OpenSSL).
Rich Salz2e31ef02015-12-10 12:31:01 -05002104EOF
2105
Richard Levitteddc606c2016-04-21 18:03:16 +02002106print <<"EOF" if (-f catfile($srcdir, "configdata.pm") && $srcdir ne $blddir);
2107
2108WARNING: there are indications that another build was made in the source
2109directory. This build may have picked up artifacts from that build, the
2110safest course of action is to clean the source directory and redo this
2111configuration.
2112EOF
2113
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002114exit(0);
2115
Richard Levittebd5192b2015-05-18 02:57:24 +02002116######################################################################
2117#
2118# Helpers and utility functions
2119#
2120
2121# Configuration file reading #########################################
2122
Richard Levitte1f2e1cd2016-03-17 09:09:31 +01002123# 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 Levittebd5192b2015-05-18 02:57:24 +02002128# Helper function to implement conditional inheritance depending on the
Richard Levitte00b0d662016-02-22 14:10:45 +01002129# value of $disabled{asm}. Used in inherit_from values as follows:
Richard Levittebd5192b2015-05-18 02:57:24 +02002130#
2131# inherit_from => [ "template", asm("asm_tmpl") ]
2132#
2133sub asm {
2134 my @x = @_;
2135 sub {
Richard Levitte00b0d662016-02-22 14:10:45 +01002136 $disabled{asm} ? () : @x;
Richard Levittebd5192b2015-05-18 02:57:24 +02002137 }
2138}
2139
Richard Levitte1f2e1cd2016-03-17 09:09:31 +01002140# 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#
2158sub 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#
2170sub 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#
2180sub threads {
2181 my @flags = @_;
2182 return sub { add($disabled{threads} ? () : @flags)->(); }
2183}
2184
2185
2186
Richard Levitte9c62a272016-02-27 16:51:34 +01002187our $add_called = 0;
Richard Levitte88087412015-05-18 14:31:49 +02002188# Helper function to implement adding values to already existing configuration
2189# values. It handles elements that are ARRAYs, CODEs and scalars
2190sub _add {
2191 my $separator = shift;
2192
Richard Levittebcb19772016-01-30 02:17:05 +01002193 # 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 Levitte88087412015-05-18 14:31:49 +02002197
2198 my @values =
2199 map {
Richard Levitteb0b92a52016-02-27 11:08:21 +01002200 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 Levitte88087412015-05-18 14:31:49 +02002211 } else {
Richard Levitteb0b92a52016-02-27 11:08:21 +01002212 ();
Richard Levitte88087412015-05-18 14:31:49 +02002213 }
2214 } (@_);
2215
Richard Levitte9c62a272016-02-27 16:51:34 +01002216 $add_called = 1;
2217
Richard Levitte88087412015-05-18 14:31:49 +02002218 if ($found_array) {
2219 [ @values ];
2220 } else {
Richard Levitteb0b92a52016-02-27 11:08:21 +01002221 join($separator, grep { defined($_) && $_ ne "" } @values);
Richard Levitte88087412015-05-18 14:31:49 +02002222 }
2223}
2224sub add_before {
Richard Levittebdcd83e2016-02-25 00:17:59 +01002225 my $separator = " ";
2226 if (ref($_[$#_]) eq "HASH") {
2227 my $opts = pop;
2228 $separator = $opts->{separator};
2229 }
Richard Levitte88087412015-05-18 14:31:49 +02002230 my @x = @_;
2231 sub { _add($separator, @x, @_) };
2232}
2233sub add {
Richard Levittebdcd83e2016-02-25 00:17:59 +01002234 my $separator = " ";
2235 if (ref($_[$#_]) eq "HASH") {
2236 my $opts = pop;
2237 $separator = $opts->{separator};
2238 }
Richard Levitte88087412015-05-18 14:31:49 +02002239 my @x = @_;
2240 sub { _add($separator, @_, @x) };
2241}
2242
Richard Levittebd5192b2015-05-18 02:57:24 +02002243# 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.
2246sub 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 Levitteee9b0bb2016-09-14 22:21:41 +02002257 # Protect certain tables from tampering
2258 local %table = %::table;
Richard Levittebd5192b2015-05-18 02:57:24 +02002259
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 Levitteee9b0bb2016-09-14 22:21:41 +02002273 } else {
2274 $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2275 }
Richard Levittebd5192b2015-05-18 02:57:24 +02002276 }
2277
2278 %table = (%table, %targets);
2279
2280}
2281
FdaSilvaYY8483a002016-03-10 21:34:48 +01002282# configuration resolver. Will only resolve all the lazy evaluation
2283# codeblocks for the chosen target and all those it inherits from,
Richard Levittebd5192b2015-05-18 02:57:24 +02002284# recursively
2285sub resolve_config {
2286 my $target = shift;
2287 my @breadcrumbs = @_;
2288
Richard Levittec4718842016-03-09 17:18:07 +01002289# my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
Richard Levitte9c62a272016-02-27 16:51:34 +01002290
Richard Levittebd5192b2015-05-18 02:57:24 +02002291 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 Levitte2110feb2016-04-06 15:02:57 +02002317 foreach (keys %inherited_config) {
Richard Levittebd5192b2015-05-18 02:57:24 +02002318 if (!$combined_inheritance{$_}) {
2319 $combined_inheritance{$_} = [];
2320 }
2321 push @{$combined_inheritance{$_}}, $inherited_config{$_};
Richard Levitte2110feb2016-04-06 15:02:57 +02002322 }
Richard Levittebd5192b2015-05-18 02:57:24 +02002323 }
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
FdaSilvaYY8483a002016-03-10 21:34:48 +01002336 # empty string, the inherited value list will be run through the
Richard Levittebd5192b2015-05-18 02:57:24 +02002337 # 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 Levittea26d8be2016-02-26 12:25:13 +01002341 my $default_combiner = add();
Richard Levittebd5192b2015-05-18 02:57:24 +02002342
2343 my %all_keys =
2344 map { $_ => 1 } (keys %combined_inheritance,
2345 keys %{$table{$target}});
Richard Levitteb0b92a52016-02-27 11:08:21 +01002346
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 Levitte9c62a272016-02-27 16:51:34 +01002353 $add_called = 0;
2354
Richard Levitteb0b92a52016-02-27 11:08:21 +01002355 while(ref($object) eq "CODE") {
2356 $object = $object->(@$inherited);
2357 }
2358 if (!defined($object)) {
2359 return ();
2360 }
2361 elsif (ref($object) eq "ARRAY") {
Richard Levitte9c62a272016-02-27 16:51:34 +01002362 local $add_called; # To make sure recursive calls don't affect it
Richard Levitteb0b92a52016-02-27 11:08:21 +01002363 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 Levittebd5192b2015-05-18 02:57:24 +02002373 foreach (sort keys %all_keys) {
Richard Levitte9c62a272016-02-27 16:51:34 +01002374 my $previous = $combined_inheritance{$_};
Richard Levittebd5192b2015-05-18 02:57:24 +02002375
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 Levitteb0b92a52016-02-27 11:08:21 +01002383 $table{$target}->{$_} = process_values($table{$target}->{$_},
2384 $combined_inheritance{$_},
2385 $target, $_);
2386 unless(defined($table{$target}->{$_})) {
2387 delete $table{$target}->{$_};
2388 }
Richard Levittec4718842016-03-09 17:18:07 +01002389# if ($extra_checks &&
2390# $previous && !($add_called || $previous ~~ $table{$target}->{$_})) {
2391# warn "$_ got replaced in $target\n";
2392# }
Richard Levittebd5192b2015-05-18 02:57:24 +02002393 }
2394
2395 # Finally done, return the result.
2396 return %{$table{$target}};
2397}
2398
Ulf Möller462ba4f1999-04-24 22:59:36 +00002399sub usage
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002400 {
Ulf Möller462ba4f1999-04-24 22:59:36 +00002401 print STDERR $usage;
Ulf Möller10a926c2000-02-21 00:55:45 +00002402 print STDERR "\npick os/compiler from:\n";
Ben Laurie1641cb61998-12-28 17:08:48 +00002403 my $j=0;
Ben Laurie6457ad11999-02-07 18:22:15 +00002404 my $i;
Ulf Möller10a926c2000-02-21 00:55:45 +00002405 my $k=0;
Ben Laurie6457ad11999-02-07 18:22:15 +00002406 foreach $i (sort keys %table)
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002407 {
Richard Levittebd5192b2015-05-18 02:57:24 +02002408 next if $table{$i}->{template};
Ulf Möller462ba4f1999-04-24 22:59:36 +00002409 next if $i =~ /^debug/;
Ulf Möller10a926c2000-02-21 00:55:45 +00002410 $k += length($i) + 1;
2411 if ($k > 78)
2412 {
2413 print STDERR "\n";
2414 $k=length($i);
2415 }
2416 print STDERR $i . " ";
Ulf Möller462ba4f1999-04-24 22:59:36 +00002417 }
2418 foreach $i (sort keys %table)
2419 {
Richard Levittebd5192b2015-05-18 02:57:24 +02002420 next if $table{$i}->{template};
Ulf Möller462ba4f1999-04-24 22:59:36 +00002421 next if $i !~ /^debug/;
Ulf Möller10a926c2000-02-21 00:55:45 +00002422 $k += length($i) + 1;
2423 if ($k > 78)
2424 {
2425 print STDERR "\n";
2426 $k=length($i);
2427 }
2428 print STDERR $i . " ";
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002429 }
Ulf Möller10a926c2000-02-21 00:55:45 +00002430 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
Ulf Möller462ba4f1999-04-24 22:59:36 +00002431 exit(1);
Ralf S. Engelschalld02b48c1998-12-21 10:52:47 +00002432 }
2433
Richard Levitte01d99972016-03-14 10:02:13 +01002434sub run_dofile
Richard Levitte107b5792015-05-20 20:03:20 +02002435{
Richard Levitte107b5792015-05-20 20:03:20 +02002436 my $out = shift;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002437 my @templates = @_;
Richard Levitte107b5792015-05-20 20:03:20 +02002438
Rich Salzced2c2c2016-01-29 13:29:45 -05002439 unlink $out || warn "Can't remove $out, $!"
2440 if -f $out;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002441 foreach (@templates) {
2442 die "Can't open $_, $!" unless -f $_;
2443 }
Richard Levittef879d5f2016-08-30 18:41:00 +02002444 my $perlcmd = (quotify("maybeshell", $config{perl}))[0];
2445 my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002446 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2447 system($cmd);
Richard Levitte107b5792015-05-20 20:03:20 +02002448 exit 1 if $? != 0;
2449 rename("$out.new", $out) || die "Can't rename $out.new, $!";
2450}
2451
Andy Polyakov656bbdc2016-05-20 21:31:11 +02002452sub 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 Levitte00ae96c2015-05-18 12:53:38 +02002473# Configuration printer ##############################################
2474
2475sub 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 Levittef0bd4682016-01-25 21:51:22 +01002485 "sys_id",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002486 "cc",
2487 "cflags",
Richard Levittebcb19772016-01-30 02:17:05 +01002488 "defines",
Richard Levittef0bd4682016-01-25 21:51:22 +01002489 "unistd",
2490 "ld",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002491 "lflags",
Richard Levitte0c0d78b2016-08-31 19:47:08 +02002492 "loutflag",
Richard Levittec86ddbe2016-02-05 11:47:14 +01002493 "plib_lflags",
Richard Levitte1740c162016-01-29 18:07:37 +01002494 "ex_libs",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002495 "bn_ops",
Richard Levitte0c0d78b2016-08-31 19:47:08 +02002496 "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 Levitte9c62a272016-02-27 16:51:34 +01002516 "thread_scheme",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002517 "perlasm_scheme",
2518 "dso_scheme",
2519 "shared_target",
2520 "shared_cflag",
Richard Levitte0c0d78b2016-08-31 19:47:08 +02002521 "shared_defines",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002522 "shared_ldflag",
Richard Levitte64c443e2016-02-05 15:17:33 +01002523 "shared_rcflag",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002524 "shared_extension",
Richard Levittee987f9f2016-02-15 17:20:15 +01002525 "dso_extension",
Richard Levittef0bd4682016-01-25 21:51:22 +01002526 "obj_extension",
2527 "exe_extension",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002528 "ranlib",
Richard Levittef0bd4682016-01-25 21:51:22 +01002529 "ar",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002530 "arflags",
Richard Levitte0c0d78b2016-08-31 19:47:08 +02002531 "aroutflag",
2532 "rc",
2533 "rcflags",
2534 "rcoutflag",
2535 "mt",
2536 "mtflags",
2537 "mtinflag",
2538 "mtoutflag",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002539 "multilib",
Richard Levittef0bd4682016-01-25 21:51:22 +01002540 "build_scheme",
Richard Levitte00ae96c2015-05-18 12:53:38 +02002541 );
2542
2543 if ($type eq "TABLE") {
2544 print "\n";
2545 print "*** $target\n";
Richard Levittecb212f22016-02-24 01:32:51 +01002546 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 Levitte00ae96c2015-05-18 12:53:38 +02002553 } 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 Levittecb212f22016-02-24 01:32:51 +01002559 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 Levitte00ae96c2015-05-18 12:53:38 +02002564 }
2565 }
2566 print " },\n";
2567 }
2568}
2569
2570# Utility routines ###################################################
2571
Richard Levitte2e963842016-02-10 02:00:37 +01002572# 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.
2575sub 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 Levitteec182ef2016-02-09 10:15:13 +01002589# 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.
2594sub 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 Levittefe052642015-05-18 03:33:55 +02002612sub quotify {
2613 my %processors = (
2614 perl => sub { my $x = shift;
2615 $x =~ s/([\\\$\@"])/\\$1/g;
2616 return '"'.$x.'"'; },
Richard Levittef879d5f2016-08-30 18:41:00 +02002617 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 Levittefe052642015-05-18 03:33:55 +02002625 );
2626 my $for = shift;
2627 my $processor =
2628 defined($processors{$for}) ? $processors{$for} : sub { shift; };
2629
Richard Levitte2110feb2016-04-06 15:02:57 +02002630 return map { $processor->($_); } @_;
Richard Levittefe052642015-05-18 03:33:55 +02002631}
Richard Levitte107b5792015-05-20 20:03:20 +02002632
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002633# 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
2637sub 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 Levitte04f171c2016-02-12 12:10:27 +01002647 s|\R$||;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002648 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
2668sub 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 Levitte04f171c2016-02-12 12:10:27 +01002678 s|\R$||;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002679 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 Levitte107b5792015-05-20 20:03:20 +02002696# 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.
2698sub collect_information {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002699 my $lineiterator = shift;
Richard Levitte107b5792015-05-20 20:03:20 +02002700 my %collectors = @_;
2701
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002702 while(defined($_ = $lineiterator->())) {
Richard Levitte04f171c2016-02-12 12:10:27 +01002703 s|\R$||;
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002704 my $found = 0;
Richard Levitte2b6b6062016-03-10 00:04:04 +01002705 if ($collectors{"BEFORE"}) {
2706 $collectors{"BEFORE"}->($_);
2707 }
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002708 foreach my $re (keys %collectors) {
Richard Levitte2b6b6062016-03-10 00:04:04 +01002709 if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
Richard Levitte9fe2bb72016-01-29 19:45:51 +01002710 $collectors{$re}->($lineiterator);
2711 $found = 1;
2712 };
2713 }
2714 if ($collectors{"OTHERWISE"}) {
2715 $collectors{"OTHERWISE"}->($lineiterator, $_)
2716 unless $found || !defined $collectors{"OTHERWISE"};
2717 }
Richard Levitte2b6b6062016-03-10 00:04:04 +01002718 if ($collectors{"AFTER"}) {
2719 $collectors{"AFTER"}->($_);
2720 }
Richard Levitte107b5792015-05-20 20:03:20 +02002721 }
Richard Levitte107b5792015-05-20 20:03:20 +02002722}
Richard Levittece959812016-05-24 17:39:52 +02002723
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.
2734sub 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}