From owner-freebsd-ports-bugs@freebsd.org Sun Feb 4 10:33:56 2018 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2890EC95ED for ; Sun, 4 Feb 2018 10:33:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7B1A6790D3 for ; Sun, 4 Feb 2018 10:33:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id ADC521B1E2 for ; Sun, 4 Feb 2018 10:33:54 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id w14AXs5K027411 for ; Sun, 4 Feb 2018 10:33:54 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id w14AXsMS027410 for freebsd-ports-bugs@FreeBSD.org; Sun, 4 Feb 2018 10:33:54 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: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 225660] lang/swift missing dependency Date: Sun, 04 Feb 2018 10:33:53 +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: fnoyanisi@yahoo.com X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: swills@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-ports-bugs@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Feb 2018 10:33:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D225660 Bug ID: 225660 Summary: lang/swift missing dependency Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: swills@FreeBSD.org Reporter: fnoyanisi@yahoo.com Assignee: swills@FreeBSD.org Flags: maintainer-feedback?(swills@FreeBSD.org) Hi there, devel/binutils should be one of the required packages by lang/swift as with= out devel/binutils, lang/switf fails to compile (at the link stage) .swift files into executable files. root@swift-jail:~ # cat test.swift=20 print("test") root@swift-jail:~ # swiftc test.swift -o test clang++: error: invalid linker name in argument '-fuse-ld=3Dgold' :0: error: link command failed with exit code 1 (use -v to see invocation) root@swift-jail:~ # pkg install binutils Updating FreeBSD repository catalogue... [swift-jail] Fetching meta.txz: 100% 944 B 0.9kB/s 00:01=20=20=20=20 [swift-jail] Fetching packagesite.txz: 100% 6 MiB 1.0MB/s 00:06=20= =20=20=20 Processing entries: 100% FreeBSD repository update completed. 28776 packages processed. All repositories are up to date. The following 2 package(s) will be affected (of 0 checked): New packages to be INSTALLED: binutils: 2.28,1 gettext-runtime: 0.19.8.1_1 Number of packages to be installed: 2 The process will require 177 MiB more space. 19 MiB to be downloaded. Proceed with this action? [y/N]: y=20 [swift-jail] [1/2] Fetching binutils-2.28,1.txz: 0% 152 KiB 155.7kB/s=20= =20=20 02:08 ETA [swift-jail] [1/2] Fetching binutils-2.28,1.txz: 100% 19 MiB 1.8MB/s=20= =20=20 00:11=20=20=20=20 [swift-jail] [2/2] Fetching gettext-runtime-0.19.8.1_1.txz: 100% 149 KiB 152.4kB/s 00:01=20=20=20=20 Checking integrity... done (0 conflicting) [swift-jail] [1/2] Installing gettext-runtime-0.19.8.1_1... [swift-jail] [1/2] Extracting gettext-runtime-0.19.8.1_1: 100% [swift-jail] [2/2] Installing binutils-2.28,1... [swift-jail] Extracting binutils-2.28,1: 100% root@swift-jail:~ # swiftc test.swift -o test root@swift-jail:~ # ./test=20 test root@swift-jail:~ # --=20 You are receiving this mail because: You are the assignee for the bug.=