From owner-svn-ports-all@freebsd.org Sat Jun 22 19:19:40 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 1821F15B44AF; Sat, 22 Jun 2019 19:19:40 +0000 (UTC) (envelope-from linimon@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 B350388A9A; Sat, 22 Jun 2019 19:19:39 +0000 (UTC) (envelope-from linimon@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 8E7F8EF32; Sat, 22 Jun 2019 19:19:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MJJdBN098572; Sat, 22 Jun 2019 19:19:39 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MJJdap098571; Sat, 22 Jun 2019 19:19:39 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906221919.x5MJJdap098571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 19:19:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504884 - in head/devel/xeus: . files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/devel/xeus: . files X-SVN-Commit-Revision: 504884 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B350388A9A 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.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,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, 22 Jun 2019 19:19:40 -0000 Author: linimon Date: Sat Jun 22 19:19:38 2019 New Revision: 504884 URL: https://svnweb.freebsd.org/changeset/ports/504884 Log: For GCC-based systems, edit top-level CMakeLists.txt to eliminate either of the following two problems: g++8: error: unrecognized command line option '-march=native' g++8: error: unrecognized argument in option '-mtune=generic' Approved by: portmgr (tier-2 blanket) Added: head/devel/xeus/files/ head/devel/xeus/files/extra-patch-CMakeLists.txt (contents, props changed) Modified: head/devel/xeus/Makefile Modified: head/devel/xeus/Makefile ============================================================================== --- head/devel/xeus/Makefile Sat Jun 22 19:10:23 2019 (r504883) +++ head/devel/xeus/Makefile Sat Jun 22 19:19:38 2019 (r504884) @@ -23,4 +23,10 @@ GH_ACCOUNT= QuantStack CMAKE_OFF= BUILD_STATIC_LIBS USE_LDCONFIG= yes -.include +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +EXTRA_PATCHES= ${FILESDIR}/extra-patch-CMakeLists.txt +.endif + +.include Added: head/devel/xeus/files/extra-patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/xeus/files/extra-patch-CMakeLists.txt Sat Jun 22 19:19:38 2019 (r504884) @@ -0,0 +1,15 @@ +--- CMakeLists.txt.orig 2019-05-24 14:55:26 UTC ++++ CMakeLists.txt +@@ -212,12 +212,6 @@ macro(xeus_create_target target_name lin + + target_compile_options(${target_name} PUBLIC -Wunused-parameter -Wextra -Wreorder) + +- if (DISABLE_ARCH_NATIVE) +- target_compile_options(${target_name} PUBLIC -mtune=generic) +- else () +- target_compile_options(${target_name} PUBLIC -march=native) +- endif () +- + # Enable link time optimization and set the default symbol + # visibility to hidden (very important to obtain small binaries) + if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG)