From owner-svn-ports-head@freebsd.org Sun May 10 16:43:59 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B50C02EC803; Sun, 10 May 2020 16:43:59 +0000 (UTC) (envelope-from jbeich@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 49Kqdq4QLNz4P3G; Sun, 10 May 2020 16:43:59 +0000 (UTC) (envelope-from jbeich@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 92FFA8444; Sun, 10 May 2020 16:43:59 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 04AGhxZ8071716; Sun, 10 May 2020 16:43:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 04AGhxs3071715; Sun, 10 May 2020 16:43:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202005101643.04AGhxs3071715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 10 May 2020 16:43:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r534854 - head/graphics/vulkan-loader X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/vulkan-loader X-SVN-Commit-Revision: 534854 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 May 2020 16:43:59 -0000 Author: jbeich Date: Sun May 10 16:43:59 2020 New Revision: 534854 URL: https://svnweb.freebsd.org/changeset/ports/534854 Log: graphics/vulkan-loader: unbreak without /usr/bin/as on amd64/i386 CMake Error at loader/CMakeLists.txt:151 (enable_language): No CMAKE_ASM-ATT_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "ASM-ATT" or the CMake cache entry CMAKE_ASM-ATT_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH. PR: 205250 Reported by: antoine (via exp-run) Modified: head/graphics/vulkan-loader/Makefile (contents, props changed) Modified: head/graphics/vulkan-loader/Makefile ============================================================================== --- head/graphics/vulkan-loader/Makefile Sun May 10 15:43:16 2020 (r534853) +++ head/graphics/vulkan-loader/Makefile Sun May 10 16:43:59 2020 (r534854) @@ -11,7 +11,8 @@ COMMENT= Driver loader for the Vulkan graphics API LICENSE= APACHE20 -BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers +BUILD_DEPENDS= as:devel/binutils \ + ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers USES= cmake compiler:c++11-lib pkgconfig python:3.4+,build USE_LDCONFIG= yes @@ -38,11 +39,5 @@ XCB_LIB_DEPENDS= libX11-xcb.so:x11/libX11 \ libxcb.so:x11/libxcb WAYLAND_CMAKE_BOOL= BUILD_WSI_WAYLAND_SUPPORT WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland - -post-patch: -# Non-x86 targets use C code, so don't abort without GNU as (e.g., on aarch64) -.if !exists(/usr/bin/as) && ${MACHINE_ARCH} != i386 && ${MACHINE_ARCH} != amd64 - @${REINPLACE_CMD} 's/-ATT//' ${WRKSRC}/loader/CMakeLists.txt -.endif .include