From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 78493 invoked by alias); 26 Jan 2018 17:51:41 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 78335 invoked by uid 9642); 26 Jan 2018 17:51:40 -0000 Date: Fri, 26 Jan 2018 17:51:00 -0000 Message-ID: <20180126175140.78333.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Yaakov Selkowitz To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] ssp: do not use __ssp_protected_ symbol prefixes X-Act-Checkin: newlib-cygwin X-Git-Author: Yaakov Selkowitz X-Git-Refname: refs/heads/master X-Git-Oldrev: 7d09d0e26191c1ca66c25dcfe0e62328ce87276f X-Git-Newrev: b920561fe3ec2128e783096e0c30fecb7ccb075d X-SW-Source: 2018-q1/txt/msg00029.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=b920561fe3ec2128e783096e0c30fecb7ccb075d commit b920561fe3ec2128e783096e0c30fecb7ccb075d Author: Yaakov Selkowitz Date: Tue Jan 23 21:53:04 2018 -0600 ssp: do not use __ssp_protected_ symbol prefixes This is a NetBSD-specific detail which does not apply to Newlib, causing linking issues in certain scenarios: https://cygwin.com/ml/cygwin/2018-01/msg00189.html Signed-off-by: Yaakov Selkowitz Diff: --- newlib/libc/include/ssp/ssp.h | 1 - 1 file changed, 1 deletion(-) diff --git a/newlib/libc/include/ssp/ssp.h b/newlib/libc/include/ssp/ssp.h index 5c65cf4..9229086 100644 --- a/newlib/libc/include/ssp/ssp.h +++ b/newlib/libc/include/ssp/ssp.h @@ -51,7 +51,6 @@ __chk_fail() #define __ssp_decl(rtype, fun, args) \ rtype __ssp_real_(fun) args __asm__(__ASMNAME(#fun)); \ -__ssp_inline rtype fun args __asm__(__ASMNAME("__ssp_protected_" #fun)); \ __ssp_inline rtype fun args #define __ssp_redirect_raw(rtype, fun, args, call, cond, bos) \ __ssp_decl(rtype, fun, args) \