From owner-freebsd-emulation@freebsd.org Sun Mar 1 13:12:30 2020 Return-Path: Delivered-To: freebsd-emulation@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 72146240623 for ; Sun, 1 Mar 2020 13:12:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48VkG626G6z3Gsg for ; Sun, 1 Mar 2020 13:12:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 06E42240622; Sun, 1 Mar 2020 13:12:30 +0000 (UTC) Delivered-To: emulation@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 068CB240621 for ; Sun, 1 Mar 2020 13:12:30 +0000 (UTC) (envelope-from bugzilla-noreply@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 48VkG55419z3Grb for ; Sun, 1 Mar 2020 13:12:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D7FE4229 for ; Sun, 1 Mar 2020 13:12:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 021DCT3K038530 for ; Sun, 1 Mar 2020 13:12:29 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 021DCT5u038529 for emulation@FreeBSD.org; Sun, 1 Mar 2020 13:12:29 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 240043] audio/linux-c7-alsa: how to make it work? Date: Sun, 01 Mar 2020 13:12:29 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2020 13:12:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D240043 --- Comment #76 from commit-hook@freebsd.org --- A commit references this bug: Author: tijl Date: Sun Mar 1 13:12:04 UTC 2020 New revision: 358483 URL: https://svnweb.freebsd.org/changeset/base/358483 Log: linuxulator: Map scheduler priorities to Linux priorities. On Linux the valid range of priorities for the SCHED_FIFO and SCHED_RR scheduling policies is [1,99]. For SCHED_OTHER the single valid priority= is 0. On FreeBSD it is [0,31] for all policies. Programs are supposed to query the valid range using sched_get_priority_(min|max), but of course s= ome programs assume the Linux values are valid. This commit adds a tunable compat.linux.map_sched_prio. When enabled sched_get_priority_(min|max) return the Linux values and sched_setschedul= er and sched_(get|set)param translate between FreeBSD and Linux values. Because there are more Linux levels than FreeBSD levels, multiple Linux levels map to a single FreeBSD level, which means pre-emption might not happen as it does on Linux, so the tunable allows to disable this behavio= ur. It is enabled by default because I think it is unlikely that anyone runs real-time software under Linux emulation on FreeBSD that critically relies on correct pre-emption. This fixes FMOD, a commercial sound library used by several games. PR: 240043 Tested by: Alex S Reviewed by: dchagin MFC after: 2 weeks Differential Revision: https://reviews.freebsd.org/D23790 Changes: head/sys/compat/linux/linux_misc.c head/sys/compat/linux/linux_misc.h --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.= From owner-freebsd-emulation@freebsd.org Sun Mar 1 16:20:46 2020 Return-Path: Delivered-To: freebsd-emulation@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 1F5CD244642 for ; Sun, 1 Mar 2020 16:20:46 +0000 (UTC) (envelope-from darkfiberiru@gmail.com) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48VpRK2zQdz41dg for ; Sun, 1 Mar 2020 16:20:45 +0000 (UTC) (envelope-from darkfiberiru@gmail.com) Received: by mailman.nyi.freebsd.org (Postfix) id 4482E244640; Sun, 1 Mar 2020 16:20:45 +0000 (UTC) Delivered-To: emulation@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 43EEF24463F; Sun, 1 Mar 2020 16:20:45 +0000 (UTC) (envelope-from darkfiberiru@gmail.com) Received: from mail-lf1-x129.google.com (mail-lf1-x129.google.com [IPv6:2a00:1450:4864:20::129]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48VpRG3fbpz41WK; Sun, 1 Mar 2020 16:20:42 +0000 (UTC) (envelope-from darkfiberiru@gmail.com) Received: by mail-lf1-x129.google.com with SMTP id v6so5940794lfo.13; Sun, 01 Mar 2020 08:20:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to:cc; bh=WzLM7Rfkxnz3SLetBML/QrGcA4KkU/2BOyAKSScFMTQ=; b=SA5IOaRNQ0m7WNOok/rg5hFnIbGV7Cje/TBxXMoqirZH88bzYrokfC4N60dGLGo1T1 QPGKESglnsHOf0h9eTTNjVdj4ycih00rzS4ObxLcfSkryoUE1+S8r0QL4Vx/MmLtTwVB frRUllVvfZpwxF+ufDPKL5dEovi+qfovfRHN4rh2VcABdyQW5Jx767mdbxyX6Tw+37w2 +1jG4mtoHRPRT2CRoMstQxQ8eC6SfoVqFMuEajXhgUeaisEMroIUpwBHqxEcyjNoxeRO BVXqbieiQDF6ds9+rp9ezTtP5pdKWq7rUXA77rF6oARTK+bBl59e59ZqXsWaBhoSotfv uTKQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc; bh=WzLM7Rfkxnz3SLetBML/QrGcA4KkU/2BOyAKSScFMTQ=; b=X3oke1OeS6V3S76AUZoM1hYgVk4ga82nI8BjlSd/VX08HzlojK7Udm4D3PAeQAyyil FyQklS6Hukro/QDiqBUTWBqyOXEC6JTjzXAf7iJqgmZ6RaNgYBRGkeu9IESFOEnZozQC KXUiwI0iHRoTnVwWc/LP3eT9qHf2gKKItwE5G56njAFs7Yd9zozuO5Z13jUQaWT9GQqd 35owrz+Hpl2tmiNbO2ORTR68cqsF33IjVYz7/KirQEfMgaPVmVdfLGNZcOZMevxko4qF z68urjTLl8EjTY7EzvJWKCzrjFpNsMkTuTQXarG0VlhKNLx/owDkYWmf23K8O2BiGIKo PXtQ== X-Gm-Message-State: ANhLgQ388YPO1Moumun7ASD1DHx1Kr81eKdBkWciFtQJpUW1gN+L3E0y aRS4+6M9Lj0uuiOjz4oEtyTQmMTRfyZYwZc4Fe+nqHT5 X-Google-Smtp-Source: ADFU+vtOmREBSGpKr334hQt3reVUDrB3rJSNkxk8fGDV25soxSTMx3cwtaL4r+sjyupAeatb8ORMU6x49O7W56FxSZw= X-Received: by 2002:a19:4f4e:: with SMTP id a14mr8038703lfk.175.1583079639243; Sun, 01 Mar 2020 08:20:39 -0800 (PST) MIME-Version: 1.0 From: Nick Wolff Date: Sun, 1 Mar 2020 11:20:24 -0500 Message-ID: Subject: Linux-steam-utils To: freebsd-ports@freebsd.org, emulation@freebsd.org Cc: iwtcex@gmail.com X-Rspamd-Queue-Id: 48VpRG3fbpz41WK X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; dkim=pass header.d=gmail.com header.s=20161025 header.b=SA5IOaRN; dmarc=pass (policy=none) header.from=gmail.com; spf=pass (mx1.freebsd.org: domain of darkfiberiru@gmail.com designates 2a00:1450:4864:20::129 as permitted sender) smtp.mailfrom=darkfiberiru@gmail.com X-Spamd-Result: default: False [-2.00 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; R_DKIM_ALLOW(-0.20)[gmail.com:s=20161025]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; R_SPF_ALLOW(-0.20)[+ip6:2a00:1450:4000::/36:c]; FREEMAIL_FROM(0.00)[gmail.com]; MIME_GOOD(-0.10)[multipart/alternative,text/plain]; TO_DN_NONE(0.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; IP_SCORE_FREEMAIL(0.00)[]; URI_COUNT_ODD(1.00)[9]; DWL_DNSWL_NONE(0.00)[gmail.com.dwl.dnswl.org : 127.0.5.0]; TO_MATCH_ENVRCPT_SOME(0.00)[]; DKIM_TRACE(0.00)[gmail.com:+]; DMARC_POLICY_ALLOW(-0.50)[gmail.com,none]; RCVD_IN_DNSWL_NONE(0.00)[9.2.1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.0.0.4.6.8.4.0.5.4.1.0.0.a.2.list.dnswl.org : 127.0.5.0]; IP_SCORE(0.00)[ip: (-9.13), ipnet: 2a00:1450::/32(-2.41), asn: 15169(-1.67), country: US(-0.05)]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+,1:+,2:~]; FREEMAIL_ENVFROM(0.00)[gmail.com]; ASN(0.00)[asn:15169, ipnet:2a00:1450::/32, country:US]; FREEMAIL_CC(0.00)[gmail.com]; RCVD_TLS_ALL(0.00)[]; RCVD_COUNT_TWO(0.00)[2] X-Mailman-Approved-At: Sun, 01 Mar 2020 16:47:04 +0000 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2020 16:20:46 -0000 Hi All, Alex S has done a lot of hard work on a steam port and many other things on freebsd in this area. Can we get some eyeballs on his steam port. Much Appreciated. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244207 Hope you don't mind this email alex just saw lack of response for some really fantastic work. Also of interest NVshim: Shim to use vulkan with freebsd because nvidia doesn't build certain libraries with there drivers. https://github.com/shkhln/nvshim linuxlator-steam-utils: The repo that the above port pulls from https://github.com/shkhln/linuxulator-steam-utils From owner-freebsd-emulation@freebsd.org Sun Mar 1 16:44:25 2020 Return-Path: Delivered-To: freebsd-emulation@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 ACD062452E4 for ; Sun, 1 Mar 2020 16:44:25 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Vpyd3xr3z45nT for ; Sun, 1 Mar 2020 16:44:25 +0000 (UTC) (envelope-from pi@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 839D92452DF; Sun, 1 Mar 2020 16:44:25 +0000 (UTC) Delivered-To: emulation@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 806F52452DC; Sun, 1 Mar 2020 16:44:25 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from home.opsec.eu (home.opsec.eu [IPv6:2001:14f8:200::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48Vpyc69t9z45m4; Sun, 1 Mar 2020 16:44:24 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by home.opsec.eu with local (Exim 4.92.3 (FreeBSD)) (envelope-from ) id 1j8RhQ-0003p7-Bo; Sun, 01 Mar 2020 17:44:16 +0100 Date: Sun, 1 Mar 2020 17:44:16 +0100 From: Kurt Jaeger To: Nick Wolff Cc: freebsd-ports@freebsd.org, emulation@freebsd.org, iwtcex@gmail.com Subject: Re: Linux-steam-utils Message-ID: <20200301164416.GU37073@home.opsec.eu> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Rspamd-Queue-Id: 48Vpyc69t9z45m4 X-Spamd-Bar: - Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-1.56 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.59)[-0.586,0]; ASN(0.00)[asn:12502, ipnet:2001:14f8::/32, country:DE]; NEURAL_HAM_LONG(-0.98)[-0.978,0] X-Mailman-Approved-At: Sun, 01 Mar 2020 16:47:14 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2020 16:44:25 -0000 Hi! > Alex S has done a lot of hard work on a steam port and many other things on > freebsd in this area. Can we get some eyeballs on his steam port. Much > Appreciated. > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244207 I'm testbuilding right now. As I'm not a gamer at all, can someone do some run-tests and explain how to use that port ? -- pi@opsec.eu +49 171 3101372 Now what ? From owner-freebsd-emulation@freebsd.org Sun Mar 1 21:00:36 2020 Return-Path: Delivered-To: freebsd-emulation@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 EEC2F24D532 for ; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48VwfD5tB0z4Nmt for ; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id C92C624D52B; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) Delivered-To: emulation@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 C870424D52A for ; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48VwfD4nfjz4Nmp for ; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 4DC7E5F67; Sun, 1 Mar 2020 21:00:36 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 0150A5FBC for ; Sun, 1 Mar 2020 21:00:35 +0000 (UTC) (envelope-from bugzilla-noreply@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 48VwfC3s8zz4Nlr for ; Sun, 1 Mar 2020 21:00:35 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A88B97CB for ; Sun, 1 Mar 2020 21:00:35 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 021L0ZgK068356 for ; Sun, 1 Mar 2020 21:00:35 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 021L0ZqF068353 for vbox@FreeBSD.org; Sun, 1 Mar 2020 21:00:35 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <202003012100.021L0ZqF068353@kenobi.freebsd.org> X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@FreeBSD.org using -f From: bugzilla-noreply@FreeBSD.org To: vbox@FreeBSD.org Subject: Problem reports for vbox@FreeBSD.org that need special attention Date: Sun, 1 Mar 2020 21:00:35 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Mar 2020 21:00:37 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 232969 | emulators/virtualbox-ose: fails to link rdesktop- Open | 242637 | emulators/virtualbox-ose: Fix bridging when ng_et Open | 243315 | emulators/virtualbox-ose: 5.2.34 fails to buid on New | 226073 | emulators/virtualbox-ose-additions -- fix two min 4 problems total for which you should take action. From owner-freebsd-emulation@freebsd.org Tue Mar 3 01:59:53 2020 Return-Path: Delivered-To: freebsd-emulation@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 3FC042628EC for ; Tue, 3 Mar 2020 01:59:53 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48WgF50ypZz4Zrm for ; Tue, 3 Mar 2020 01:59:53 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id D37362628EA; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) Delivered-To: emulation@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 BAB8B2628E8 for ; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48WgF44rcPz4ZrL for ; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 8EA3B99E4; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 870769A43 for ; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) (envelope-from pkg-fallout@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 48WgF42FqWz4Zqg; Tue, 3 Mar 2020 01:59:52 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4E1025ABD; Tue, 3 Mar 2020 01:59:51 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0231xpB3099964; Tue, 3 Mar 2020 01:59:51 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 0231xpKD099959; Tue, 3 Mar 2020 01:59:51 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Tue, 3 Mar 2020 01:59:51 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003030159.0231xpKD099959@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 01:59:53 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: zeising@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527609_s358518/logs/virtualbox-ose-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527609_s358518 Log: =>> Building emulators/virtualbox-ose build started at Tue Mar 3 01:55:17 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose package name: virtualbox-ose-5.2.34_1 building for: FreeBSD head-amd64-default-job-05 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 05 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM=screen PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-5.2.34_1: ALSA=off: ALSA audio architecture support DBUS=on: D-Bus IPC system support DEBUG=off: Debug symbols, additional logs and assertions GUESTADDITIONS=off: Build with Guest Additions MANUAL=off: Build with user manual NLS=on: Native language support (requires QT5) PULSEAUDIO=off: PulseAudio sound server support PYTHON=off: Python bindings or support QT5=on: Build with QT5 frontend (requires X11) R0LOGGING=off: Enable R0 logging (requires DEBUG) UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support VPX=off: Use libvpx for video recording WEBSERVICE=on: Build Webservice X11=on: X11 (graphics) support ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --enable-qt5 --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 - pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " QT="" SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " QT_BINDIR="lib/qt5/bin" QT_INCDIR="include/qt5" QT_LIBDIR="lib/qt5" QT_ARCHDIR="lib/qt5" QT_PLUGINDIR="lib/q t5/plugins" QT_LIBEXECDIR="libexec/qt5" QT_IMPORTDIR="lib/qt5/imports" QT_QMLDIR="lib/qt5/qml" QT_DATADIR="share/qt5" QT_DOCDIR="share/doc/qt5" QT_L10NDIR="share/qt5/translations" QT_EXAMPLEDIR="share/examples/qt5" QT_TESTDIR="share/qt5/tests" QT_MKSPECDIR="lib/qt5/mkspecs" QT_QTCHOOSERDIR="etc/xdg/qtchooser" DEBUG="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-05] Installing pkg-1.13.2... [head-amd64-default-job-05] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building ===> Extracting for virtualbox-ose-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_current.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_enable.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_error.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_evaluators.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_feedback.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_flush.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fog.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_getstring.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_hint.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_init.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lighting.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_limits.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_line.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lists.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_multisample.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_occlude.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_pixel.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_point.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_polygon.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_program.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_rasterpos.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_regcombiner.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_stencil.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_teximage.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texdiff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_transform.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_viewport.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_framebuffer.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_glsl.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_buffer_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_current_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_fog_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_hint_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_lighting_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_line_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_multisample_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_polygon_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_regcombiner_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_viewport_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_get.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_isenabled.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bufpool.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/dll.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/error.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/hash.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/matrix.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/mem.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/net.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/pixel.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/process.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/string.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/threads.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vreg.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/blitter.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/compositor.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/htable.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bmpscale.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/errorspu.c kBuild: Compiling VBoxOGLhosterrorspu - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/error/errorspu_init.c kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp:55: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIMemAlloc.h:31: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIDefs.h:35: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34 /out/freebsd.amd64/release/obj/HGSMIGuestR0L! ib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2. 34/out/freebsd.amd64/release/obj/HGSMIGuestR! 0Lib/HGSMIMemAlloc.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose From owner-freebsd-emulation@freebsd.org Tue Mar 3 02:13:41 2020 Return-Path: Delivered-To: freebsd-emulation@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 3C47D262D03 for ; Tue, 3 Mar 2020 02:13:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48WgY06RlRz40VD for ; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id CD6EC262D02; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) Delivered-To: emulation@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 CC05D262D01 for ; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48WgY03nZcz40TZ for ; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 5BF5A1BB3D; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 562161BC24 for ; Tue, 3 Mar 2020 02:13:40 +0000 (UTC) (envelope-from bugzilla-noreply@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 48WgXz6sn3z40ST for ; Tue, 3 Mar 2020 02:13:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E04BE25E68 for ; Tue, 3 Mar 2020 02:13:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0232Dd21002935 for ; Tue, 3 Mar 2020 02:13:39 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0232DdVG002932 for vbox@FreeBSD.org; Tue, 3 Mar 2020 02:13:39 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 236616] emulators/virtualbox-ose: Unable to create a new machine due to "Unexpected exception: cxxrt::bad_alloc [St9bad_alloc]" Date: Tue, 03 Mar 2020 02:13:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 02:13:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236616 Kyle Evans changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kevans@freebsd.org Status|Closed |Open Resolution|FIXED |--- --- Comment #20 from Kyle Evans --- Re-opening... pinning virtualbox to an old compiler isn't really a sustaina= ble solution, unfortunately, as that potentially (as in, right now) holds back = real improvements to base that require newer compilers. We really need to work o= ut why the newer versions aren't working or force it over to GCC until we can = do so, if that's feasible. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Tue Mar 3 02:17:47 2020 Return-Path: Delivered-To: freebsd-emulation@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 EEBC0262D95 for ; Tue, 3 Mar 2020 02:17:47 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Wgdl4SFYz49Wf for ; Tue, 3 Mar 2020 02:17:47 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 89A28262D8C; Tue, 3 Mar 2020 02:17:47 +0000 (UTC) Delivered-To: emulation@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 89499262D8B for ; Tue, 3 Mar 2020 02:17:47 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Wgdk2ZtXz49SF for ; Tue, 3 Mar 2020 02:17:46 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by freefall.freebsd.org (Postfix) id E54BB3F2D; Tue, 3 Mar 2020 02:17:45 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id DFD5F3EC0; Tue, 3 Mar 2020 02:17:45 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Wgdj3PJ4z49Qh; Tue, 3 Mar 2020 02:17:45 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qt1-f175.google.com (mail-qt1-f175.google.com [209.85.160.175]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 48F3118B2; Tue, 3 Mar 2020 02:17:45 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qt1-f175.google.com with SMTP id l21so1699108qtr.8; Mon, 02 Mar 2020 18:17:45 -0800 (PST) X-Gm-Message-State: ANhLgQ1bKJ2WncooYMXTo6OjP8KBuyVL9JhoqHr2x9sNSABzbzBtoCTP KY0WwvuCx0sOFQAgQLbsEbkCIxO3cEuGbT8f714= X-Google-Smtp-Source: ADFU+vvFqhajbxcPbsCJqYOTK3N/fxUTM4Lkn/JQJQLZ0PF0xkLftjLxKblo/1PdNSCe7SIqBEfQmfnDNmWsBOa8Fkc= X-Received: by 2002:ac8:6048:: with SMTP id k8mr1327026qtm.53.1583201864649; Mon, 02 Mar 2020 18:17:44 -0800 (PST) MIME-Version: 1.0 References: <202003030159.0231xpKD099959@beefy18.nyi.freebsd.org> In-Reply-To: <202003030159.0231xpKD099959@beefy18.nyi.freebsd.org> From: Kyle Evans Date: Mon, 2 Mar 2020 20:17:33 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [package - head-amd64-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.2.34_1 in build To: pkg-fallout@freebsd.org Cc: vbox@freebsd.org, Ryan Libby Content-Type: text/plain; charset="UTF-8" X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 02:17:48 -0000 On Mon, Mar 2, 2020 at 8:00 PM wrote: > > You are receiving this mail as a port that you maintain > is failing to build on the FreeBSD package build server. > Please investigate the failure and submit a PR to fix > build. > > Maintainer: vbox@FreeBSD.org > Last committer: zeising@FreeBSD.org > Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ > Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527609_s358518/logs/virtualbox-ose-5.2.34_1.log > Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527609_s358518 > Log: > > =>> Building emulators/virtualbox-ose > build started at Tue Mar 3 01:55:17 UTC 2020 > port directory: /usr/ports/emulators/virtualbox-ose > package name: virtualbox-ose-5.2.34_1 > building for: FreeBSD head-amd64-default-job-05 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 > maintained by: vbox@FreeBSD.org > Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ > Poudriere version: 3.2.8-5-gc81843e5 > Host OSVERSION: 1300076 > Jail OSVERSION: 1300082 > Job Id: 05 > > [... snip ...] I've reopened PR 236616 which is forcing virtualbox to an old version of clang. This is clearly fallout from r358439, but if the scope of this fallout is this narrow then we should really coerce the virtualbox build over to GCC or fix the runtime breakage on newer compilers rather than request a revert or rework of the optimization for this one port. Thanks, Kyle Evans From owner-freebsd-emulation@freebsd.org Tue Mar 3 09:02:54 2020 Return-Path: Delivered-To: freebsd-emulation@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 45011268E48 for ; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48WrdB1vh4z401h for ; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 4047D268E47; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) Delivered-To: emulation@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 4000F268E46 for ; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48WrdB1lr2z401f for ; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 2891613950; Tue, 3 Mar 2020 09:02:54 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id E16151394F for ; Tue, 3 Mar 2020 09:02:53 +0000 (UTC) (envelope-from pkg-fallout@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 48Wrd95dDNz401T; Tue, 3 Mar 2020 09:02:53 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA88C29FB; Tue, 3 Mar 2020 09:02:53 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 02392rJo097178; Tue, 3 Mar 2020 09:02:53 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 02392rDn097175; Tue, 3 Mar 2020 09:02:53 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Tue, 3 Mar 2020 09:02:53 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003030902.02392rDn097175@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose-nox11] Failed for virtualbox-ose-nox11-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 09:02:54 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527609_s358518/logs/virtualbox-ose-nox11-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527609_s358518 Log: =>> Building emulators/virtualbox-ose-nox11 build started at Tue Mar 3 08:58:45 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose-nox11 package name: virtualbox-ose-nox11-5.2.34_1 building for: FreeBSD head-amd64-default-job-05 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 05 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM=screen PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-nox11-5.2.34_1: PYTHON=off: Python bindings or support UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support WEBSERVICE=on: Build Webservice ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-dbus --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --build-headless --disable-qt --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INST ALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" QT="@comment " SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/loc al LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-05] Installing pkg-1.13.2... [head-amd64-default-job-05] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-nox11-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building ===> Extracting for virtualbox-ose-nox11-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/share/kBuild/tools/GXX3.kmk - not found ===> Installing existing package /packages/All/kBuild-0.1.9998_13.txz [head-amd64-default-job-05] Installing kBuild-0.1.9998_13... [head-amd64-default-job-05] `-- Installing gcc9-9.2.0_1... [head-amd64-default-job-05] | `-- Installing binutils-2.33.1_2,1... [head-amd64-default-job-05] | | `-- Installing gettext-runtime-0.20.1... [head-amd64-default-job-05] | | `-- Installing indexinfo-0.3.1... [head-amd64-default-job-05] | | `-- Extracting indexinfo-0.3.1: .... done [head-amd64-default-job-05] | | `-- Extracting gettext-runtime-0.20.1: .......... done [head-amd64-default-job-05] | `-- Extracting binutils-2.33.1_2,1: .......... done kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/generic/errvars-generic.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/misc/setjmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/bzero.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/mempcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memmove.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memset.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strncpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strlen.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/time/timesupref.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/adddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/anddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/cmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/divdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/iordi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/moddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/muldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/negdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/notdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/qdivrem.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/subdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ucmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivmoddi4.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/umoddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/xordi3.c kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling StorageDbgLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Debug/VDDbgIoLog.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDPlugin.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs2.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VMDK.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/DMG.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Parallels.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/ISCSI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/RAW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QED.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QCOW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHDX.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/CUE.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VISO.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VCICache.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/SSM.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/CPUMR3Db.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Network/SrvIntNetR0.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Bus/SrvPciRawR0.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedNoCrt.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/asm/ASMMemFirstMismatchingU8.asm kBuild: Compiling SUPRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBFilter.cpp /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:48:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register const uint8_t *pu8 = (const uint8_t *)pszSerial; ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:49:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint64_t u64 = UINT64_C(14695981039346656037); ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:52:9: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint8_t u8 = *pu8; ^~~~~~~~~ 3 warnings generated. kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGConsole.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEval.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCBuiltInSymbols.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdHlp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdWorkers.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCommands.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCFunctions.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEmulateCodeView.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCOps.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCGdbRemoteStub.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCTcp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCScreenAscii.cpp kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdir s/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/v irtualbox-ose-nox11/work/VirtualBox-5.2.34/o! ut/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose-nox11 From owner-freebsd-emulation@freebsd.org Tue Mar 3 15:53:40 2020 Return-Path: Delivered-To: freebsd-emulation@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 9AA8725435E for ; Tue, 3 Mar 2020 15:53:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48X1l821Jhz3Fh4 for ; Tue, 3 Mar 2020 15:53:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id C672E25435C; Tue, 3 Mar 2020 15:53:39 +0000 (UTC) Delivered-To: emulation@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 C394C254359 for ; Tue, 3 Mar 2020 15:53:39 +0000 (UTC) (envelope-from bugzilla-noreply@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 48X1l63WsNz3FbR for ; Tue, 3 Mar 2020 15:53:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2294A7995 for ; Tue, 3 Mar 2020 15:53:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 023FrcS1017120 for ; Tue, 3 Mar 2020 15:53:38 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 023FrcnI017119 for emulation@FreeBSD.org; Tue, 3 Mar 2020 15:53:38 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 242272] LinuxKPI combines all RCU and SRCU domains together, leading to deadlock Date: Tue, 03 Mar 2020 15:53:38 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: hselasky@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hselasky@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 15:53:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D242272 Hans Petter Selasky changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress Assignee|emulation@FreeBSD.org |hselasky@FreeBSD.org CC| |hselasky@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Tue Mar 3 15:55:18 2020 Return-Path: Delivered-To: freebsd-emulation@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 DBDA72543CC for ; Tue, 3 Mar 2020 15:55:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48X1n245gsz3KRy for ; Tue, 3 Mar 2020 15:55:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 8C2AD2543CB; Tue, 3 Mar 2020 15:55:18 +0000 (UTC) Delivered-To: emulation@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 8BED82543CA for ; Tue, 3 Mar 2020 15:55:18 +0000 (UTC) (envelope-from bugzilla-noreply@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 48X1n20XrPz3KQc for ; Tue, 3 Mar 2020 15:55:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B40BB79A1 for ; Tue, 3 Mar 2020 15:55:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 023FtHNR019275 for ; Tue, 3 Mar 2020 15:55:17 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 023FtHS0019274 for emulation@FreeBSD.org; Tue, 3 Mar 2020 15:55:17 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 244436] Linuxkpi never run resume and suspend callback function Date: Tue, 03 Mar 2020 15:55:17 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 12.1-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: hselasky@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: hselasky@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2020 15:55:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244436 Hans Petter Selasky changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hselasky@FreeBSD.org Assignee|emulation@FreeBSD.org |hselasky@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Mar 4 11:27:19 2020 Return-Path: Delivered-To: freebsd-emulation@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 1901626C1D0 for ; Wed, 4 Mar 2020 11:27:19 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48XWnJ3n5Rz3NZ1 for ; Wed, 4 Mar 2020 11:27:16 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id AB1C426C1C7; Wed, 4 Mar 2020 11:27:15 +0000 (UTC) Delivered-To: emulation@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 AA45526C1C6 for ; Wed, 4 Mar 2020 11:27:15 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XWnH2rN4z3NY3 for ; Wed, 4 Mar 2020 11:27:15 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 3B82916AA3; Wed, 4 Mar 2020 11:27:14 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 07AA0168FE; Wed, 4 Mar 2020 11:27:14 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (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 "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XWnF1TFLz3NX3; Wed, 4 Mar 2020 11:27:13 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from marvin.madpilot.net (host146-240-dynamic.10-87-r.retail.telecomitalia.it [87.10.240.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: madpilot/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 11BD110741; Wed, 4 Mar 2020 11:27:11 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Subject: Re: svn commit: r358439 - head/sys/amd64/include To: Ryan Libby , "Alexander V. Chernikov" Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@FreeBSD.org References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> From: Guido Falsi Message-ID: <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> Date: Wed, 4 Mar 2020 12:27:08 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 04 Mar 2020 14:07:28 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 11:27:19 -0000 On 02/03/20 18:13, Ryan Libby wrote: > On Mon, Mar 2, 2020 at 12:45 AM Alexander V. Chernikov wrote: >> >> 28.02.2020, 18:32, "Ryan Libby" : >>> Author: rlibby >>> Date: Fri Feb 28 18:32:36 2020 >>> New Revision: 358439 >>> URL: https://svnweb.freebsd.org/changeset/base/358439 >>> >>> Log: >>> amd64 atomic.h: minor codegen optimization in flag access >>> >>> Previously the pattern to extract status flags from inline assembly >>> blocks was to use setcc in the block to write the flag to a register. >>> This was suboptimal in a few ways: >>> - It would lead to code like: sete %cl; test %cl; jne, i.e. a flag >>> would just be loaded into a register and then reloaded to a flag. >>> - The setcc would force the block to use an additional register. >>> - If the client code didn't care for the flag value then the setcc >>> would be entirely pointless but could not be eliminated by the >>> optimizer. >>> >>> A more modern inline asm construct (since gcc 6 and clang 9) allows for >> This effectively restricts kernel builds by all older compilers. >> Is there any chance of making it conditional depending on the compiler version/features? > > Yes, it is possible to test for __GCC_ASM_FLAG_OUTPUTS__. It is more > maintenance effort going forward. If building current with an old cross > compiler is an important scenario, we can either revert this and the > following revision or work up a patch to make it conditional. I'll see > what that might look like. > Actually this causes emulators/virtualbox-ose port to fail to build: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm (and so on) the virtualbox-ose port is forced to use an older clang version due to crashes when compiled with newer ones. Not sure whose responsibility is to fix this. Should I file a bug report on bugzilla? -- Guido Falsi From owner-freebsd-emulation@freebsd.org Wed Mar 4 17:40:09 2020 Return-Path: Delivered-To: freebsd-emulation@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 9CDB3274755 for ; Wed, 4 Mar 2020 17:40:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Xh3Y0vKpz4F8b for ; Wed, 4 Mar 2020 17:40:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id CFBBB27474F; Wed, 4 Mar 2020 17:40:08 +0000 (UTC) Delivered-To: emulation@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 CF63427474E for ; Wed, 4 Mar 2020 17:40:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Xh3W4qBJz4F6m for ; Wed, 4 Mar 2020 17:40:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id DB3EE13482; Wed, 4 Mar 2020 17:40:06 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id D84E4132ED for ; Wed, 4 Mar 2020 17:40:06 +0000 (UTC) (envelope-from bugzilla-noreply@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 48Xh3V0ZK7z4F3P for ; Wed, 4 Mar 2020 17:40:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 43C9721A0D for ; Wed, 4 Mar 2020 17:40:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 024He56M028621 for ; Wed, 4 Mar 2020 17:40:05 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 024He52j028620 for vbox@FreeBSD.org; Wed, 4 Mar 2020 17:40:05 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 236616] emulators/virtualbox-ose: Unable to create a new machine due to "Unexpected exception: cxxrt::bad_alloc [St9bad_alloc]" Date: Wed, 04 Mar 2020 17:40:04 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: madpilot@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 17:40:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236616 --- Comment #21 from Guido Falsi --- Due to being pinned to olgd clang virtualbox is now failing to build on head after r358439 As a workaround I've added this to make.conf in poudriere: .if ${.CURDIR:M*emulators/virtualbox-ose} USE_GCC=3D9 .endif and so building virtualbox with recent gcc. It works fine for me. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Mar 4 15:03:13 2020 Return-Path: Delivered-To: freebsd-emulation@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 2DC2D270A66 for ; Wed, 4 Mar 2020 15:03:13 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48XcZS6S44z4RZ0 for ; Wed, 4 Mar 2020 15:03:12 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id DD4AC270A65; Wed, 4 Mar 2020 15:03:12 +0000 (UTC) Delivered-To: emulation@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 DCEFC270A64 for ; Wed, 4 Mar 2020 15:03:12 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XcZS2PQ4z4RYn for ; Wed, 4 Mar 2020 15:03:12 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 4195F1105E; Wed, 4 Mar 2020 15:03:12 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id F11E91118C; Wed, 4 Mar 2020 15:03:11 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (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 "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XcZR49NLz4RYT; Wed, 4 Mar 2020 15:03:11 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from marvin.madpilot.net (host146-240-dynamic.10-87-r.retail.telecomitalia.it [87.10.240.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: madpilot/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id BCD1712147; Wed, 4 Mar 2020 15:03:10 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Subject: Re: svn commit: r358439 - head/sys/amd64/include From: Guido Falsi To: Ryan Libby , "Alexander V. Chernikov" Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@FreeBSD.org References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> Autocrypt: addr=madpilot@FreeBSD.org; keydata= mQENBE+G+l0BCADi/WBQ0aRJfnE7LBPsM0G3m/m3Yx7OPu4iYFvS84xawmRHtCNjWIntsxuX fptkmEo3Rsw816WUrek8dxoUAYdHd+EcpBcnnDzfDH5LW/TZ4gbrFezrHPdRp7wdxi23GN80 qPwHEwXuF0X4Wy5V0OO8B6VT/nA0ADYnBDhXS52HGIJ/GCUjgqJn+phDTdCFLvrSFdmgx4Wl c0W5Z1p5cmDF9l8L/hc959AeyNf7I9dXnjekGM9gVv7UDUYzCifR3U8T0fnfdMmS8NeI9NC+ wuREpRO4lKOkTnj9TtQJRiptlhcHQiAlG1cFqs7EQo57Tqq6cxD1FycZJLuC32bGbgalABEB AAG0Ikd1aWRvIEZhbHNpIDxtYWRwaWxvdEBGcmVlQlNELm9yZz6JATYEEwEIACACGwMCHgEC F4AFAlLvzwUFCwkIBwMFFQoJCAsEFgIDAQAKCRAa5oYOVsvSk6EzCAC4ovSo6XF4x0spuKmp RzVuZ5ywqCJAfRIrJHpW8HjSPkcUYwmXVOE3zjul9j2C2eHPPGobEDN5FqovAtzb7HdYGGcU aUdhDApUMMRVkzflwb23C/CI1RBcZxjC0noajSKgbIHx4+Afg6CFMgpngq+NJwEaaVrKlYzq G+KcfeVKAdwlWHJOgQJIEylUtwtBqXx/iJDrGwKO5A6a1uSEZrZfuwjSh8cBqoUfIwLZUIFE HBjHa8pUkp8mWx7JaZ19vBF6pDpPVZSoLSg8stWd1DPesn/qySYgtSGSY6hpWABVF98HRsBG +VXlHtqCaB0j0cGCDhCpHQUI10oGGc8k4zcvuQINBFMQe0EBEAChYaw3HqD3SvyBw0pqI+kk GIrLzO1XYXJXkuxPQ6BAFbe8jG3+h22zFU02OnJL8E1kLLMsCwVzVasYHOFiyY831IYHn/lh O+TN/lhWJTlUCxmWP8xFYJmta2mJzhzQDs3hyw5hF422T+rxgHg8gWxn0D6RO6hmGe7m3k91 8EDvj5JXAq7zj49mT3AMRjUtsVVPy8zjagqyaizCUiHAnbG4kj+BuT5wxR7TKJGk2OjhK/Dh EHzgHq4XB1Gv8+1LvGLZmqih/kBpBP1hIGkakok579CTkw/g8XoWqr6Cjz2fvtjaQmTBwdou gP8Yn5kMBIiIxF7XLngUc5DVEJMYamcktd0q4aHC/cnbWlTwc2WrQBI1AwxCZgDC1RbOOan8 oTIjWqRyaNp9zFvxOaJqgrxJA3Vl/3p9z+witk3pnmg4ITLIJDSmsf89MDaOVGQpDjzs9MaT YlIpTlW5Lns2WTYOue+NanntpX14UCGmeusk+4aYXPzf89zyALS3s3uLtVUdhFwLmdrFgHZS gjU5STLGlP8e9AVddVnf8qZ1czOvHX3UCCAI9YjBQA/5VxpRFJil4OTr9lUA5U57UKGpwmKw IPvArbT8468nYC2Rat4a7UJn3NLHucr9Vh0uvfgbFDhtPUb72sFA2cVI1tfZMnjfUx2jUYKM N5ErgK1Kes0piQARAQABiQEfBBgBCAAJBQJTEHtBAhsMAAoJEBrmhg5Wy9KTDecIAOGwpF/6 sBFQtOk6HkegtqbrZklkDIKQ2qq7+uR7m6PkBpoNj+HsE2EEOIOqGFktN6h8alVVoSs+xY36 1fnR/Kmwi30oCHL3QYWu2shmVa7IrjCyhm8N+n3JpGT6Ugznx3D9Fx/GfrvQlo9MVJE8QJWf +4uoGElKRtiVjbXZhP1/FVRMl7rAi8MtCtASOtAP+HUUyF9wuECqyd2W1F3oM+9Mp4x3/pUD GfSGSgEqETLkuRaMz0Iemm75sGRD3X+SPa4lBJc7x66ifAcdLdz7o3aLYfsjR6Zwca7TvC5E Ha0OfD9EsHGiF9909lPaRvG4buWFUfPBUPDkNHBLDwaQ53K5AQ0ET4b6XQEIALHepqzqtRkm cJc0bHDUGvVtlgf904+DjeDy9nvQfoXPZU/58tswd2oF7ucG7F088MYCaUE+4TR5AknJFvfI dx0YxX4WTzQoCJ7lBrI3DclYLkIfv+O3JIaYdLO1PugeMjbiIqkGZOJqPFoAjY9WCIoVZhlh LIAzsDGmo2w2GdK9f9xpCpWIzl3lLk/1oKLq60keaGSVTQP5OF9h+zNyVK9QUnN9i+wSbfDO wJ7bpepNeydC/BppLy701LUEzvqfg2EDJ2tp4A9z2wL0EXGxBp5IPQAa3RBdFqeBsfoBhlrM hSpR7z3TLYFgMtybEvq0GqRui6Ft8lCacKRKQPOinQcAEQEAAYkBHwQoAQgACQUCUxB9DQId AQAKCRAa5oYOVsvSkzGXCADErInRheCqYxnCs4ZDStLBKXr3HpUOg84E+5HF7qui0OmDq26H 9vyj4Bonvf06BWXyVx/MxORnn6pCrx2W2LLFopRb5CPdBfZ9d/JBttOTQf9s5WkG++P7/WTF yV3IqZyMfk9rTjAgYByVONSDCZgfjX0beQOgg8rSXYVsaqabBKOY48v+7STNTZ+OxvO7QFfK lTVLc20us3Z2xweFtgScAjm21b/HqS94bvy+Xn1do9rUm1U5sryvwpWDAanbVKN7j1++Rhfy rmAwjj9QUwOc85s6eDzFXfoJh3DIAmSmOpb3BLXYuRSyNMHtpHGPH3z7zNnejDYRbBi2lSPe SdKKiQEfBBgBAgAJBQJPhvpdAhsMAAoJEBrmhg5Wy9KTNfEH/R0zTYbvDdCEirZkfJYD4Sbr vPazhGvCihGra+H0O4C/oZmDhKmf8hy3D0LxsWwJS0exdEoXirwBJOAdWhcBlCz6NEs7jtHf 1rVTBGxmveSU5v+pn4spljJVn/FInw9TAys8z0ezptMm3qDzPEv0UE26FFNVi6cHeJoPaVSZ StMa+eRjkhzX+Ju0vj9ZL5d8YJhI9eM1TKvciQTVhZbECuXIon4e7BaX7sVnRFW7YCHcacyJ ii10iwNLzq6CgL8RUxgawat78VenlJmisneR221no5mn2NbmuXXJ3sPZcaVii3apAtu1bdAp Lvi7U2N99uVfgQoZ3MDXCSUuyDJgc+s= Message-ID: <6e71c270-0662-64dd-9591-4a8aef986c8c@FreeBSD.org> Date: Wed, 4 Mar 2020 16:03:08 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.5.0 MIME-Version: 1.0 In-Reply-To: <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 04 Mar 2020 20:11:51 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 15:03:13 -0000 On 04/03/20 12:27, Guido Falsi wrote: > > Actually this causes emulators/virtualbox-ose port to fail to build: > > In file included from /usr/src/sys/sys/systm.h:44: > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=@cce' in asm > ATOMIC_CMPSET(char); > ^ > /usr/include/machine/atomic.h:205:4: note: expanded from macro > 'ATOMIC_CMPSET' > : "=@cce" (res), /* 0 */ \ > ^ > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=@cce' in asm > > (and so on) > > > the virtualbox-ose port is forced to use an older clang version due to > crashes when compiled with newer ones. > > Not sure whose responsibility is to fix this. > > Should I file a bug report on bugzilla? > Adding: .if ${.CURDIR:M*emulators/virtualbox-ose} USE_GCC=9 .endif to make.conf seems to be a good workaround. Writing this here for the record. -- Guido Falsi From owner-freebsd-emulation@freebsd.org Wed Mar 4 17:27:13 2020 Return-Path: Delivered-To: freebsd-emulation@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 85B5727445D for ; Wed, 4 Mar 2020 17:27:13 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48Xgmc6sfvz4dQj for ; Wed, 4 Mar 2020 17:27:12 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mailman.nyi.freebsd.org (Postfix) id C25A0274459; Wed, 4 Mar 2020 17:27:12 +0000 (UTC) Delivered-To: emulation@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 C1F38274458 for ; Wed, 4 Mar 2020 17:27:12 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Xgmb5J1Bz4dMm for ; Wed, 4 Mar 2020 17:27:11 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by freefall.freebsd.org (Postfix) id 9FDEF1796E; Wed, 4 Mar 2020 17:27:11 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 8F57617C81; Wed, 4 Mar 2020 17:27:11 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mail-qt1-f193.google.com (mail-qt1-f193.google.com [209.85.160.193]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XgmZ5B9hz4dKb; Wed, 4 Mar 2020 17:27:10 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mail-qt1-f193.google.com with SMTP id h16so1945043qtr.11; Wed, 04 Mar 2020 09:27:10 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=+JhsfjFtzvfhY2IQ+wD7u7y8Uft+M34GGxsIluYbpIc=; b=E4wEVN6WahmrF5q7E7bJ/M3g3ZAa85hvP8tJZayRcwvX0CBRARV8owMnQChwJ4SnuL odVi6k5uRGcOP7WhwYsFGWQmybpIcrXd+jY68FG9W/4JniyBhaIWbcywZ9X1uER9Sx+Z +/9waqfiwj5/jEkLdRl+Pn5SS1V6TZ8pVZOu5ku45tPEX6F9rI/CnR1SV72M5Rx43mAq 1uccQ4H0zYeBEsKoK44zpG5NmEE9c+sbvIjOr6sk+pkUBfjg9nEzI9o/+XW3dootHcHl XZFjS2gs89Ide9hMosg29WSWPTWyIYqZyiWJ7pyeRi/Ik8St3gYEYncEMyxuYDQ3wVmv dhAA== X-Gm-Message-State: ANhLgQ0TQcw5avg57Jht22nxYJoW9VnuhfWfj7Ua4HqaaFLFrCR4tl9z P4WiyBaq9mNMfOuQTb6OCJnPULDQSnU= X-Google-Smtp-Source: ADFU+vsDb96ClaaawpkgS9S4UiiYub/+qEilSCqSjBhpC0EoP3AGkg/0At1X5crZV4Fp8mNJIlpuzg== X-Received: by 2002:ac8:6899:: with SMTP id m25mr3215818qtq.93.1583342828479; Wed, 04 Mar 2020 09:27:08 -0800 (PST) Received: from mail-qk1-f176.google.com (mail-qk1-f176.google.com. [209.85.222.176]) by smtp.gmail.com with ESMTPSA id a187sm14376346qkc.61.2020.03.04.09.27.08 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 04 Mar 2020 09:27:08 -0800 (PST) Received: by mail-qk1-f176.google.com with SMTP id b5so2407142qkh.8; Wed, 04 Mar 2020 09:27:08 -0800 (PST) X-Received: by 2002:a37:b984:: with SMTP id j126mr3770242qkf.3.1583342827765; Wed, 04 Mar 2020 09:27:07 -0800 (PST) MIME-Version: 1.0 References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> In-Reply-To: <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> From: Ryan Libby Date: Wed, 4 Mar 2020 09:26:56 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r358439 - head/sys/amd64/include To: Guido Falsi Cc: "Alexander V. Chernikov" , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 48XgmZ5B9hz4dKb X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.71 / 15.00]; NEURAL_HAM_MEDIUM(-0.71)[-0.715,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-Mailman-Approved-At: Wed, 04 Mar 2020 20:12:12 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 17:27:13 -0000 On Wed, Mar 4, 2020 at 3:27 AM Guido Falsi wrote: > > On 02/03/20 18:13, Ryan Libby wrote: > > On Mon, Mar 2, 2020 at 12:45 AM Alexander V. Chernikov wrote: > >> > >> 28.02.2020, 18:32, "Ryan Libby" : > >>> Author: rlibby > >>> Date: Fri Feb 28 18:32:36 2020 > >>> New Revision: 358439 > >>> URL: https://svnweb.freebsd.org/changeset/base/358439 > >>> > >>> Log: > >>> amd64 atomic.h: minor codegen optimization in flag access > >>> > >>> Previously the pattern to extract status flags from inline assembly > >>> blocks was to use setcc in the block to write the flag to a register. > >>> This was suboptimal in a few ways: > >>> - It would lead to code like: sete %cl; test %cl; jne, i.e. a flag > >>> would just be loaded into a register and then reloaded to a flag. > >>> - The setcc would force the block to use an additional register. > >>> - If the client code didn't care for the flag value then the setcc > >>> would be entirely pointless but could not be eliminated by the > >>> optimizer. > >>> > >>> A more modern inline asm construct (since gcc 6 and clang 9) allows for > >> This effectively restricts kernel builds by all older compilers. > >> Is there any chance of making it conditional depending on the compiler version/features? > > > > Yes, it is possible to test for __GCC_ASM_FLAG_OUTPUTS__. It is more > > maintenance effort going forward. If building current with an old cross > > compiler is an important scenario, we can either revert this and the > > following revision or work up a patch to make it conditional. I'll see > > what that might look like. > > > > Actually this causes emulators/virtualbox-ose port to fail to build: > > In file included from /usr/src/sys/sys/systm.h:44: > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=@cce' in asm > ATOMIC_CMPSET(char); > ^ > /usr/include/machine/atomic.h:205:4: note: expanded from macro > 'ATOMIC_CMPSET' > : "=@cce" (res), /* 0 */ \ > ^ > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=@cce' in asm > > (and so on) > > > the virtualbox-ose port is forced to use an older clang version due to > crashes when compiled with newer ones. > > Not sure whose responsibility is to fix this. > > Should I file a bug report on bugzilla? > > -- > Guido Falsi We've discussed whether to provide compatibility code for older compilers here: https://reviews.freebsd.org/D23937 There's a bug tracking virtualbox-ose being pinned to an old compiler here: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236616 I see you have commented on that bug. From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:25:13 2020 Return-Path: Delivered-To: freebsd-emulation@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 9C6B425C1C8 for ; Thu, 5 Mar 2020 04:25:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48XyMs0gjhz3ytP for ; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 5561825C1AD; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) Delivered-To: emulation@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 419BF25C1AB for ; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XyMp72mWz3yqp for ; Thu, 5 Mar 2020 04:25:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 32BE250EA; Thu, 5 Mar 2020 04:25:07 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 2BDFE505A for ; Thu, 5 Mar 2020 04:25:07 +0000 (UTC) (envelope-from bugzilla-noreply@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 48XyMk5psKz3yn0 for ; Thu, 5 Mar 2020 04:25:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 970911610 for ; Thu, 5 Mar 2020 04:25:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0254P6KN022160 for ; Thu, 5 Mar 2020 04:25:06 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0254P6xK022153 for vbox@FreeBSD.org; Thu, 5 Mar 2020 04:25:06 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 244603] emulators/virtualbox-ose: use contemporary GCC instead of old llvm Date: Thu, 05 Mar 2020 04:25:03 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:25:13 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244603 Bug ID: 244603 Summary: emulators/virtualbox-ose: use contemporary GCC instead of old llvm Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: vbox@FreeBSD.org Reporter: kevans@freebsd.org Assignee: vbox@FreeBSD.org Flags: maintainer-feedback?(vbox@FreeBSD.org) Created attachment 212150 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D212150&action= =3Dedit svn(1) diff against the ports tree The bug in PR 236616 resulted in virtualbox getting pinned to llvm7. This is less than ideal, and in-fact has been broken by improvements to machine/atomic.h on x86 that require a more modern compiler. Switch the build to use GCC9. USE_GCC=3D any is not sufficient, as GCC8 doe= sn't support the feature used by atomic.h. The patches that were previously appl= ied if COMPILER_TYPE =3D=3D clang are actually needed by GCC9 as well, so make = those standard patches instead, folding the Config.kmk patches together. We should put some effort into testing llvm10 and working out why llvm brea= ks it, but fixing the build is more important at the moment. Q/A:=20 * portlint (pre-existing issues; none in current patch) * testport (-CURRENT, amd64) * run tested by madpilot@ --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:25:14 2020 Return-Path: Delivered-To: freebsd-emulation@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 9CCE725C1C9 for ; Thu, 5 Mar 2020 04:25:13 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48XyMr6gZlz3ytN for ; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 4853425C1AC; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) Delivered-To: emulation@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 30DF225C1AA for ; Thu, 5 Mar 2020 04:25:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XyMp71q2z3yqm for ; Thu, 5 Mar 2020 04:25:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 32A194EF2; Thu, 5 Mar 2020 04:25:07 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 2BE145178 for ; Thu, 5 Mar 2020 04:25:07 +0000 (UTC) (envelope-from bugzilla-noreply@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 48XyMk50Fdz3ym0 for ; Thu, 5 Mar 2020 04:25:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C408B160F for ; Thu, 5 Mar 2020 04:25:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0254P5uO021816 for ; Thu, 5 Mar 2020 04:25:05 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0254P5Ym021808 for vbox@FreeBSD.org; Thu, 5 Mar 2020 04:25:05 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: maintainer-feedback requested: [Bug 244603] emulators/virtualbox-ose: use contemporary GCC instead of old llvm Date: Thu, 05 Mar 2020 04:25:03 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:25:14 -0000 Bugzilla Automation has asked vbox@FreeBSD.org for maintainer-feedback: Bug 244603: emulators/virtualbox-ose: use contemporary GCC instead of old l= lvm https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244603 --- Description --- The bug in PR 236616 resulted in virtualbox getting pinned to llvm7. This is less than ideal, and in-fact has been broken by improvements to machine/atomic.h on x86 that require a more modern compiler. Switch the build to use GCC9. USE_GCC=3D any is not sufficient, as GCC8 doe= sn't support the feature used by atomic.h. The patches that were previously appl= ied if COMPILER_TYPE =3D=3D clang are actually needed by GCC9 as well, so make = those standard patches instead, folding the Config.kmk patches together. We should put some effort into testing llvm10 and working out why llvm brea= ks it, but fixing the build is more important at the moment. Q/A:=20 * portlint (pre-existing issues; none in current patch) * testport (-CURRENT, amd64) * run tested by madpilot@ From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:28:42 2020 Return-Path: Delivered-To: freebsd-emulation@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 D124525C38F for ; Thu, 5 Mar 2020 04:28:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48XyRt0jNBz43fR for ; Thu, 5 Mar 2020 04:28:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id D2E2E25C38E; Thu, 5 Mar 2020 04:28:41 +0000 (UTC) Delivered-To: emulation@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 D240425C38C for ; Thu, 5 Mar 2020 04:28:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XyRr4V4wz43cq for ; Thu, 5 Mar 2020 04:28:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 5C0148A03; Thu, 5 Mar 2020 04:28:39 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 51B51876F for ; Thu, 5 Mar 2020 04:28:39 +0000 (UTC) (envelope-from bugzilla-noreply@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 48XyRp5mKXz43b0 for ; Thu, 5 Mar 2020 04:28:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3ECCA1619 for ; Thu, 5 Mar 2020 04:28:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0254SbDr040561 for ; Thu, 5 Mar 2020 04:28:37 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0254SbIL040560 for vbox@FreeBSD.org; Thu, 5 Mar 2020 04:28:37 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 244603] emulators/virtualbox-ose: use contemporary GCC instead of old llvm Date: Thu, 05 Mar 2020 04:28:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: blocked Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:28:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244603 Kyle Evans changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |236616 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236616 [Bug 236616] emulators/virtualbox-ose: Unable to create a new machine due to "Unexpected exception: cxxrt::bad_alloc [St9bad_alloc]" --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:28:44 2020 Return-Path: Delivered-To: freebsd-emulation@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 EDFED25C3A6 for ; Thu, 5 Mar 2020 04:28:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48XyRw55Nlz43h2 for ; Thu, 5 Mar 2020 04:28:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 6DA8C25C399; Thu, 5 Mar 2020 04:28:44 +0000 (UTC) Delivered-To: emulation@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 68E0D25C398 for ; Thu, 5 Mar 2020 04:28:44 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XyRt3YkQz43fc for ; Thu, 5 Mar 2020 04:28:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 0255A8B8E; Thu, 5 Mar 2020 04:28:42 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id EBFB58B8A for ; Thu, 5 Mar 2020 04:28:41 +0000 (UTC) (envelope-from bugzilla-noreply@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 48XyRr4lmTz43dD for ; Thu, 5 Mar 2020 04:28:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B38D01620 for ; Thu, 5 Mar 2020 04:28:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0254SdvB040593 for ; Thu, 5 Mar 2020 04:28:39 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0254Sdeq040592 for vbox@FreeBSD.org; Thu, 5 Mar 2020 04:28:39 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 236616] emulators/virtualbox-ose: Unable to create a new machine due to "Unexpected exception: cxxrt::bad_alloc [St9bad_alloc]" Date: Thu, 05 Mar 2020 04:28:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: dependson Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:28:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236616 Kyle Evans changed: What |Removed |Added ---------------------------------------------------------------------------- Depends on| |244603 Referenced Bugs: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244603 [Bug 244603] emulators/virtualbox-ose: use contemporary GCC instead of old = llvm --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:30:38 2020 Return-Path: Delivered-To: freebsd-emulation@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 8F1F525C480 for ; Thu, 5 Mar 2020 04:30:38 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48XyV46F6qz45Hl for ; Thu, 5 Mar 2020 04:30:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id A16DF25C47F; Thu, 5 Mar 2020 04:30:36 +0000 (UTC) Delivered-To: emulation@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 A0F6925C47D for ; Thu, 5 Mar 2020 04:30:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XyV26vm0z45Gb for ; Thu, 5 Mar 2020 04:30:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 908AAA197; Thu, 5 Mar 2020 04:30:34 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 8A107A195 for ; Thu, 5 Mar 2020 04:30:34 +0000 (UTC) (envelope-from bugzilla-noreply@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 48XyV04WMqz45Dg for ; Thu, 5 Mar 2020 04:30:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D84B0162E for ; Thu, 5 Mar 2020 04:30:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0254UVmB043875 for ; Thu, 5 Mar 2020 04:30:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0254UVhO043874 for vbox@FreeBSD.org; Thu, 5 Mar 2020 04:30:31 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 244603] emulators/virtualbox-ose: use contemporary GCC instead of old llvm Date: Thu, 05 Mar 2020 04:30:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: kevans@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_file_loc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:30:38 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244603 Kyle Evans changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://reviews.freebsd.org | |/D23967 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Mar 4 18:28:12 2020 Return-Path: Delivered-To: freebsd-emulation@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 AB24D275696 for ; Wed, 4 Mar 2020 18:28:12 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Xj6x5zJzz3Nfv for ; Wed, 4 Mar 2020 18:28:09 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: by mailman.nyi.freebsd.org (Postfix) id CA79B275695; Wed, 4 Mar 2020 18:28:09 +0000 (UTC) Delivered-To: emulation@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 C9F3B275694 for ; Wed, 4 Mar 2020 18:28:09 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Xj6t5pMJz3NcZ for ; Wed, 4 Mar 2020 18:28:06 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: by freefall.freebsd.org (Postfix) id 5AE221EC3C; Wed, 4 Mar 2020 18:28:06 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 537841EE87; Wed, 4 Mar 2020 18:28:06 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 48Xj6r1G7Bz3Nb2; Wed, 4 Mar 2020 18:28:04 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id A25F53C0199; Wed, 4 Mar 2020 18:28:01 +0000 (UTC) Date: Wed, 4 Mar 2020 18:28:01 +0000 From: Brooks Davis To: Guido Falsi Cc: Ryan Libby , "Alexander V. Chernikov" , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@FreeBSD.org Subject: Re: svn commit: r358439 - head/sys/amd64/include Message-ID: <20200304182801.GA95422@spindle.one-eyed-alien.net> References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> User-Agent: Mutt/1.9.4 (2018-02-28) X-Rspamd-Queue-Id: 48Xj6r1G7Bz3Nb2 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.49 / 15.00]; REPLY(-4.00)[]; NEURAL_SPAM_MEDIUM(0.51)[0.510,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-Mailman-Approved-At: Thu, 05 Mar 2020 06:17:05 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 18:28:12 -0000 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Mar 04, 2020 at 12:27:08PM +0100, Guido Falsi wrote: > On 02/03/20 18:13, Ryan Libby wrote: > > On Mon, Mar 2, 2020 at 12:45 AM Alexander V. Chernikov wrote: > >> > >> 28.02.2020, 18:32, "Ryan Libby" : > >>> Author: rlibby > >>> Date: Fri Feb 28 18:32:36 2020 > >>> New Revision: 358439 > >>> URL: https://svnweb.freebsd.org/changeset/base/358439 > >>> > >>> Log: > >>> amd64 atomic.h: minor codegen optimization in flag access > >>> > >>> Previously the pattern to extract status flags from inline assembly > >>> blocks was to use setcc in the block to write the flag to a registe= r. > >>> This was suboptimal in a few ways: > >>> - It would lead to code like: sete %cl; test %cl; jne, i.e. a flag > >>> would just be loaded into a register and then reloaded to a flag. > >>> - The setcc would force the block to use an additional register. > >>> - If the client code didn't care for the flag value then the setcc > >>> would be entirely pointless but could not be eliminated by the > >>> optimizer. > >>> > >>> A more modern inline asm construct (since gcc 6 and clang 9) allows= for > >> This effectively restricts kernel builds by all older compilers. > >> Is there any chance of making it conditional depending on the compiler= version/features? > >=20 > > Yes, it is possible to test for __GCC_ASM_FLAG_OUTPUTS__. It is more > > maintenance effort going forward. If building current with an old cross > > compiler is an important scenario, we can either revert this and the > > following revision or work up a patch to make it conditional. I'll see > > what that might look like. > >=20 >=20 > Actually this causes emulators/virtualbox-ose port to fail to build: >=20 > In file included from /usr/src/sys/sys/systm.h:44: > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=3D@cce' in asm > ATOMIC_CMPSET(char); > ^ > /usr/include/machine/atomic.h:205:4: note: expanded from macro > 'ATOMIC_CMPSET' > : "=3D@cce" (res), /* 0 */ \ > ^ > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > '=3D@cce' in asm >=20 > (and so on) >=20 >=20 > the virtualbox-ose port is forced to use an older clang version due to > crashes when compiled with newer ones. >=20 > Not sure whose responsibility is to fix this. I suspect that now that we don't care about gcc 4.2.1, we should restructure machine/atomic.h to use __atomic compiler builtins in nearly all cases. We could then conditionalize small sets of mircooptimized assembly versions based on the availability of compiler features if they add any value. On CheriBSD we've switched the RISC-V to use the C versions and are overdue to do the same to MIPS. Reworking things to make this the default would decrease our maintenance burden and it seems unlikely that most of our platforms would benefit from handcode assembly (given the general level of optimization in our lower-tier platforms). -- Brooks --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJeX/MwAAoJEKzQXbSebgfANZEH/2FpA8Ft7xKiaPRT6Bol7o9x l9TMA1FppM58LEHjDF1VySrWvJfkFJTqsx3X6xdByjabTV51KqrPfjupBCV+9T/3 pN7goV9AC43Y8ZhqkIlgz/nGGy547gEEtTV36wRzMRFLx8MhiehlYisUoi87DYZh wQ/XYep8/XKc0Z7HnaxgRWE8mnoUCvyHG52bMMmnCPa/gjLf/klj5nL+XEKucONi QFxedNSBp4CiyR4KjBodMR5WXsWsvFLb4WuZeMdW75A+mE1rN+6/a+vIVg7xQVOr VTUHhPov6Giv11oUIHlWOk12uTh0Wky8cbyvNFPfVPvAnS6HJ8ScQhWkSqG0qvY= =2Yo5 -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- From owner-freebsd-emulation@freebsd.org Thu Mar 5 09:20:47 2020 Return-Path: Delivered-To: freebsd-emulation@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 06B83263733 for ; Thu, 5 Mar 2020 09:20:47 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Y4wt6VXDz3wbD for ; Thu, 5 Mar 2020 09:20:46 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 584E6263732; Thu, 5 Mar 2020 09:20:46 +0000 (UTC) Delivered-To: emulation@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 56338263731 for ; Thu, 5 Mar 2020 09:20:46 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Y4ws36Fsz3wYw for ; Thu, 5 Mar 2020 09:20:45 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 12A4B144C0; Thu, 5 Mar 2020 09:20:45 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id E81A914447 for ; Thu, 5 Mar 2020 09:20:44 +0000 (UTC) (envelope-from pkg-fallout@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 48Y4wr0X9kz3RK9; Thu, 5 Mar 2020 09:20:44 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B5E204F02; Thu, 5 Mar 2020 09:20:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0259KgDl025665; Thu, 5 Mar 2020 09:20:42 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 0259KgrC025659; Thu, 5 Mar 2020 09:20:42 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 5 Mar 2020 09:20:42 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003050920.0259KgrC025659@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 09:20:47 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: zeising@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527801_s358658/logs/virtualbox-ose-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527801_s358658 Log: =>> Building emulators/virtualbox-ose build started at Thu Mar 5 09:15:58 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose package name: virtualbox-ose-5.2.34_1 building for: FreeBSD head-amd64-default-job-12 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 12 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-5.2.34_1: ALSA=off: ALSA audio architecture support DBUS=on: D-Bus IPC system support DEBUG=off: Debug symbols, additional logs and assertions GUESTADDITIONS=off: Build with Guest Additions MANUAL=off: Build with user manual NLS=on: Native language support (requires QT5) PULSEAUDIO=off: PulseAudio sound server support PYTHON=off: Python bindings or support QT5=on: Build with QT5 frontend (requires X11) R0LOGGING=off: Enable R0 logging (requires DEBUG) UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support VPX=off: Use libvpx for video recording WEBSERVICE=on: Build Webservice X11=on: X11 (graphics) support ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --enable-qt5 --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 - pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " QT="" SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " QT_BINDIR="lib/qt5/bin" QT_INCDIR="include/qt5" QT_LIBDIR="lib/qt5" QT_ARCHDIR="lib/qt5" QT_PLUGINDIR="lib/q t5/plugins" QT_LIBEXECDIR="libexec/qt5" QT_IMPORTDIR="lib/qt5/imports" QT_QMLDIR="lib/qt5/qml" QT_DATADIR="share/qt5" QT_DOCDIR="share/doc/qt5" QT_L10NDIR="share/qt5/translations" QT_EXAMPLEDIR="share/examples/qt5" QT_TESTDIR="share/qt5/tests" QT_MKSPECDIR="lib/qt5/mkspecs" QT_QTCHOOSERDIR="etc/xdg/qtchooser" DEBUG="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-12] Installing pkg-1.13.2... [head-amd64-default-job-12] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building ===> Extracting for virtualbox-ose-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_current.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_enable.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_error.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_evaluators.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_feedback.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_flush.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fog.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_getstring.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_hint.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_init.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lighting.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_limits.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_line.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lists.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_multisample.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_occlude.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_pixel.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_point.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_polygon.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_program.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_rasterpos.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_regcombiner.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_stencil.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_teximage.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texdiff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_transform.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_viewport.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_framebuffer.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_glsl.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_buffer_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_current_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_fog_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_hint_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_lighting_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_line_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_multisample_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_polygon_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_regcombiner_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_viewport_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_get.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_isenabled.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bufpool.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/dll.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/error.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/hash.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/matrix.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/mem.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/net.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/pixel.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/process.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/string.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/threads.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vreg.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/blitter.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/compositor.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/htable.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bmpscale.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/errorspu.c kBuild: Compiling VBoxOGLhosterrorspu - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/error/errorspu_init.c kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp:55: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIMemAlloc.h:31: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIDefs.h:35: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34 /out/freebsd.amd64/release/obj/HGSMIGuestR0L! ib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2. 34/out/freebsd.amd64/release/obj/HGSMIGuestR! 0Lib/HGSMIMemAlloc.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose From owner-freebsd-emulation@freebsd.org Wed Mar 4 18:49:16 2020 Return-Path: Delivered-To: freebsd-emulation@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 8F7D4275C79 for ; Wed, 4 Mar 2020 18:49:16 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48XjbH5QJYz4SlS for ; Wed, 4 Mar 2020 18:49:15 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mailman.nyi.freebsd.org (Postfix) id A982F275C65; Wed, 4 Mar 2020 18:49:15 +0000 (UTC) Delivered-To: emulation@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 A9205275C64 for ; Wed, 4 Mar 2020 18:49:15 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XjbG5jF8z4Sjv for ; Wed, 4 Mar 2020 18:49:14 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by freefall.freebsd.org (Postfix) id 700C11A1B3; Wed, 4 Mar 2020 18:49:14 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 5B1011A140; Wed, 4 Mar 2020 18:49:14 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: from mail-qk1-f193.google.com (mail-qk1-f193.google.com [209.85.222.193]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XjbF28bzz4Sg1; Wed, 4 Mar 2020 18:49:13 +0000 (UTC) (envelope-from rlibby@gmail.com) Received: by mail-qk1-f193.google.com with SMTP id j7so2449536qkd.5; Wed, 04 Mar 2020 10:49:13 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=7/JKXD33FfO7O2i4fd06ltBtMN47rKz8oO0ClBGerbA=; b=Qq1xtd1IhHE85+JBYjiMCiwIXXviTQhRIxVBXokmvzpsrDgHyb3eg6eP1+cJLTr912 yVK7zmHnERTx+tngocfMFKsGbS0olDLzyQWMrGMCeXHKrnFMC1LhKvXvlt0P7piMnStL e4vmQrme9zjXCSkFbtCZtnXLVOViA27a/z0OiCGK9hok38/DbNOI2+G3GkRnBVMnywGr icyW3UD9G23vYElHzC5/jjeMAlK9V2ZGBwbbHYwFn+u9KFvzCNZCZCcQ2l9rruWOiiO/ pFdEGW0SZZOihvLx97aVGbaEd523jJ7/aUBowiZarbbfzVULwncCVAtJ7X+guOy54MPJ +Z4g== X-Gm-Message-State: ANhLgQ0ZO67sb7QTZ+3/wJIMm9tpH1lWaoTDXV4roAlzHaJJxBUX/x9r hxGcaBXxfkBzyHrQ2mP+QuOKl9WsbCM= X-Google-Smtp-Source: ADFU+vtX38GQD2oGx8aUhOHmNa1kvl3SFqkQdWNoHG7oHGSuQB801JY5JgxiC2QSqEo+soKTbbD1Kg== X-Received: by 2002:a05:620a:4f7:: with SMTP id b23mr4476794qkh.258.1583347751338; Wed, 04 Mar 2020 10:49:11 -0800 (PST) Received: from mail-qv1-f51.google.com (mail-qv1-f51.google.com. [209.85.219.51]) by smtp.gmail.com with ESMTPSA id h9sm14526890qtq.61.2020.03.04.10.49.11 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 04 Mar 2020 10:49:11 -0800 (PST) Received: by mail-qv1-f51.google.com with SMTP id u10so1268675qvi.2; Wed, 04 Mar 2020 10:49:11 -0800 (PST) X-Received: by 2002:a05:6214:8b:: with SMTP id n11mr3309011qvr.72.1583347750710; Wed, 04 Mar 2020 10:49:10 -0800 (PST) MIME-Version: 1.0 References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> <20200304182801.GA95422@spindle.one-eyed-alien.net> In-Reply-To: <20200304182801.GA95422@spindle.one-eyed-alien.net> From: Ryan Libby Date: Wed, 4 Mar 2020 10:48:59 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r358439 - head/sys/amd64/include To: Brooks Davis Cc: Guido Falsi , "Alexander V. Chernikov" , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 48XjbF28bzz4Sg1 X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.72 / 15.00]; NEURAL_HAM_MEDIUM(-0.72)[-0.723,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-Mailman-Approved-At: Thu, 05 Mar 2020 10:34:48 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Mar 2020 18:49:16 -0000 On Wed, Mar 4, 2020 at 10:28 AM Brooks Davis wrote: > > On Wed, Mar 04, 2020 at 12:27:08PM +0100, Guido Falsi wrote: > > On 02/03/20 18:13, Ryan Libby wrote: > > > On Mon, Mar 2, 2020 at 12:45 AM Alexander V. Chernikov wrote: > > >> > > >> 28.02.2020, 18:32, "Ryan Libby" : > > >>> Author: rlibby > > >>> Date: Fri Feb 28 18:32:36 2020 > > >>> New Revision: 358439 > > >>> URL: https://svnweb.freebsd.org/changeset/base/358439 > > >>> > > >>> Log: > > >>> amd64 atomic.h: minor codegen optimization in flag access > > >>> > > >>> Previously the pattern to extract status flags from inline assembly > > >>> blocks was to use setcc in the block to write the flag to a register. > > >>> This was suboptimal in a few ways: > > >>> - It would lead to code like: sete %cl; test %cl; jne, i.e. a flag > > >>> would just be loaded into a register and then reloaded to a flag. > > >>> - The setcc would force the block to use an additional register. > > >>> - If the client code didn't care for the flag value then the setcc > > >>> would be entirely pointless but could not be eliminated by the > > >>> optimizer. > > >>> > > >>> A more modern inline asm construct (since gcc 6 and clang 9) allows for > > >> This effectively restricts kernel builds by all older compilers. > > >> Is there any chance of making it conditional depending on the compiler version/features? > > > > > > Yes, it is possible to test for __GCC_ASM_FLAG_OUTPUTS__. It is more > > > maintenance effort going forward. If building current with an old cross > > > compiler is an important scenario, we can either revert this and the > > > following revision or work up a patch to make it conditional. I'll see > > > what that might look like. > > > > > > > Actually this causes emulators/virtualbox-ose port to fail to build: > > > > In file included from /usr/src/sys/sys/systm.h:44: > > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > > '=@cce' in asm > > ATOMIC_CMPSET(char); > > ^ > > /usr/include/machine/atomic.h:205:4: note: expanded from macro > > 'ATOMIC_CMPSET' > > : "=@cce" (res), /* 0 */ \ > > ^ > > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > > '=@cce' in asm > > > > (and so on) > > > > > > the virtualbox-ose port is forced to use an older clang version due to > > crashes when compiled with newer ones. > > > > Not sure whose responsibility is to fix this. > > I suspect that now that we don't care about gcc 4.2.1, we should > restructure machine/atomic.h to use __atomic compiler builtins in nearly > all cases. We could then conditionalize small sets of mircooptimized > assembly versions based on the availability of compiler features if they > add any value. > > On CheriBSD we've switched the RISC-V to use the C versions and are > overdue to do the same to MIPS. Reworking things to make this the > default would decrease our maintenance burden and it seems unlikely that > most of our platforms would benefit from handcode assembly (given the > general level of optimization in our lower-tier platforms). > > -- Brooks There's further discussion on that topic in the original review (D23869) and in D23661. From owner-freebsd-emulation@freebsd.org Thu Mar 5 04:36:19 2020 Return-Path: Delivered-To: freebsd-emulation@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 C41AF25C715 for ; Thu, 5 Mar 2020 04:36:19 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48Xycf4P0Fz4CLH for ; Thu, 5 Mar 2020 04:36:18 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: by mailman.nyi.freebsd.org (Postfix) id 8E08325C700; Thu, 5 Mar 2020 04:36:18 +0000 (UTC) Delivered-To: emulation@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 8D62625C6FF for ; Thu, 5 Mar 2020 04:36:18 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Xycc4Qstz4CJB for ; Thu, 5 Mar 2020 04:36:16 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: by freefall.freebsd.org (Postfix) id 8421AF157; Thu, 5 Mar 2020 04:36:15 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 73FBEF394; Thu, 5 Mar 2020 04:36:15 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: from mail-qk1-f195.google.com (mail-qk1-f195.google.com [209.85.222.195]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48XycZ5VZxz4CGM; Thu, 5 Mar 2020 04:36:13 +0000 (UTC) (envelope-from byond.lenox@gmail.com) Received: by mail-qk1-f195.google.com with SMTP id b5so4064072qkh.8; Wed, 04 Mar 2020 20:36:13 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=QxTH7SoTW7Bxd/V+l+WqupzNN2yTXkA7EPQ2Im1yWZ0=; b=PgYqNZNHpMfLyo+yzFm6GGXeID1V4GPw1ZLXoG2tCJ3PjroRw/GIfVLLtIbTxwFwCy ufwpClp6+qNbz4624dOUgLlMfphOaoKWGbp+EfLlgQxwRkJU3CqKNlUsxj/WZ4At0toR T5wQJ/GNt9KZc8Zgyjd/7TgEVosPr5/nDpF+qrIhV9tb/Pdwkm8MZDV5AJ7rDs8NSuiX f4549C7yAok34CW3dWdTZQ5zoKXnZnk9IC5kJC71DN34gDH7liqU3xZkiBgYmhLwME+8 BUkJmL3gIeF4jfIrvUiQXRQed8dXbDKW30K1NpBGPSxVuCgX3jkYV/KrmrIpsfIz7kjN +GUw== X-Gm-Message-State: ANhLgQ0z92UQu0JvZohr98DwlkiKvwuyGW6AEYLb15j0U1s5hAKEEAiU uvC7qBXdKnZ+pl//xIJtOLI/qfic X-Google-Smtp-Source: ADFU+vsEeEAavYl2fRZV7Vwo+780kc2J+v4Xk8EEhEaFMQ5t45ShgkVJX12HLVIHY3jI+JN4aGlvIg== X-Received: by 2002:a05:620a:142b:: with SMTP id k11mr6123664qkj.322.1583382972702; Wed, 04 Mar 2020 20:36:12 -0800 (PST) Received: from mail-qt1-f169.google.com (mail-qt1-f169.google.com. [209.85.160.169]) by smtp.gmail.com with ESMTPSA id y38sm15653351qth.18.2020.03.04.20.36.12 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 04 Mar 2020 20:36:12 -0800 (PST) Received: by mail-qt1-f169.google.com with SMTP id 59so3231557qtb.1; Wed, 04 Mar 2020 20:36:12 -0800 (PST) X-Received: by 2002:ac8:6048:: with SMTP id k8mr5674292qtm.53.1583382971888; Wed, 04 Mar 2020 20:36:11 -0800 (PST) MIME-Version: 1.0 References: <202002281832.01SIWaEL071685@repo.freebsd.org> <5767791583138727@sas1-c7aad230fe87.qloud-c.yandex.net> <3d54ebc3-a511-a239-136d-c0f638a69351@FreeBSD.org> In-Reply-To: From: Kyle Evans Date: Wed, 4 Mar 2020 22:36:00 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r358439 - head/sys/amd64/include To: Ryan Libby Cc: Guido Falsi , "Alexander V. Chernikov" , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" , vbox@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 48XycZ5VZxz4CGM X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-5.78 / 15.00]; NEURAL_HAM_MEDIUM(-0.78)[-0.779,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; TAGGED_FROM(0.00)[] X-Mailman-Approved-At: Thu, 05 Mar 2020 10:57:24 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 04:36:19 -0000 On Wed, Mar 4, 2020 at 11:27 AM Ryan Libby wrote: > > On Wed, Mar 4, 2020 at 3:27 AM Guido Falsi wrote: > > > > On 02/03/20 18:13, Ryan Libby wrote: > > > On Mon, Mar 2, 2020 at 12:45 AM Alexander V. Chernikov wrote: > > >> > > >> 28.02.2020, 18:32, "Ryan Libby" : > > >>> Author: rlibby > > >>> Date: Fri Feb 28 18:32:36 2020 > > >>> New Revision: 358439 > > >>> URL: https://svnweb.freebsd.org/changeset/base/358439 > > >>> > > >>> Log: > > >>> amd64 atomic.h: minor codegen optimization in flag access > > >>> > > >>> Previously the pattern to extract status flags from inline assembly > > >>> blocks was to use setcc in the block to write the flag to a register. > > >>> This was suboptimal in a few ways: > > >>> - It would lead to code like: sete %cl; test %cl; jne, i.e. a flag > > >>> would just be loaded into a register and then reloaded to a flag. > > >>> - The setcc would force the block to use an additional register. > > >>> - If the client code didn't care for the flag value then the setcc > > >>> would be entirely pointless but could not be eliminated by the > > >>> optimizer. > > >>> > > >>> A more modern inline asm construct (since gcc 6 and clang 9) allows for > > >> This effectively restricts kernel builds by all older compilers. > > >> Is there any chance of making it conditional depending on the compiler version/features? > > > > > > Yes, it is possible to test for __GCC_ASM_FLAG_OUTPUTS__. It is more > > > maintenance effort going forward. If building current with an old cross > > > compiler is an important scenario, we can either revert this and the > > > following revision or work up a patch to make it conditional. I'll see > > > what that might look like. > > > > > > > Actually this causes emulators/virtualbox-ose port to fail to build: > > > > In file included from /usr/src/sys/sys/systm.h:44: > > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > > '=@cce' in asm > > ATOMIC_CMPSET(char); > > ^ > > /usr/include/machine/atomic.h:205:4: note: expanded from macro > > 'ATOMIC_CMPSET' > > : "=@cce" (res), /* 0 */ \ > > ^ > > /usr/include/machine/atomic.h:230:1: error: invalid output constraint > > '=@cce' in asm > > > > (and so on) > > > > > > the virtualbox-ose port is forced to use an older clang version due to > > crashes when compiled with newer ones. > > > > Not sure whose responsibility is to fix this. > > > > Should I file a bug report on bugzilla? > > > > -- > > Guido Falsi > > We've discussed whether to provide compatibility code for older compilers here: > https://reviews.freebsd.org/D23937 > > There's a bug tracking virtualbox-ose being pinned to an old compiler here: > https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236616 > > I see you have commented on that bug. I've opened https://reviews.freebsd.org/D23967 and PR 244603 specifically for coercing the port to use GCC9 instead, which does indeed fix the breakage. Once that lands, I'll investigate 236616 some more to see if newer llvm (including 10) is still broken here. Thanks, Kyle Evans From owner-freebsd-emulation@freebsd.org Thu Mar 5 11:54:03 2020 Return-Path: Delivered-To: freebsd-emulation@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 2FE5A2666D7 for ; Thu, 5 Mar 2020 11:54:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Y8Kl0bqRz44X5 for ; Thu, 5 Mar 2020 11:54:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 0FBEC2666D6; Thu, 5 Mar 2020 11:54:03 +0000 (UTC) Delivered-To: emulation@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 0F5D62666D5 for ; Thu, 5 Mar 2020 11:54:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Y8Kk5tb9z44WT for ; Thu, 5 Mar 2020 11:54:02 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 7D2165475; Thu, 5 Mar 2020 11:54:02 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id E754E5541 for ; Thu, 5 Mar 2020 11:54:01 +0000 (UTC) (envelope-from pkg-fallout@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 48Y8Kj3F0Wz44SS; Thu, 5 Mar 2020 11:54:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EA01A6C66; Thu, 5 Mar 2020 11:54:00 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 025Bs0dM021811; Thu, 5 Mar 2020 11:54:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 025Bs0iW021810; Thu, 5 Mar 2020 11:54:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 5 Mar 2020 11:54:00 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003051154.025Bs0iW021810@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose-nox11] Failed for virtualbox-ose-nox11-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2020 11:54:03 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527801_s358658/logs/virtualbox-ose-nox11-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527801_s358658 Log: =>> Building emulators/virtualbox-ose-nox11 build started at Thu Mar 5 11:49:57 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose-nox11 package name: virtualbox-ose-nox11-5.2.34_1 building for: FreeBSD head-amd64-default-job-15 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 15 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-nox11-5.2.34_1: PYTHON=off: Python bindings or support UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support WEBSERVICE=on: Build Webservice ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-dbus --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --build-headless --disable-qt --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INST ALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" QT="@comment " SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/loc al LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-15] Installing pkg-1.13.2... [head-amd64-default-job-15] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-nox11-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building ===> Extracting for virtualbox-ose-nox11-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/share/kBuild/tools/GXX3.kmk - not found ===> Installing existing package /packages/All/kBuild-0.1.9998_13.txz [head-amd64-default-job-15] Installing kBuild-0.1.9998_13... [head-amd64-default-job-15] `-- Installing gcc9-9.2.0_1... [head-amd64-default-job-15] | `-- Installing binutils-2.33.1_2,1... [head-amd64-default-job-15] | | `-- Installing gettext-runtime-0.20.1... [head-amd64-default-job-15] | | `-- Installing indexinfo-0.3.1... [head-amd64-default-job-15] | | `-- Extracting indexinfo-0.3.1: .... done [head-amd64-default-job-15] | | `-- Extracting gettext-runtime-0.20.1: .......... done [head-amd64-default-job-15] | `-- Extracting binutils-2.33.1_2,1: .......... done kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/generic/errvars-generic.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/misc/setjmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/bzero.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/mempcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memmove.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memset.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strncpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strlen.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/time/timesupref.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/adddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/anddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/cmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/divdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/iordi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/moddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/muldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/negdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/notdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/qdivrem.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/subdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ucmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivmoddi4.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/umoddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/xordi3.c kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling StorageDbgLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Debug/VDDbgIoLog.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDPlugin.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs2.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VMDK.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/DMG.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Parallels.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/ISCSI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/RAW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QED.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QCOW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHDX.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/CUE.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VISO.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VCICache.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/SSM.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/CPUMR3Db.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Network/SrvIntNetR0.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Bus/SrvPciRawR0.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedNoCrt.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/asm/ASMMemFirstMismatchingU8.asm kBuild: Compiling SUPRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:48:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register const uint8_t *pu8 = (const uint8_t *)pszSerial; ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:49:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint64_t u64 = UINT64_C(14695981039346656037); ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:52:9: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint8_t u8 = *pu8; ^~~~~~~~~ 3 warnings generated. kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBFilter.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGConsole.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEval.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCBuiltInSymbols.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdHlp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdWorkers.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCommands.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCFunctions.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEmulateCodeView.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCOps.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCGdbRemoteStub.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCTcp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCScreenAscii.cpp kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdir s/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/v irtualbox-ose-nox11/work/VirtualBox-5.2.34/o! ut/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose-nox11 From owner-freebsd-emulation@freebsd.org Fri Mar 6 06:38:28 2020 Return-Path: Delivered-To: freebsd-emulation@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 BE50C25F26C for ; Fri, 6 Mar 2020 06:38:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48YdH80htsz4K2t for ; Fri, 6 Mar 2020 06:38:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id E9E4225F25D; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) Delivered-To: emulation@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 E902B25F25B for ; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@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 48YdH73tbMz4K2V for ; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 751561C0B9 for ; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0266cRXD049511 for ; Fri, 6 Mar 2020 06:38:27 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0266cRhO049510 for emulation@FreeBSD.org; Fri, 6 Mar 2020 06:38:27 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: maintainer-feedback requested: [Bug 244624] audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative Date: Fri, 06 Mar 2020 06:38:27 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Mar 2020 06:38:28 -0000 Bugzilla Automation has asked freebsd-emulation mail= ing list for maintainer-feedback: Bug 244624: audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244624 --- Description --- audio/linux-c7-alsa-plugins-pulseaudio installs the following symlink: /compat/linux/etc/alsa/conf.d/50-pulseaudio.conf -> /usr/share/alsa/alsa.conf.d/50-pulseaudio.conf This does not work as in case of symlinks there's no translation. This bre= aks several "Enhanced Edition" games (BG, PST, IWD) -- the game starts, but the= re's no sound: AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse" ALSA lib conf.c:3652:(config_file_open) cannot access file /etc/alsa/conf.d/50-pulseaudio.conf ALSA lib conf.c:3572:(snd_config_hooks_call) function snd_config_hook_load returned error: No such file or directory ALSA lib conf.c:4026:(snd_config_update_r) hooks failed, removing configura= tion AL lib: (EE) ALCplaybackAlsa_open: Could not open playback device 'default'= : No such file or directory Copying the target file instead of symlink helps, as well as the "fixed" version of symlink: /compat/linux/etc/alsa/conf.d/50-pulseaudio.conf -> ../../../usr/share/alsa/alsa.conf.d/50-pulseaudio.conf I'm still getting the warning, but sound works: AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse" Yes, it could be probably fixed in linuxolator, but as it's the only such symlink within the linux-c7 ports it should be easier to fix the port inste= ad.=20 I'm not sure how about the proper changes to the port, so no patch provided. From owner-freebsd-emulation@freebsd.org Fri Mar 6 06:38:29 2020 Return-Path: Delivered-To: freebsd-emulation@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 3A12125F279 for ; Fri, 6 Mar 2020 06:38:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48YdH84Th4z4K3T for ; Fri, 6 Mar 2020 06:38:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 33DD825F267; Fri, 6 Mar 2020 06:38:28 +0000 (UTC) Delivered-To: emulation@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 2F9AE25F266 for ; Fri, 6 Mar 2020 06:38:28 +0000 (UTC) (envelope-from bugzilla-noreply@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 48YdH75YDLz4K2c for ; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF5B01C0BA for ; Fri, 6 Mar 2020 06:38:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 0266cRrt049517 for ; Fri, 6 Mar 2020 06:38:27 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 0266cRJH049516 for emulation@FreeBSD.org; Fri, 6 Mar 2020 06:38:27 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 244624] audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative Date: Fri, 06 Mar 2020 06:38:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yuripv@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Mar 2020 06:38:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244624 Bug ID: 244624 Summary: audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: emulation@FreeBSD.org Reporter: yuripv@FreeBSD.org Flags: maintainer-feedback?(emulation@FreeBSD.org) Assignee: emulation@FreeBSD.org audio/linux-c7-alsa-plugins-pulseaudio installs the following symlink: /compat/linux/etc/alsa/conf.d/50-pulseaudio.conf -> /usr/share/alsa/alsa.conf.d/50-pulseaudio.conf This does not work as in case of symlinks there's no translation. This bre= aks several "Enhanced Edition" games (BG, PST, IWD) -- the game starts, but the= re's no sound: AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse" ALSA lib conf.c:3652:(config_file_open) cannot access file /etc/alsa/conf.d/50-pulseaudio.conf ALSA lib conf.c:3572:(snd_config_hooks_call) function snd_config_hook_load returned error: No such file or directory ALSA lib conf.c:4026:(snd_config_update_r) hooks failed, removing configura= tion AL lib: (EE) ALCplaybackAlsa_open: Could not open playback device 'default'= : No such file or directory Copying the target file instead of symlink helps, as well as the "fixed" version of symlink: /compat/linux/etc/alsa/conf.d/50-pulseaudio.conf -> ../../../usr/share/alsa/alsa.conf.d/50-pulseaudio.conf I'm still getting the warning, but sound works: AL lib: (WW) alc_initconfig: Failed to initialize backend "pulse" Yes, it could be probably fixed in linuxolator, but as it's the only such symlink within the linux-c7 ports it should be easier to fix the port inste= ad.=20 I'm not sure how about the proper changes to the port, so no patch provided. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Mar 6 12:47:07 2020 Return-Path: Delivered-To: freebsd-emulation@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 9B106267FF7 for ; Fri, 6 Mar 2020 12:47:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48YnSW0tpRz4cbB for ; Fri, 6 Mar 2020 12:47:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 1103B267FF6; Fri, 6 Mar 2020 12:47:07 +0000 (UTC) Delivered-To: emulation@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 108A3267FF5 for ; Fri, 6 Mar 2020 12:47:07 +0000 (UTC) (envelope-from bugzilla-noreply@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 48YnSV4M5Sz4cZR for ; Fri, 6 Mar 2020 12:47:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 829A620499 for ; Fri, 6 Mar 2020 12:47:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 026Cl6TP055673 for ; Fri, 6 Mar 2020 12:47:06 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from bugzilla@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 026Cl6UD055668 for emulation@FreeBSD.org; Fri, 6 Mar 2020 12:47:06 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: bugzilla set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 244624] audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative Date: Fri, 06 Mar 2020 12:47:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Mar 2020 12:47:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244624 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: danfe Date: Fri Mar 6 12:47:02 UTC 2020 New revision: 527878 URL: https://svnweb.freebsd.org/changeset/ports/527878 Log: Replace the symlink to an absolute patch, which escapes Linuxolator's translation, to a relative one. This allows to unbreak several "Enhanced Edition" games (BG, PST, IWD) when previously, the game started, but there was no sound. PR: 244624 Changes: head/audio/linux-c7-alsa-plugins-pulseaudio/Makefile --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Mar 6 12:53:02 2020 Return-Path: Delivered-To: freebsd-emulation@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 A89862681B9 for ; Fri, 6 Mar 2020 12:53:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48YnbL2xs2z3QJm for ; Fri, 6 Mar 2020 12:53:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id 5D1D72681B7; Fri, 6 Mar 2020 12:53:02 +0000 (UTC) Delivered-To: emulation@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 5BB442681B6 for ; Fri, 6 Mar 2020 12:53:02 +0000 (UTC) (envelope-from bugzilla-noreply@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 48YnbK6D9Mz3QJ7 for ; Fri, 6 Mar 2020 12:53:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B39A20676 for ; Fri, 6 Mar 2020 12:53:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 026Cr1iO017261 for ; Fri, 6 Mar 2020 12:53:01 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 026Cr1i7017260 for emulation@FreeBSD.org; Fri, 6 Mar 2020 12:53:01 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 244624] audio/linux-c7-alsa-plugins-pulseaudio: conf symlink should be relative Date: Fri, 06 Mar 2020 12:53:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: danfe@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: resolution cc bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Mar 2020 12:53:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D244624 Alexey Dokuchaev changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED CC| |danfe@FreeBSD.org Status|New |Closed --- Comment #2 from Alexey Dokuchaev --- Absolute symlinks are evil indeed, thanks for the report. Should be fixed = as of ports r527878. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Mar 6 20:55:04 2020 Return-Path: Delivered-To: freebsd-emulation@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 08C10250A54 for ; Fri, 6 Mar 2020 20:55:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48Z0HV6j9lz3CRD for ; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id B6077250A53; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) Delivered-To: emulation@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 B3798250A52 for ; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48Z0HV3Fr5z3CQ4 for ; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 25B33E95F; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 21409E95E for ; Fri, 6 Mar 2020 20:55:02 +0000 (UTC) (envelope-from bugzilla-noreply@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 48Z0HT3Zmdz3CNB for ; Fri, 6 Mar 2020 20:55:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4EE1D26030 for ; Fri, 6 Mar 2020 20:55:01 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 026Kt1Ka041893 for ; Fri, 6 Mar 2020 20:55:01 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 026Kt15U041892 for vbox@FreeBSD.org; Fri, 6 Mar 2020 20:55:01 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 234878] emulators/virtualbox-ose: Update to 6.1 Date: Fri, 06 Mar 2020 20:54:56 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lobo@bsd.com.br X-Bugzilla-Status: In Progress X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Mar 2020 20:55:04 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D234878 --- Comment #56 from Mario Lobo --- (In reply to Hadi from comment #55) 6.1.0 is still unstable. The last stable version I compiled and I use is 6.= 0.8. The ports version is still 5.x, and VBox is already up to 6.1.4. I managed to compile version 6.1.0. It runs fine and it is pretty fast, at least in short tests. The problem is that instead of shutting down the mach= ine, it aborts them, no matter what way you used to shut them down. The same happened with Jkim's patch for it. I wish I had the knowledge to "correct" the code but unfortunately I don't,= so I guess I'll just have to wait. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sat Mar 7 10:47:43 2020 Return-Path: Delivered-To: freebsd-emulation@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 E86C6261850 for ; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 48ZLmH4Q6vz3Q3b for ; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 781D426184E; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) Delivered-To: emulation@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 5F72826184D for ; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48ZLmH29HDz3Q2w for ; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 183B012A73; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 11A8912CB8 for ; Sat, 7 Mar 2020 10:47:43 +0000 (UTC) (envelope-from pkg-fallout@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 48ZLmG31cVz3Q1n; Sat, 7 Mar 2020 10:47:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 31EC97B34; Sat, 7 Mar 2020 10:47:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 027AlghJ097087; Sat, 7 Mar 2020 10:47:42 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 027Algou097069; Sat, 7 Mar 2020 10:47:42 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 7 Mar 2020 10:47:42 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003071047.027Algou097069@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Mar 2020 10:47:44 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: zeising@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527914_s358728/logs/virtualbox-ose-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527914_s358728 Log: =>> Building emulators/virtualbox-ose build started at Sat Mar 7 10:42:48 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose package name: virtualbox-ose-5.2.34_1 building for: FreeBSD head-amd64-default-job-07 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 526589 2020-02-20 21:15:44Z zeising $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 07 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-5.2.34_1: ALSA=off: ALSA audio architecture support DBUS=on: D-Bus IPC system support DEBUG=off: Debug symbols, additional logs and assertions GUESTADDITIONS=off: Build with Guest Additions MANUAL=off: Build with user manual NLS=on: Native language support (requires QT5) PULSEAUDIO=off: PulseAudio sound server support PYTHON=off: Python bindings or support QT5=on: Build with QT5 frontend (requires X11) R0LOGGING=off: Enable R0 logging (requires DEBUG) UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support VPX=off: Use libvpx for video recording WEBSERVICE=on: Build Webservice X11=on: X11 (graphics) support ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --enable-qt5 --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib QT_SELECT=qt5 QMAKEMODULES="/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/mkspecs/modules:/usr/local/lib/qt5/mkspecs/modules" SDL_CONFIG=/usr/local/bin/sdl-config XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 - pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " QT="" SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " QT_BINDIR="lib/qt5/bin" QT_INCDIR="include/qt5" QT_LIBDIR="lib/qt5" QT_ARCHDIR="lib/qt5" QT_PLUGINDIR="lib/q t5/plugins" QT_LIBEXECDIR="libexec/qt5" QT_IMPORTDIR="lib/qt5/imports" QT_QMLDIR="lib/qt5/qml" QT_DATADIR="share/qt5" QT_DOCDIR="share/doc/qt5" QT_L10NDIR="share/qt5/translations" QT_EXAMPLEDIR="share/examples/qt5" QT_TESTDIR="share/qt5/tests" QT_MKSPECDIR="lib/qt5/mkspecs" QT_QTCHOOSERDIR="etc/xdg/qtchooser" DEBUG="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="" NO_QT5="@comment " R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-07] Installing pkg-1.13.2... [head-amd64-default-job-07] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-5.2.34_1 for building ===> Extracting for virtualbox-ose-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_current.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_diff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_enable.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_error.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_evaluators.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_feedback.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fence.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_flush.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_fog.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_getstring.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_hint.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_init.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lighting.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_limits.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_line.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_lists.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_multisample.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_occlude.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_pixel.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_point.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_polygon.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_program.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_rasterpos.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_regcombiner.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_stencil.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_teximage.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_texdiff.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_transform.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_viewport.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_framebuffer.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_glsl.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_buffer_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_current_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_fog_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_hint_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_lighting_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_line_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_multisample_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_polygon_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_regcombiner_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_viewport_gen.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_get.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/state_isenabled.c kBuild: Compiling VBoxOGLhostcrstate - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/state_tracker/state_snapshot.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bufpool.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/dll.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/error.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/hash.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/matrix.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/mem.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/net.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/pixel.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/process.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/string.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/threads.c kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vreg.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/blitter.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/compositor.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/htable.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/bmpscale.cpp kBuild: Compiling VBoxOGLhostcrutil - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/util/vboxhgcm.c kBuild: Generating python - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/VBoxOGLgen/errorspu.c kBuild: Compiling VBoxOGLhosterrorspu - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/OpenGL/error/errorspu_init.c kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp:55: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIMemAlloc.h:31: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/HGSMIDefs.h:35: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34 /out/freebsd.amd64/release/obj/HGSMIGuestR0L! ib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdirs/usr/ports/ emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2. 34/out/freebsd.amd64/release/obj/HGSMIGuestR! 0Lib/HGSMIMemAlloc.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMIMemAlloc.o /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMIMemAlloc.cpp kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose From owner-freebsd-emulation@freebsd.org Sat Mar 7 14:16:01 2020 Return-Path: Delivered-To: freebsd-emulation@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 CD6DF266C6C for ; Sat, 7 Mar 2020 14:16:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 48ZRNd5XN1z3DpS for ; Sat, 7 Mar 2020 14:16:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.nyi.freebsd.org (Postfix) id 59BC8266C6B; Sat, 7 Mar 2020 14:16:01 +0000 (UTC) Delivered-To: emulation@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 596C2266C6A for ; Sat, 7 Mar 2020 14:16:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48ZRNd1lRYz3DnX for ; Sat, 7 Mar 2020 14:16:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id E54A21FF8B; Sat, 7 Mar 2020 14:16:00 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [96.47.72.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id E02C11FD7F for ; Sat, 7 Mar 2020 14:16:00 +0000 (UTC) (envelope-from pkg-fallout@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 48ZRNc37yVz3DmS; Sat, 7 Mar 2020 14:16:00 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (beefy18.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1437AA296; Sat, 7 Mar 2020 14:16:00 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy18.nyi.freebsd.org (localhost [127.0.0.1]) by beefy18.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id 027EG0Bx013628; Sat, 7 Mar 2020 14:16:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy18.nyi.freebsd.org (8.15.2/8.15.2/Submit) id 027EG0GQ013609; Sat, 7 Mar 2020 14:16:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 7 Mar 2020 14:16:00 GMT From: pkg-fallout@FreeBSD.org Message-Id: <202003071416.027EG0GQ013609@beefy18.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose-nox11] Failed for virtualbox-ose-nox11-5.2.34_1 in build Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Mar 2020 14:16:01 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Log URL: http://beefy18.nyi.freebsd.org/data/head-amd64-default/p527914_s358728/logs/virtualbox-ose-nox11-5.2.34_1.log Build URL: http://beefy18.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p527914_s358728 Log: =>> Building emulators/virtualbox-ose-nox11 build started at Sat Mar 7 14:12:06 UTC 2020 port directory: /usr/ports/emulators/virtualbox-ose-nox11 package name: virtualbox-ose-nox11-5.2.34_1 building for: FreeBSD head-amd64-default-job-08 13.0-CURRENT FreeBSD 13.0-CURRENT 1300082 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose-nox11/Makefile 514643 2019-10-17 03:02:36Z jkim $ Poudriere version: 3.2.8-5-gc81843e5 Host OSVERSION: 1300076 Jail OSVERSION: 1300082 Job Id: 08 !!! Jail is newer than host. (Jail: 1300082, Host: 1300076) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1300082 UNAME_v=FreeBSD 13.0-CURRENT 1300082 UNAME_r=13.0-CURRENT BLOCKSIZE=K STATUS=1 HOME=/root PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin LOCALBASE=/usr/local USER=root LIBEXECPREFIX=/usr/local/libexec/poudriere POUDRIERE_VERSION=3.2.8-5-gc81843e5 MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref POUDRIERE_BUILD_TYPE=bulk PACKAGE_BUILDING=yes SAVED_TERM= PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool P_PORTS_FEATURES=FLAVORS SELECTED_OPTIONS MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere OLDPWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p SCRIPTPATH=/usr/local/share/poudriere/bulk.sh POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= FLAVOR= DEPENDS_ARGS= MAKE_ARGS= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-nox11-5.2.34_1: PYTHON=off: Python bindings or support UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support WEBSERVICE=on: Build Webservice ===> Use 'make config' to modify these settings ---End OPTIONS List--- --MAINTAINER-- vbox@FreeBSD.org --End MAINTAINER-- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="/usr/local/bin/clang70" --with-g++="/usr/local/bin/clang++70" --disable-alsa --disable-dbus --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --build-headless --disable-qt --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin SHELL=/bin/sh CONFIG_SHELL=/bin/sh LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 --End CONFIGURE_ENV-- --MAKE_ENV-- OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work TMPDIR="/tmp" PATH=/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/.bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 PREFIX=/usr/local LOCALBASE=/usr/local CC="/usr/local/bin/clang70" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing " CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS="-lpthread -fstack-protector-strong " LIBS="" CXX="/usr/local/bin/clang++70" CXXFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong -fno-strict-aliasing -DLIBICONV_PLUG " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INST ALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.2.34 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" QT="@comment " SDK="" I386="@comment " ARCH="freebsd.amd64" GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd13 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=13.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/loc al LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" DBUS="@comment " NO_DBUS="" DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="@comment " NO_NLS="" PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" QT5="@comment " NO_QT5="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="@comment " NO_X11="" PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/virtualbox-ose DOCSDIR=/usr/local/share/doc/virtualbox-ose EXAMPLESDIR=/usr/local/share/examples/virtualbox-ose WWWDIR=/usr/local/www/virtualbox-ose ETCDIR=/usr/local/etc/virtualbox-ose --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes PACKAGE_BUILDING_FLAVORS=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### _CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _ALTCCVERSION_921dbbb2=none _CXXINTERNAL_acaad9ca=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--hash-style=both" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" CC_OUTPUT_921dbbb2_58173849=yes CC_OUTPUT_921dbbb2_9bdba57c=yes CC_OUTPUT_921dbbb2_6a4fe7f5=yes CC_OUTPUT_921dbbb2_6bcac02b=yes CC_OUTPUT_921dbbb2_67d20829=yes CC_OUTPUT_921dbbb2_bfa62e83=yes CC_OUTPUT_921dbbb2_f0b4d593=yes CC_OUTPUT_921dbbb2_308abb44=yes CC_OUTPUT_921dbbb2_f00456e5=yes CC_OUTPUT_921dbbb2_65ad290d=yes CC_OUTPUT_921dbbb2_f2776b26=yes CC_OUTPUT_921dbbb2_b2657cc3=yes CC_OUTPUT_921dbbb2_380987f7=yes CC_OUTPUT_921dbbb2_160933ec=yes CC_OUTPUT_921dbbb2_fb62803b=yes _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 9.0.1 (git@github.com:llvm/llvm-project.git c1a0a213378a458fbea1a5c77b315c7dce08fd05) (based on LLVM 9.0.1) Target: x86_64-unknown-freebsd13.0 Thread model: posix InstalledDir: /usr/bin _OBJC_ALTCCVERSION_921dbbb2=none ARCH=amd64 OPSYS=FreeBSD _OSRELEASE=13.0-CURRENT OSREL=13.0 OSVERSION=1300082 PYTHONBASE=/usr/local HAVE_COMPAT_IA32_KERN=YES CONFIGURE_MAX_CMD_LEN=524288 HAVE_PORTS_ENV=1 #### Misc Poudriere #### GID=0 UID=0 ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== ===> License GPLv2 accepted by the user =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.13.2.txz [head-amd64-default-job-08] Installing pkg-1.13.2... [head-amd64-default-job-08] Extracting pkg-1.13.2: .......... done ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of virtualbox-ose-nox11-5.2.34_1 =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License GPLv2 accepted by the user ===> Fetching all distfiles required by virtualbox-ose-nox11-5.2.34_1 for building ===> Extracting for virtualbox-ose-nox11-5.2.34_1 => SHA256 Checksum OK for VirtualBox-5.2.34.tar.bz2. =========================================================================== =================================================== ===> virtualbox-ose-nox11-5.2.34_1 depends on file: /usr/local/share/kBuild/tools/GXX3.kmk - not found ===> Installing existing package /packages/All/kBuild-0.1.9998_13.txz [head-amd64-default-job-08] Installing kBuild-0.1.9998_13... [head-amd64-default-job-08] `-- Installing gcc9-9.2.0_1... [head-amd64-default-job-08] | `-- Installing binutils-2.33.1_2,1... [head-amd64-default-job-08] | | `-- Installing gettext-runtime-0.20.1... [head-amd64-default-job-08] | | `-- Installing indexinfo-0.3.1... [head-amd64-default-job-08] | | `-- Extracting indexinfo-0.3.1: .... done [head-amd64-default-job-08] | | `-- Extracting gettext-runtime-0.20.1: .......... done [head-amd64-default-job-08] | `-- Extracting binutils-2.33.1_2,1: .......... done kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/generic/errvars-generic.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/misc/setjmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/bzero.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/mempcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memmove.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/memset.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strchr.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strncpy.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strcmp.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/string/strlen.asm kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/time/timesupref.cpp kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/adddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/anddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ashrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/cmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/divdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/iordi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/lshrdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/moddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/muldi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/negdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/notdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/qdivrem.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/subdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/ucmpdi2.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivdi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/udivmoddi4.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/umoddi3.c kBuild: Compiling RuntimeRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/math/gcc/xordi3.c kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/Disasm.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatBytes.cpp kBuild: Compiling DisasmR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmFormatYasm.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmCoreR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmCore.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmReg.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTables.cpp kBuild: Compiling DisasmR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Disassembler/DisasmTablesX64.cpp kBuild: Compiling StorageDbgLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Debug/VDDbgIoLog.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDPlugin.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDIfVfs2.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VDI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VMDK.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHD.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/DMG.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/Parallels.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/ISCSI.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/RAW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QED.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/QCOW.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VHDX.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/CUE.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VISO.cpp kBuild: Compiling StorageLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Storage/VCICache.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/SSM.cpp kBuild: Compiling SSMStandalone - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/VMM/VMMR3/CPUMR3Db.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Network/SrvIntNetR0.cpp kBuild: Compiling ServicesR0 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Devices/Bus/SrvPciRawR0.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3 - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLib.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibLdr.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibSem.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibTracerA.asm kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedIPRT.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3Static - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPR3HardenedNoCrt.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp kBuild: Compiling SUPR3HardenedStatic - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Runtime/common/asm/ASMMemFirstMismatchingU8.asm kBuild: Compiling SUPRC - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/Support/SUPLibAll.cpp kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:48:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register const uint8_t *pu8 = (const uint8_t *)pszSerial; ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:49:5: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint64_t u64 = UINT64_C(14695981039346656037); ^~~~~~~~~ /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBLib.cpp:52:9: warning: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register] register uint8_t u8 = *pu8; ^~~~~~~~~ 3 warnings generated. kBuild: Compiling USBLib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/HostDrivers/VBoxUSB/USBFilter.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGConsole.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEval.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCBuiltInSymbols.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdHlp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCmdWorkers.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCCommands.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCFunctions.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCEmulateCodeView.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCOps.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCGdbRemoteStub.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCTcp.cpp kBuild: Compiling Debugger - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/Debugger/DBGCScreenAscii.cpp kBuild: Compiling HGSMIGuestR0Lib - /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp clang-7: warning: argument unused during compilation: '--param inline-unit-growth=100' [-Wunused-command-line-argument] clang-7: warning: argument unused during compilation: '--param large-function-growth=1000' [-Wunused-command-line-argument] In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp:38: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics/VBoxVideoIPRT.h:32: In file included from /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/iprt/string.h:45: In file included from /usr/src/sys/sys/libkern.h:41: In file included from /usr/src/sys/sys/systm.h:44: /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(char); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:230:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(short); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:231:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(int); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:232:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm ATOMIC_CMPSET(long); ^ /usr/include/machine/atomic.h:205:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:233:1: error: invalid output constraint '=@cce' in asm /usr/include/machine/atomic.h:222:4: note: expanded from macro 'ATOMIC_CMPSET' : "=@cce" (res), /* 0 */ \ ^ /usr/include/machine/atomic.h:280:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:296:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:312:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ /usr/include/machine/atomic.h:328:4: error: invalid output constraint '=@ccc' in asm : "=@ccc" (res), /* 0 */ ^ 12 errors generated. kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o] Error 1 The failing command: @/usr/local/bin/clang++70 -c -O2 -fno-exceptions -fno-rtti -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -fdiagnostics-show-option -Wno-unused-parameter -Wno-language-extension-token -Wno-gnu-folding-constant -Wno-gnu-anonymous-struct -Wno-string-plus-int -Wno-nested-anon-types -Wno-variadic-macros -Wpointer-arith -Winline -O2 -fno-strict-aliasing -fno-common -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -include /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/VBoxGuestMangling.h -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include/VBox/Graphics -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/wrkdir s/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/dtrace -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/include -I/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_REM -DVBOX_WITH_RAW_MODE -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -DVBOX_WITH_DEBUGGER -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DIN_RING0 -DIN_RT_R0 -DHC_ARCH_BITS=64 -DGC_ARCH_BITS=64 -D_KERNEL -DKLD_MODULE -DIN_GUEST -DIN_GUEST_R0 -Wp,-MD,/wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o.dep -Wp,-MT,/wrkdirs/usr/ports/emulators/v irtualbox-ose-nox11/work/VirtualBox-5.2.34/o! ut/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o -Wp,-MP -o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/out/freebsd.amd64/release/obj/HGSMIGuestR0Lib/HGSMICommon.o /wrkdirs/usr/ports/emulators/virtualbox-ose-nox11/work/VirtualBox-5.2.34/src/VBox/GuestHost/HGSMI/HGSMICommon.cpp kmk: *** Waiting for unfinished jobs.... kmk: *** Exiting with status 2 *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose-nox11