From: Matthias Kraft Date: Tue, 19 Feb 2019 12:22:35 +0000 (+0100) Subject: Fix reference to symbol 'main'. X-Git-Tag: OpenSSL_1_1_1b~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=663dc8c133e102950af9ad907fc19e123aabdc76;p=oweals%2Fopenssl.git Fix reference to symbol 'main'. The AIX binder needs to be instructed that the output will have no entry point (see AIX' ld manual: -e in the Flags section; autoexp and noentry in the Binder section). Reviewed-by: Matt Caswell Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/8282) (cherry picked from commit c1b3846242fc1a7791beca42f548c325c35e269b) --- diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 28b63be1f4..930f2d3c92 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1112,7 +1112,7 @@ my %targets = ( dso_scheme => "dlfcn", shared_target => "self", module_ldflags => "-Wl,-G,-bsymbolic,-bexpall", - shared_ldflag => "-Wl,-G,-bsymbolic", + shared_ldflag => "-Wl,-G,-bsymbolic,-bnoentry", shared_defflag => "-Wl,-bE:", shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)", dso_extension => ".so",