From owner-svn-ports-all@freebsd.org Sat Jun 8 00:23:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 564A715BB11C; Sat, 8 Jun 2019 00:23:44 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8DC068595; Sat, 8 Jun 2019 00:23:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CF1EABA41; Sat, 8 Jun 2019 00:23:43 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x580NhhS089895; Sat, 8 Jun 2019 00:23:43 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x580Nh7G089894; Sat, 8 Jun 2019 00:23:43 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906080023.x580Nh7G089894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 8 Jun 2019 00:23:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r503680 - head/devel/psptoolchain-newlib X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/psptoolchain-newlib X-SVN-Commit-Revision: 503680 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E8DC068595 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jun 2019 00:23:44 -0000 Author: swills Date: Sat Jun 8 00:23:43 2019 New Revision: 503680 URL: https://svnweb.freebsd.org/changeset/ports/503680 Log: devel/psptoolchain-newlib: fix to recent change that made library unusable PR: 238341 Submitted by: Tassilo Philipp (maintainer) Modified: head/devel/psptoolchain-newlib/Makefile (contents, props changed) Modified: head/devel/psptoolchain-newlib/Makefile ============================================================================== --- head/devel/psptoolchain-newlib/Makefile Sat Jun 8 00:23:04 2019 (r503679) +++ head/devel/psptoolchain-newlib/Makefile Sat Jun 8 00:23:43 2019 (r503680) @@ -30,6 +30,11 @@ CONFIGURE_ENV= PATH=${LOCALBASE}/${PSP_GCC_STAGE_PREF MAKE_ENV= PATH=${LOCALBASE}/${PSP_GCC_STAGE_PREFIX}/bin:${PATH} CONFIGURE_ARGS= --prefix=${PREFIX} --target="psp" SSP_CFLAGS?= -fstack-protector # XXX -strong isn't supported by GCC < 4.9 +# there is no libssp w/ PSP SDK, disable stack guards as they would be +# unresolved symbols, explicitly disable to be on the safe side +SSP_UNSAFE= yes +CFLAGS+= -fno-stack-protector +LDFLAGS+= -fno-stack-protector # Disable installation of .info files and fix includedir reference. post-patch: