mirror of
https://github.com/openssl/openssl.git
synced 2025-02-11 14:22:43 +08:00
The generation of linker scripts was badly balanced, as all sorts of platform dependent stuff went into the top build.info, when that part should really be made as simply and generic as possible. Therefore, we move a lot of the "magic" to the build files templates, since they are the place for platform dependent things. What remains is to parametrize just enough in the build.info file to generate the linker scripts correctly for each associated library. "linker script" is a term usually reserved for certain Unix linkers. However, we only use them to say what symbols should be exported, so we use the term loosely for all platforms. The internal extension is '.ld', and is changed by the build file templates as appropriate for each target platform. Note that this adds extra meaning to the value of the shared_target attribute. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7333)
65 lines
2.7 KiB
Plaintext
65 lines
2.7 KiB
Plaintext
{-
|
|
our $sover = $config{shlib_version_number};
|
|
our $sover_filename = $sover;
|
|
$sover_filename =~ s|\.|_|g
|
|
if $config{target} =~ /^mingw/ || $config{target} =~ /^VC-/;
|
|
$sover_filename =
|
|
sprintf "%02d%02d", split m|\.|, $config{shlib_version_number}
|
|
if $config{target} =~ /^vms/;
|
|
"";
|
|
-}
|
|
LIBS=libcrypto libssl
|
|
INCLUDE[libcrypto]=. crypto/include include
|
|
INCLUDE[libssl]=. include
|
|
DEPEND[libssl]=libcrypto
|
|
|
|
# Empty DEPEND "indices" means the dependencies are expected to be built
|
|
# unconditionally before anything else.
|
|
DEPEND[]=include/openssl/opensslconf.h crypto/include/internal/bn_conf.h \
|
|
crypto/include/internal/dso_conf.h
|
|
DEPEND[include/openssl/opensslconf.h]=configdata.pm
|
|
GENERATE[include/openssl/opensslconf.h]=include/openssl/opensslconf.h.in
|
|
DEPEND[crypto/include/internal/bn_conf.h]=configdata.pm
|
|
GENERATE[crypto/include/internal/bn_conf.h]=crypto/include/internal/bn_conf.h.in
|
|
DEPEND[crypto/include/internal/dso_conf.h]=configdata.pm
|
|
GENERATE[crypto/include/internal/dso_conf.h]=crypto/include/internal/dso_conf.h.in
|
|
|
|
IF[{- defined $target{shared_defflag} -}]
|
|
SHARED_SOURCE[libcrypto]=libcrypto.ld
|
|
SHARED_SOURCE[libssl]=libssl.ld
|
|
|
|
GENERATE[libcrypto.ld]=util/libcrypto.num crypto
|
|
GENERATE[libssl.ld]=util/libssl.num ssl
|
|
ENDIF
|
|
|
|
IF[{- $config{target} =~ /^(?:Cygwin|mingw|VC-)/ -}]
|
|
GENERATE[libcrypto.rc]=util/mkrc.pl libcrypto
|
|
GENERATE[libssl.rc]=util/mkrc.pl libssl
|
|
|
|
SHARED_SOURCE[libcrypto]=libcrypto.rc
|
|
SHARED_SOURCE[libssl]=libssl.rc
|
|
ENDIF
|
|
|
|
IF[{- $config{target} =~ /^Cygwin/ -}]
|
|
SHARED_NAME[libcrypto]=cygcrypto-{- $sover_filename -}
|
|
SHARED_NAME[libssl]=cygssl-{- $sover_filename -}
|
|
ELSIF[{- $config{target} =~ /^mingw/ -}]
|
|
SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
|
|
SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $config{target} eq "mingw64" ? "-x64" : "" -}
|
|
ELSIF[{- $config{target} =~ /^VC-/ -}]
|
|
SHARED_NAME[libcrypto]=libcrypto-{- $sover_filename -}{- $target{multilib} -}
|
|
SHARED_NAME[libssl]=libssl-{- $sover_filename -}{- $target{multilib} -}
|
|
ENDIF
|
|
|
|
# VMS has a cultural standard where all libraries are prefixed.
|
|
# For OpenSSL, the choice is 'ossl$' (this prefix was claimed in a
|
|
# conversation with VSI, Tuesday January 26 2016)
|
|
# Also, it seems it's usual to have the pointer size the libraries
|
|
# were built for as part of the name.
|
|
IF[{- $config{target} =~ /^vms/ -}]
|
|
RENAME[libcrypto]=ossl$libcrypto{- $target{pointer_size} -}
|
|
RENAME[libssl]=ossl$libssl{- $target{pointer_size} -}
|
|
SHARED_NAME[libcrypto]=ossl$libcrypto{- $sover_filename -}_shr{- $target{pointer_size} -}
|
|
SHARED_NAME[libssl]=ossl$libssl{- $sover_filename -}_shr{- $target{pointer_size} -}
|
|
ENDIF
|