[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Thu Nov 3 14:35:58 UTC 2016


The branch master has been updated
       via  075e9da055454ec5586962b43d9923e44bdcb313 (commit)
      from  7280a5d332e880adbc73e03086ab070f8effdce7 (commit)


- Log -----------------------------------------------------------------
commit 075e9da055454ec5586962b43d9923e44bdcb313
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Nov 3 15:26:00 2016 +0100

    Clang doesn't like -znodelete, make it a linker flag instead
    
    gcc is kinder, it silently passes quite a few flags to ld, while clang
    is stricter and wants them prefixed with -Wl,
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1836)

-----------------------------------------------------------------------

Summary of changes:
 Configurations/10-main.conf | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index b77efbf..4c65984 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -633,7 +633,7 @@ sub vms_info {
         dso_scheme       => "dlfcn",
         shared_target    => "linux-shared",
         shared_cflag     => "-fPIC -DOPENSSL_USE_NODELETE",
-        shared_ldflag    => "-znodelete",
+        shared_ldflag    => "-Wl,-znodelete",
         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
     },
     "linux-generic64" => {


More information about the openssl-commits mailing list