2017-03-06 10:19:49 +00:00
|
|
|
Intro
|
|
|
|
=====
|
|
|
|
|
|
|
|
This directory contains a few sets of files that are used for
|
|
|
|
configuration in diverse ways:
|
|
|
|
|
|
|
|
*.conf Target platform configurations, please read
|
|
|
|
'Configurations of OpenSSL target platforms' for more
|
|
|
|
information.
|
|
|
|
*.tmpl Build file templates, please read 'Build-file
|
|
|
|
programming with the "unified" build system' as well
|
|
|
|
as 'Build info files' for more information.
|
|
|
|
*.pm Helper scripts / modules for the main `Configure`
|
|
|
|
script. See 'Configure helper scripts for more
|
|
|
|
information.
|
|
|
|
|
|
|
|
|
2015-05-18 00:54:28 +00:00
|
|
|
Configurations of OpenSSL target platforms
|
2016-01-29 23:57:33 +00:00
|
|
|
==========================================
|
2015-05-18 00:54:28 +00:00
|
|
|
|
2018-01-09 18:51:19 +00:00
|
|
|
Configuration targets are a collection of facts that we know about
|
2015-05-18 00:54:28 +00:00
|
|
|
different platforms and their capabilities. We organise them in a
|
|
|
|
hash table, where each entry represent a specific target.
|
|
|
|
|
2018-01-09 18:51:19 +00:00
|
|
|
Note that configuration target names must be unique across all config
|
|
|
|
files. The Configure script does check that a config file doesn't
|
|
|
|
have config targets that shadow config targets from other files.
|
|
|
|
|
2015-05-18 00:54:28 +00:00
|
|
|
In each table entry, the following keys are significant:
|
|
|
|
|
|
|
|
inherit_from => Other targets to inherit values from.
|
|
|
|
Explained further below. [1]
|
|
|
|
template => Set to 1 if this isn't really a platform
|
|
|
|
target. Instead, this target is a template
|
|
|
|
upon which other targets can be built.
|
|
|
|
Explained further below. [1]
|
|
|
|
|
|
|
|
sys_id => System identity for systems where that
|
|
|
|
is difficult to determine automatically.
|
|
|
|
|
2017-06-21 22:47:49 +00:00
|
|
|
enable => Enable specific configuration features.
|
|
|
|
This MUST be an array of words.
|
|
|
|
disable => Disable specific configuration features.
|
|
|
|
This MUST be an array of words.
|
|
|
|
Note: if the same feature is both enabled
|
|
|
|
and disabled, disable wins.
|
|
|
|
|
2018-03-07 23:17:29 +00:00
|
|
|
as => The assembler command. This is not always
|
|
|
|
used (for example on Unix, where the C
|
|
|
|
compiler is used instead).
|
|
|
|
asflags => Default assembler command flags [4].
|
2018-01-23 12:54:55 +00:00
|
|
|
cpp => The C preprocessor command, normally not
|
|
|
|
given, as the build file defaults are
|
|
|
|
usually good enough.
|
2018-03-07 23:17:29 +00:00
|
|
|
cppflags => Default C preprocessor flags [4].
|
2018-01-23 12:54:55 +00:00
|
|
|
defines => As an alternative, macro definitions may be
|
2018-03-07 23:17:29 +00:00
|
|
|
given here instead of in `cppflags' [4].
|
|
|
|
If given here, they MUST be as an array of
|
|
|
|
the string such as "MACRO=value", or just
|
2018-01-23 12:54:55 +00:00
|
|
|
"MACRO" for definitions without value.
|
|
|
|
includes => As an alternative, inclusion directories
|
2018-03-07 23:17:29 +00:00
|
|
|
may be given here instead of in `cppflags'
|
|
|
|
[4]. If given here, the MUST be an array
|
|
|
|
of strings, one directory specification
|
|
|
|
each.
|
2016-10-12 13:30:08 +00:00
|
|
|
cc => The C compiler command, usually one of "cc",
|
2015-05-18 00:54:28 +00:00
|
|
|
"gcc" or "clang". This command is normally
|
|
|
|
also used to link object files and
|
|
|
|
libraries into the final program.
|
2016-10-12 13:30:08 +00:00
|
|
|
cxx => The C++ compiler command, usually one of
|
|
|
|
"c++", "g++" or "clang++". This command is
|
|
|
|
also used when linking a program where at
|
|
|
|
least one of the object file is made from
|
|
|
|
C++ source.
|
2018-03-07 23:17:29 +00:00
|
|
|
cflags => Defaults C compiler flags [4].
|
|
|
|
cxxflags => Default C++ compiler flags [4]. If unset,
|
|
|
|
it gets the same value as cflags.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
(linking is a complex thing, see [3] below)
|
|
|
|
ld => Linker command, usually not defined
|
2015-05-18 00:54:28 +00:00
|
|
|
(meaning the compiler command is used
|
|
|
|
instead).
|
|
|
|
(NOTE: this is here for future use, it's
|
|
|
|
not implemented yet)
|
2018-03-07 23:17:29 +00:00
|
|
|
lflags => Default flags used when linking apps,
|
|
|
|
shared libraries or DSOs [4].
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
ex_libs => Extra libraries that are needed when
|
2018-03-07 23:17:29 +00:00
|
|
|
linking shared libraries, DSOs or programs.
|
2018-03-25 14:51:55 +00:00
|
|
|
The value is also assigned to Libs.private
|
|
|
|
in $(libdir)/pkgconfig/libcrypto.pc.
|
2018-03-07 23:17:29 +00:00
|
|
|
|
|
|
|
shared_cppflags => Extra C preprocessor flags used when
|
|
|
|
processing C files for shared libraries.
|
|
|
|
shared_cflag => Extra C compiler flags used when compiling
|
|
|
|
for shared libraries, typically something
|
|
|
|
like "-fPIC".
|
|
|
|
shared_ldflag => Extra linking flags used when linking
|
|
|
|
shared libraries.
|
|
|
|
module_cppflags
|
|
|
|
module_cflags
|
|
|
|
module_ldflags => Has the same function as the corresponding
|
|
|
|
`shared_' attributes, but for building DSOs.
|
|
|
|
When unset, they get the same values as the
|
|
|
|
corresponding `shared_' attributes.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
|
|
|
ar => The library archive command, the default is
|
|
|
|
"ar".
|
|
|
|
(NOTE: this is here for future use, it's
|
|
|
|
not implemented yet)
|
|
|
|
arflags => Flags to be used with the library archive
|
2018-02-15 21:38:24 +00:00
|
|
|
command. On Unix, this includes the
|
|
|
|
command letter, 'r' by default.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
|
|
|
ranlib => The library archive indexing command, the
|
|
|
|
default is 'ranlib' it it exists.
|
|
|
|
|
|
|
|
unistd => An alternative header to the typical
|
|
|
|
'<unistd.h>'. This is very rarely needed.
|
|
|
|
|
|
|
|
shared_extension => File name extension used for shared
|
|
|
|
libraries.
|
|
|
|
obj_extension => File name extension used for object files.
|
|
|
|
On unix, this defaults to ".o" (NOTE: this
|
|
|
|
is here for future use, it's not
|
|
|
|
implemented yet)
|
|
|
|
exe_extension => File name extension used for executable
|
|
|
|
files. On unix, this defaults to "" (NOTE:
|
|
|
|
this is here for future use, it's not
|
|
|
|
implemented yet)
|
2017-11-21 02:30:04 +00:00
|
|
|
shlib_variant => A "variant" identifier inserted between the base
|
|
|
|
shared library name and the extension. On "unixy"
|
|
|
|
platforms (BSD, Linux, Solaris, MacOS/X, ...) this
|
|
|
|
supports installation of custom OpenSSL libraries
|
|
|
|
that don't conflict with other builds of OpenSSL
|
|
|
|
installed on the system. The variant identifier
|
|
|
|
becomes part of the SONAME of the library and also
|
|
|
|
any symbol versions (symbol versions are not used or
|
|
|
|
needed with MacOS/X). For example, on a system
|
|
|
|
where a default build would normally create the SSL
|
|
|
|
shared library as 'libssl.so -> libssl.so.1.1' with
|
|
|
|
the value of the symlink as the SONAME, a target
|
|
|
|
definition that sets 'shlib_variant => "-abc"' will
|
|
|
|
create 'libssl.so -> libssl-abc.so.1.1', again with
|
|
|
|
an SONAME equal to the value of the symlink. The
|
|
|
|
symbol versions associated with the variant library
|
|
|
|
would then be 'OPENSSL_ABC_<version>' rather than
|
|
|
|
the default 'OPENSSL_<version>'. The string inserted
|
|
|
|
into symbol versions is obtained by mapping all
|
|
|
|
letters in the "variant" identifier to upper case
|
|
|
|
and all non-alphanumeric characters to '_'.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
2016-02-27 16:14:44 +00:00
|
|
|
thread_scheme => The type of threads is used on the
|
|
|
|
configured platform. Currently known
|
|
|
|
values are "(unknown)", "pthreads",
|
|
|
|
"uithreads" (a.k.a solaris threads) and
|
|
|
|
"winthreads". Except for "(unknown)", the
|
|
|
|
actual value is currently ignored but may
|
|
|
|
be used in the future. See further notes
|
|
|
|
below [2].
|
2015-05-18 00:54:28 +00:00
|
|
|
dso_scheme => The type of dynamic shared objects to build
|
|
|
|
for. This mostly comes into play with
|
|
|
|
engines, but can be used for other purposes
|
|
|
|
as well. Valid values are "DLFCN"
|
|
|
|
(dlopen() et al), "DLFCN_NO_H" (for systems
|
|
|
|
that use dlopen() et al but do not have
|
|
|
|
fcntl.h), "DL" (shl_load() et al), "WIN32"
|
|
|
|
and "VMS".
|
2018-04-11 16:57:31 +00:00
|
|
|
perlasm_scheme => The perlasm method used to create the
|
2015-05-18 00:54:28 +00:00
|
|
|
assembler files used when compiling with
|
|
|
|
assembler implementations.
|
|
|
|
shared_target => The shared library building method used.
|
2018-09-30 12:44:59 +00:00
|
|
|
This serves multiple purposes:
|
|
|
|
- as index for targets found in shared_info.pl.
|
|
|
|
- as linker script generation selector.
|
|
|
|
To serve both purposes, the index for shared_info.pl
|
|
|
|
should end with '-shared', and this suffix will be
|
|
|
|
removed for use as a linker script generation
|
|
|
|
selector. Note that the latter is only used if
|
|
|
|
'shared_defflag' is defined.
|
2015-05-18 00:54:28 +00:00
|
|
|
build_scheme => The scheme used to build up a Makefile.
|
Refactor config - @MK1MF_Builds out, general build scheme in
Time to get rid of @MK1MF_Builds and introduce a more flexible
'build_scheme' configuration key. Its value may be a string or an
array of strings, meaning we need to teach resolve_config how to
handle ARRAY referenses.
The build scheme is a word that selects a function to create the
appropriate result files for a certain configuration. Currently valid
build schemes aer "mk1mf" and "unixmake", the plan is however to add
at least one other for a more universal build scheme.
Incidently, this also adds the functions 'add' and 'add_before', which
can be used in a configuration, so instead of having to repeatedly
write a sub like this:
key1 => sub { join(" ", @_, "myvalues"); },
key2 => sub { join(" ", "myvalues", @_); },
one could write this:
key1 => add(" ", "myvalues"),
key2 => add_before(" ", "myvalues"),
The good point with 'add' and 'add_before' is that they handle
inheritances where the values are a misture of scalars and ARRAYs. If
there are any ARRAY to be found, the resulting value will be an ARRAY,
otherwise it will be a scalar with all the incoming valued joined
together with the separator given as first argument to add/add_before.
Reviewed-by: Rich Salz <rsalz@openssl.org>
2015-05-18 12:31:49 +00:00
|
|
|
In its simplest form, the value is a string
|
|
|
|
with the name of the build scheme.
|
|
|
|
The value may also take the form of a list
|
|
|
|
of strings, if the build_scheme is to have
|
|
|
|
some options. In this case, the first
|
|
|
|
string in the list is the name of the build
|
|
|
|
scheme.
|
2016-04-02 16:36:52 +00:00
|
|
|
Currently recognised build scheme is "unified".
|
2016-01-29 18:45:51 +00:00
|
|
|
For the "unified" build scheme, this item
|
|
|
|
*must* be an array with the first being the
|
|
|
|
word "unified" and the second being a word
|
|
|
|
to identify the platform family.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
|
|
|
multilib => On systems that support having multiple
|
|
|
|
implementations of a library (typically a
|
|
|
|
32-bit and a 64-bit variant), this is used
|
|
|
|
to have the different variants in different
|
|
|
|
directories.
|
|
|
|
|
2017-04-03 21:41:19 +00:00
|
|
|
bn_ops => Building options (was just bignum options in
|
|
|
|
the earlier history of this option, hence the
|
|
|
|
name). This is a string of words that describe
|
|
|
|
algorithms' implementation parameters that
|
|
|
|
are optimal for the designated target platform,
|
|
|
|
such as the type of integers used to build up
|
|
|
|
the bignum, different ways to implement certain
|
|
|
|
ciphers and so on. To fully comprehend the
|
2015-05-18 00:54:28 +00:00
|
|
|
meaning, the best is to read the affected
|
|
|
|
source.
|
|
|
|
The valid words are:
|
|
|
|
|
2017-04-03 21:41:19 +00:00
|
|
|
THIRTY_TWO_BIT bignum limbs are 32 bits,
|
|
|
|
this is default if no
|
|
|
|
option is specified, it
|
|
|
|
works on any supported
|
|
|
|
system [unless "wider"
|
|
|
|
limb size is implied in
|
|
|
|
assembly code];
|
|
|
|
BN_LLONG bignum limbs are 32 bits,
|
|
|
|
but 64-bit 'unsigned long
|
|
|
|
long' is used internally
|
|
|
|
in calculations;
|
|
|
|
SIXTY_FOUR_BIT_LONG bignum limbs are 64 bits
|
|
|
|
and sizeof(long) is 8;
|
|
|
|
SIXTY_FOUR_BIT bignums limbs are 64 bits,
|
|
|
|
but execution environment
|
|
|
|
is ILP32;
|
|
|
|
RC4_CHAR RC4 key schedule is made
|
|
|
|
up of 'unsigned char's;
|
|
|
|
RC4_INT RC4 key schedule is made
|
|
|
|
up of 'unsigned int's;
|
2015-05-18 00:54:28 +00:00
|
|
|
EXPORT_VAR_AS_FN for shared libraries,
|
|
|
|
export vars as
|
|
|
|
accessor functions.
|
|
|
|
|
2018-01-31 13:15:52 +00:00
|
|
|
apps_aux_src => Extra source to build apps/openssl and other
|
|
|
|
apps, as needed by the target and that can be
|
|
|
|
collected in a library.
|
|
|
|
apps_init_src => Init source to build apps/openssl and other
|
|
|
|
apps, as needed by the target. This code
|
|
|
|
cannot be placed in a library, as the rest
|
|
|
|
of the code isn't expected to link to it
|
2018-09-20 10:23:27 +00:00
|
|
|
explicitly.
|
2016-01-29 18:45:51 +00:00
|
|
|
cpuid_asm_src => assembler implementation of cpuid code as
|
2015-05-18 00:54:28 +00:00
|
|
|
well as OPENSSL_cleanse().
|
2016-01-29 18:45:51 +00:00
|
|
|
Default to mem_clr.c
|
|
|
|
bn_asm_src => Assembler implementation of core bignum
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to bn_asm.c
|
|
|
|
ec_asm_src => Assembler implementation of core EC
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
des_asm_src => Assembler implementation of core DES
|
2015-05-18 00:54:28 +00:00
|
|
|
encryption functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'des_enc.c fcrypt_b.c'
|
|
|
|
aes_asm_src => Assembler implementation of core AES
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'aes_core.c aes_cbc.c'
|
|
|
|
bf_asm_src => Assembler implementation of core BlowFish
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'bf_enc.c'
|
|
|
|
md5_asm_src => Assembler implementation of core MD5
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
sha1_asm_src => Assembler implementation of core SHA1,
|
2015-05-18 00:54:28 +00:00
|
|
|
functions, and also possibly SHA256 and
|
|
|
|
SHA512 ones.
|
2016-01-29 18:45:51 +00:00
|
|
|
cast_asm_src => Assembler implementation of core CAST
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'c_enc.c'
|
|
|
|
rc4_asm_src => Assembler implementation of core RC4
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'rc4_enc.c rc4_skey.c'
|
|
|
|
rmd160_asm_src => Assembler implementation of core RMD160
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
rc5_asm_src => Assembler implementation of core RC5
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'rc5_enc.c'
|
|
|
|
wp_asm_src => Assembler implementation of core WHIRLPOOL
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
cmll_asm_src => Assembler implementation of core CAMELLIA
|
2015-05-18 00:54:28 +00:00
|
|
|
functions.
|
2016-01-29 18:45:51 +00:00
|
|
|
Defaults to 'camellia.c cmll_misc.c cmll_cbc.c'
|
|
|
|
modes_asm_src => Assembler implementation of cipher modes,
|
|
|
|
currently the functions gcm_gmult_4bit and
|
|
|
|
gcm_ghash_4bit.
|
|
|
|
padlock_asm_src => Assembler implementation of core parts of
|
2015-05-18 00:54:28 +00:00
|
|
|
the padlock engine. This is mandatory on
|
|
|
|
any platform where the padlock engine might
|
|
|
|
actually be built.
|
|
|
|
|
|
|
|
|
|
|
|
[1] as part of the target configuration, one can have a key called
|
|
|
|
'inherit_from' that indicate what other configurations to inherit
|
|
|
|
data from. These are resolved recursively.
|
|
|
|
|
2016-02-26 19:30:15 +00:00
|
|
|
Inheritance works as a set of default values that can be overridden
|
2015-05-18 00:54:28 +00:00
|
|
|
by corresponding key values in the inheriting configuration.
|
|
|
|
|
|
|
|
Note 1: any configuration table can be used as a template.
|
|
|
|
Note 2: pure templates have the attribute 'template => 1' and
|
|
|
|
cannot be used as build targets.
|
|
|
|
|
|
|
|
If several configurations are given in the 'inherit_from' array,
|
|
|
|
the values of same attribute are concatenated with space
|
|
|
|
separation. With this, it's possible to have several smaller
|
|
|
|
templates for different configuration aspects that can be combined
|
|
|
|
into a complete configuration.
|
|
|
|
|
|
|
|
instead of a scalar value or an array, a value can be a code block
|
|
|
|
of the form 'sub { /* your code here */ }'. This code block will
|
|
|
|
be called with the list of inherited values for that key as
|
|
|
|
arguments. In fact, the concatenation of strings is really done
|
|
|
|
by using 'sub { join(" ",@_) }' on the list of inherited values.
|
|
|
|
|
|
|
|
An example:
|
|
|
|
|
|
|
|
"foo" => {
|
|
|
|
template => 1,
|
|
|
|
haha => "ha ha",
|
|
|
|
hoho => "ho",
|
|
|
|
ignored => "This should not appear in the end result",
|
|
|
|
},
|
|
|
|
"bar" => {
|
|
|
|
template => 1,
|
|
|
|
haha => "ah",
|
|
|
|
hoho => "haho",
|
|
|
|
hehe => "hehe"
|
|
|
|
},
|
|
|
|
"laughter" => {
|
|
|
|
inherit_from => [ "foo", "bar" ],
|
|
|
|
hehe => sub { join(" ",(@_,"!!!")) },
|
|
|
|
ignored => "",
|
|
|
|
}
|
|
|
|
|
|
|
|
The entry for "laughter" will become as follows after processing:
|
|
|
|
|
|
|
|
"laughter" => {
|
|
|
|
haha => "ha ha ah",
|
|
|
|
hoho => "ho haho",
|
|
|
|
hehe => "hehe !!!",
|
|
|
|
ignored => ""
|
|
|
|
}
|
|
|
|
|
|
|
|
[2] OpenSSL is built with threading capabilities unless the user
|
2016-02-27 16:14:44 +00:00
|
|
|
specifies 'no-threads'. The value of the key 'thread_scheme' may
|
2015-05-18 00:54:28 +00:00
|
|
|
be "(unknown)", in which case the user MUST give some compilation
|
|
|
|
flags to Configure.
|
|
|
|
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
[3] OpenSSL has three types of things to link from object files or
|
|
|
|
static libraries:
|
|
|
|
|
|
|
|
- shared libraries; that would be libcrypto and libssl.
|
|
|
|
- shared objects (sometimes called dynamic libraries); that would
|
|
|
|
be the engines.
|
|
|
|
- applications; those are apps/openssl and all the test apps.
|
|
|
|
|
|
|
|
Very roughly speaking, linking is done like this (words in braces
|
|
|
|
represent the configuration settings documented at the beginning
|
|
|
|
of this file):
|
|
|
|
|
|
|
|
shared libraries:
|
2018-03-07 23:17:29 +00:00
|
|
|
{ld} $(CFLAGS) {lflags} {shared_ldflag} -o libfoo.so \
|
|
|
|
foo/something.o foo/somethingelse.o {ex_libs}
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
|
|
|
|
shared objects:
|
2018-03-07 23:17:29 +00:00
|
|
|
{ld} $(CFLAGS) {lflags} {module_ldflags} -o libeng.so \
|
2018-03-07 23:16:47 +00:00
|
|
|
blah1.o blah2.o -lcrypto {ex_libs}
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
|
|
|
|
applications:
|
|
|
|
{ld} $(CFLAGS) {lflags} -o app \
|
2018-03-07 23:16:47 +00:00
|
|
|
app1.o utils.o -lssl -lcrypto {ex_libs}
|
Enhance and clear the support of linker flags
Some time ago, we had a ex_libs configuration setting that could be
divided into lflags and ex_libs. These got divided in two settings,
lflags and ex_libs, and the former was interpreted to be general
linking flags.
Unfortunately, that conclusion wasn't entirely accurate. Most of
those linking were meant to end up in a very precise position on the
linking command line, just before the spec of libraries the linking
depends on.
Back to the drawing board, we're diving things further, now having
lflags, which are linking flags that aren't depending on command line
position, plib_lflags, which are linking flags that should show up just
before the spec of libraries to depend on, and finally ex_libs, which
is the spec of extra libraries to depend on.
Also, documentation is changed in Configurations/README. This was
previously forgotten.
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
2016-02-05 10:47:14 +00:00
|
|
|
|
2018-03-07 23:17:29 +00:00
|
|
|
[4] There are variants of these attribute, prefixed with `lib_',
|
|
|
|
`dso_' or `bin_'. Those variants replace the unprefixed attribute
|
|
|
|
when building library, DSO or program modules specifically.
|
2015-05-18 00:54:28 +00:00
|
|
|
|
|
|
|
Historically, the target configurations came in form of a string with
|
2016-01-23 10:43:35 +00:00
|
|
|
values separated by colons. This use is deprecated. The string form
|
|
|
|
looked like this:
|
2015-05-18 00:54:28 +00:00
|
|
|
|
2016-01-25 20:51:22 +00:00
|
|
|
"target" => "{cc}:{cflags}:{unistd}:{thread_cflag}:{sys_id}:{lflags}:{bn_ops}:{cpuid_obj}:{bn_obj}:{ec_obj}:{des_obj}:{aes_obj}:{bf_obj}:{md5_obj}:{sha1_obj}:{cast_obj}:{rc4_obj}:{rmd160_obj}:{rc5_obj}:{wp_obj}:{cmll_obj}:{modes_obj}:{padlock_obj}:{perlasm_scheme}:{dso_scheme}:{shared_target}:{shared_cflag}:{shared_ldflag}:{shared_extension}:{ranlib}:{arflags}:{multilib}"
|
2016-01-29 18:45:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
Build info files
|
|
|
|
================
|
|
|
|
|
|
|
|
The build.info files that are spread over the source tree contain the
|
|
|
|
minimum information needed to build and distribute OpenSSL. It uses a
|
|
|
|
simple and yet fairly powerful language to determine what needs to be
|
|
|
|
built, from what sources, and other relationships between files.
|
|
|
|
|
|
|
|
For every build.info file, all file references are relative to the
|
|
|
|
directory of the build.info file for source files, and the
|
|
|
|
corresponding build directory for built files if the build tree
|
|
|
|
differs from the source tree.
|
|
|
|
|
|
|
|
When processed, every line is processed with the perl module
|
|
|
|
Text::Template, using the delimiters "{-" and "-}". The hashes
|
|
|
|
%config and %target are passed to the perl fragments, along with
|
|
|
|
$sourcedir and $builddir, which are the locations of the source
|
|
|
|
directory for the current build.info file and the corresponding build
|
|
|
|
directory, all relative to the top of the build tree.
|
|
|
|
|
2018-11-03 14:03:59 +00:00
|
|
|
'Configure' only knows inherently about the top build.info file. For
|
|
|
|
any other directory that has one, further directories to look into
|
|
|
|
must be indicated like this:
|
|
|
|
|
|
|
|
SUBDIRS=something someelse
|
|
|
|
|
|
|
|
On to things to be built; they are declared by setting specific
|
2016-01-29 18:45:51 +00:00
|
|
|
variables:
|
|
|
|
|
|
|
|
PROGRAMS=foo bar
|
|
|
|
LIBS=libsomething
|
|
|
|
ENGINES=libeng
|
|
|
|
SCRIPTS=myhack
|
|
|
|
|
|
|
|
Note that the files mentioned for PROGRAMS, LIBS and ENGINES *must* be
|
|
|
|
without extensions. The build file templates will figure them out.
|
|
|
|
|
|
|
|
For each thing to be built, it is then possible to say what sources
|
|
|
|
they are built from:
|
|
|
|
|
|
|
|
PROGRAMS=foo bar
|
|
|
|
SOURCE[foo]=foo.c common.c
|
|
|
|
SOURCE[bar]=bar.c extra.c common.c
|
|
|
|
|
|
|
|
It's also possible to tell some other dependencies:
|
|
|
|
|
|
|
|
DEPEND[foo]=libsomething
|
|
|
|
DEPEND[libbar]=libsomethingelse
|
|
|
|
|
|
|
|
(it could be argued that 'libsomething' and 'libsomethingelse' are
|
|
|
|
source as well. However, the files given through SOURCE are expected
|
|
|
|
to be located in the source tree while files given through DEPEND are
|
|
|
|
expected to be located in the build tree)
|
|
|
|
|
2017-11-12 00:03:10 +00:00
|
|
|
It's also possible to depend on static libraries explicitly:
|
2016-11-10 00:00:17 +00:00
|
|
|
|
|
|
|
DEPEND[foo]=libsomething.a
|
|
|
|
DEPEND[libbar]=libsomethingelse.a
|
|
|
|
|
|
|
|
This should be rarely used, and care should be taken to make sure it's
|
|
|
|
only used when supported. For example, native Windows build doesn't
|
2018-04-11 16:57:31 +00:00
|
|
|
support building static libraries and DLLs at the same time, so using
|
2016-11-10 00:00:17 +00:00
|
|
|
static libraries on Windows can only be done when configured
|
|
|
|
'no-shared'.
|
|
|
|
|
2016-03-29 14:45:03 +00:00
|
|
|
In some cases, it's desirable to include some source files in the
|
|
|
|
shared form of a library only:
|
|
|
|
|
|
|
|
SHARED_SOURCE[libfoo]=dllmain.c
|
|
|
|
|
2016-01-29 18:45:51 +00:00
|
|
|
For any file to be built, it's also possible to tell what extra
|
|
|
|
include paths the build of their source files should use:
|
|
|
|
|
|
|
|
INCLUDE[foo]=include
|
|
|
|
|
2016-10-14 14:56:34 +00:00
|
|
|
It's also possible to specify C macros that should be defined:
|
|
|
|
|
|
|
|
DEFINE[foo]=FOO BAR=1
|
|
|
|
|
2016-03-07 13:37:00 +00:00
|
|
|
In some cases, one might want to generate some source files from
|
|
|
|
others, that's done as follows:
|
|
|
|
|
|
|
|
GENERATE[foo.s]=asm/something.pl $(CFLAGS)
|
|
|
|
GENERATE[bar.s]=asm/bar.S
|
|
|
|
|
|
|
|
The value of each GENERATE line is a command line or part of it.
|
2017-12-29 06:07:15 +00:00
|
|
|
Configure places no rules on the command line, except that the first
|
|
|
|
item must be the generator file. It is, however, entirely up to the
|
2016-03-07 13:37:00 +00:00
|
|
|
build file template to define exactly how those command lines should
|
|
|
|
be handled, how the output is captured and so on.
|
|
|
|
|
2016-04-21 19:08:42 +00:00
|
|
|
Sometimes, the generator file itself depends on other files, for
|
|
|
|
example if it is a perl script that depends on other perl modules.
|
|
|
|
This can be expressed using DEPEND like this:
|
|
|
|
|
|
|
|
DEPEND[asm/something.pl]=../perlasm/Foo.pm
|
|
|
|
|
|
|
|
There may also be cases where the exact file isn't easily specified,
|
|
|
|
but an inclusion directory still needs to be specified. INCLUDE can
|
|
|
|
be used in that case:
|
|
|
|
|
|
|
|
INCLUDE[asm/something.pl]=../perlasm
|
|
|
|
|
2016-03-07 13:37:00 +00:00
|
|
|
NOTE: GENERATE lines are limited to one command only per GENERATE.
|
|
|
|
|
2016-01-29 18:45:51 +00:00
|
|
|
Finally, you can have some simple conditional use of the build.info
|
|
|
|
information, looking like this:
|
|
|
|
|
|
|
|
IF[1]
|
|
|
|
something
|
|
|
|
ELSIF[2]
|
|
|
|
something other
|
|
|
|
ELSE
|
|
|
|
something else
|
|
|
|
ENDIF
|
|
|
|
|
|
|
|
The expression in square brackets is interpreted as a string in perl,
|
|
|
|
and will be seen as true if perl thinks it is, otherwise false. For
|
|
|
|
example, the above would have "something" used, since 1 is true.
|
|
|
|
|
|
|
|
Together with the use of Text::Template, this can be used as
|
|
|
|
conditions based on something in the passed variables, for example:
|
|
|
|
|
2016-02-22 12:52:46 +00:00
|
|
|
IF[{- $disabled{shared} -}]
|
2016-01-29 18:45:51 +00:00
|
|
|
LIBS=libcrypto
|
|
|
|
SOURCE[libcrypto]=...
|
|
|
|
ELSE
|
|
|
|
LIBS=libfoo
|
|
|
|
SOURCE[libfoo]=...
|
|
|
|
ENDIF
|
|
|
|
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
Build-file programming with the "unified" build system
|
|
|
|
======================================================
|
|
|
|
|
|
|
|
"Build files" are called "Makefile" on Unix-like operating systems,
|
|
|
|
"descrip.mms" for MMS on VMS, "makefile" for nmake on Windows, etc.
|
|
|
|
|
|
|
|
To use the "unified" build system, the target configuration needs to
|
|
|
|
set the three items 'build_scheme', 'build_file' and 'build_command'.
|
|
|
|
In the rest of this section, we will assume that 'build_scheme' is set
|
|
|
|
to "unified" (see the configurations documentation above for the
|
|
|
|
details).
|
|
|
|
|
|
|
|
For any name given by 'build_file', the "unified" system expects a
|
|
|
|
template file in Configurations/ named like the build file, with
|
|
|
|
".tmpl" appended, or in case of possible ambiguity, a combination of
|
|
|
|
the second 'build_scheme' list item and the 'build_file' name. For
|
|
|
|
example, if 'build_file' is set to "Makefile", the template could be
|
|
|
|
Configurations/Makefile.tmpl or Configurations/unix-Makefile.tmpl.
|
|
|
|
In case both Configurations/unix-Makefile.tmpl and
|
|
|
|
Configurations/Makefile.tmpl are present, the former takes
|
|
|
|
precedence.
|
|
|
|
|
|
|
|
The build-file template is processed with the perl module
|
|
|
|
Text::Template, using "{-" and "-}" as delimiters that enclose the
|
|
|
|
perl code fragments that generate configuration-dependent content.
|
|
|
|
Those perl fragments have access to all the hash variables from
|
|
|
|
configdata.pem.
|
|
|
|
|
|
|
|
The build-file template is expected to define at least the following
|
|
|
|
perl functions in a perl code fragment enclosed with "{-" and "-}".
|
|
|
|
They are all expected to return a string with the lines they produce.
|
|
|
|
|
2016-03-07 13:37:00 +00:00
|
|
|
generatesrc - function that produces build file lines to generate
|
|
|
|
a source file from some input.
|
|
|
|
|
|
|
|
It's called like this:
|
|
|
|
|
|
|
|
generatesrc(src => "PATH/TO/tobegenerated",
|
|
|
|
generator => [ "generatingfile", ... ]
|
2016-04-21 19:08:42 +00:00
|
|
|
generator_incs => [ "INCL/PATH", ... ]
|
|
|
|
generator_deps => [ "dep1", ... ]
|
2016-04-21 19:36:48 +00:00
|
|
|
generator => [ "generatingfile", ... ]
|
|
|
|
incs => [ "INCL/PATH", ... ],
|
2016-03-07 13:37:00 +00:00
|
|
|
deps => [ "dep1", ... ],
|
|
|
|
intent => one of "libs", "dso", "bin" );
|
|
|
|
|
|
|
|
'src' has the name of the file to be generated.
|
|
|
|
'generator' is the command or part of command to
|
|
|
|
generate the file, of which the first item is
|
|
|
|
expected to be the file to generate from.
|
|
|
|
generatesrc() is expected to analyse and figure out
|
|
|
|
exactly how to apply that file and how to capture
|
2016-04-21 19:08:42 +00:00
|
|
|
the result. 'generator_incs' and 'generator_deps'
|
|
|
|
are include directories and files that the generator
|
|
|
|
file itself depends on. 'incs' and 'deps' are
|
|
|
|
include directories and files that are used if $(CC)
|
|
|
|
is used as an intermediary step when generating the
|
|
|
|
end product (the file indicated by 'src'). 'intent'
|
|
|
|
indicates what the generated file is going to be
|
|
|
|
used for.
|
2016-03-07 13:37:00 +00:00
|
|
|
|
2016-01-29 23:57:33 +00:00
|
|
|
src2obj - function that produces build file lines to build an
|
|
|
|
object file from source files and associated data.
|
|
|
|
|
|
|
|
It's called like this:
|
|
|
|
|
|
|
|
src2obj(obj => "PATH/TO/objectfile",
|
|
|
|
srcs => [ "PATH/TO/sourcefile", ... ],
|
|
|
|
deps => [ "dep1", ... ],
|
2016-02-19 21:02:41 +00:00
|
|
|
incs => [ "INCL/PATH", ... ]
|
|
|
|
intent => one of "lib", "dso", "bin" );
|
2016-01-29 23:57:33 +00:00
|
|
|
|
2018-09-12 11:32:14 +00:00
|
|
|
'obj' has the intended object file with '.o'
|
|
|
|
extension, src2obj() is expected to change it to
|
|
|
|
something more suitable for the platform.
|
2016-01-29 23:57:33 +00:00
|
|
|
'srcs' has the list of source files to build the
|
|
|
|
object file, with the first item being the source
|
|
|
|
file that directly corresponds to the object file.
|
2016-02-12 13:05:06 +00:00
|
|
|
'deps' is a list of explicit dependencies. 'incs'
|
2016-02-19 21:02:41 +00:00
|
|
|
is a list of include file directories. Finally,
|
|
|
|
'intent' indicates what this object file is going
|
|
|
|
to be used for.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
obj2lib - function that produces build file lines to build a
|
|
|
|
static library file ("libfoo.a" in Unix terms) from
|
|
|
|
object files.
|
|
|
|
|
|
|
|
called like this:
|
|
|
|
|
|
|
|
obj2lib(lib => "PATH/TO/libfile",
|
|
|
|
objs => [ "PATH/TO/objectfile", ... ]);
|
|
|
|
|
|
|
|
'lib' has the intended library file name *without*
|
|
|
|
extension, obj2lib is expected to add that. 'objs'
|
2018-09-12 11:32:14 +00:00
|
|
|
has the list of object files to build this library.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
2018-09-12 11:32:14 +00:00
|
|
|
libobj2shlib - backward compatibility function that's used the
|
|
|
|
same way as obj2shlib (described next), and was
|
|
|
|
expected to build the shared library from the
|
|
|
|
corresponding static library when that was suitable.
|
|
|
|
NOTE: building a shared library from a static
|
|
|
|
library is now DEPRECATED, as they no longer share
|
|
|
|
object files. Attempting to do this will fail.
|
|
|
|
|
|
|
|
obj2shlib - function that produces build file lines to build a
|
2016-01-29 23:57:33 +00:00
|
|
|
shareable object library file ("libfoo.so" in Unix
|
2018-09-12 11:32:14 +00:00
|
|
|
terms) from the corresponding object files.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
called like this:
|
|
|
|
|
2018-09-12 11:32:14 +00:00
|
|
|
obj2shlib(shlib => "PATH/TO/shlibfile",
|
|
|
|
lib => "PATH/TO/libfile",
|
|
|
|
objs => [ "PATH/TO/objectfile", ... ],
|
|
|
|
deps => [ "PATH/TO/otherlibfile", ... ]);
|
2016-01-29 23:57:33 +00:00
|
|
|
|
2018-09-12 11:32:14 +00:00
|
|
|
'lib' has the base (static) library ffile name
|
|
|
|
*without* extension. This is useful in case
|
|
|
|
supporting files are needed (such as import
|
|
|
|
libraries on Windows).
|
2016-02-26 19:30:15 +00:00
|
|
|
'shlib' has the corresponding shared library name
|
2016-01-29 23:57:33 +00:00
|
|
|
*without* extension. 'deps' has the list of other
|
|
|
|
libraries (also *without* extension) this library
|
|
|
|
needs to be linked with. 'objs' has the list of
|
2018-09-12 11:32:14 +00:00
|
|
|
object files to build this library.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
2016-02-15 17:45:54 +00:00
|
|
|
obj2dso - function that produces build file lines to build a
|
|
|
|
dynamic shared object file from object files.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
called like this:
|
|
|
|
|
2016-02-15 17:45:54 +00:00
|
|
|
obj2dso(lib => "PATH/TO/libfile",
|
|
|
|
objs => [ "PATH/TO/objectfile", ... ],
|
|
|
|
deps => [ "PATH/TO/otherlibfile",
|
|
|
|
... ]);
|
2016-01-29 23:57:33 +00:00
|
|
|
|
2018-09-12 11:32:14 +00:00
|
|
|
This is almost the same as obj2shlib, but the
|
2016-01-29 23:57:33 +00:00
|
|
|
intent is to build a shareable library that can be
|
2018-09-12 11:32:14 +00:00
|
|
|
loaded in runtime (a "plugin"...).
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
obj2bin - function that produces build file lines to build an
|
|
|
|
executable file from object files.
|
|
|
|
|
|
|
|
called like this:
|
|
|
|
|
|
|
|
obj2bin(bin => "PATH/TO/binfile",
|
|
|
|
objs => [ "PATH/TO/objectfile", ... ],
|
|
|
|
deps => [ "PATH/TO/libfile", ... ]);
|
|
|
|
|
|
|
|
'bin' has the intended executable file name
|
|
|
|
*without* extension, obj2bin is expected to add
|
2018-09-12 11:32:14 +00:00
|
|
|
that. 'objs' has the list of object files to build
|
|
|
|
this library. 'deps' has the list of library files
|
|
|
|
(also *without* extension) that the programs needs
|
|
|
|
to be linked with.
|
2016-01-29 23:57:33 +00:00
|
|
|
|
|
|
|
in2script - function that produces build file lines to build a
|
|
|
|
script file from some input.
|
|
|
|
|
|
|
|
called like this:
|
|
|
|
|
|
|
|
in2script(script => "PATH/TO/scriptfile",
|
|
|
|
sources => [ "PATH/TO/infile", ... ]);
|
|
|
|
|
|
|
|
'script' has the intended script file name.
|
|
|
|
'sources' has the list of source files to build the
|
|
|
|
resulting script from.
|
|
|
|
|
|
|
|
In all cases, file file paths are relative to the build tree top, and
|
|
|
|
the build file actions run with the build tree top as current working
|
|
|
|
directory.
|
|
|
|
|
|
|
|
Make sure to end the section with these functions with a string that
|
2016-02-26 19:30:15 +00:00
|
|
|
you thing is appropriate for the resulting build file. If nothing
|
2016-01-29 23:57:33 +00:00
|
|
|
else, end it like this:
|
|
|
|
|
|
|
|
""; # Make sure no lingering values end up in the Makefile
|
|
|
|
-}
|
2017-03-06 10:19:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
Configure helper scripts
|
|
|
|
========================
|
|
|
|
|
|
|
|
Configure uses helper scripts in this directory:
|
|
|
|
|
|
|
|
Checker scripts
|
|
|
|
---------------
|
|
|
|
|
|
|
|
These scripts are per platform family, to check the integrity of the
|
|
|
|
tools used for configuration and building. The checker script used is
|
|
|
|
either {build_platform}-{build_file}-checker.pm or
|
|
|
|
{build_platform}-checker.pm, where {build_platform} is the second
|
|
|
|
'build_scheme' list element from the configuration target data, and
|
|
|
|
{build_file} is 'build_file' from the same target data.
|
|
|
|
|
|
|
|
If the check succeeds, the script is expected to end with a non-zero
|
|
|
|
expression. If the check fails, the script can end with a zero, or
|
|
|
|
with a `die`.
|