From owner-freebsd-toolchain@freebsd.org Thu Dec 3 09:15:01 2015 Return-Path: Delivered-To: freebsd-toolchain@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A271BA3CA82 for ; Thu, 3 Dec 2015 09:15:01 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A1E11C36; Thu, 3 Dec 2015 09:15:01 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: by igcto18 with SMTP id to18so7569699igc.0; Thu, 03 Dec 2015 01:15:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=fRk3rN0ohY++e7QsuttaKyHQD8dkPjudZjtnFgt+x84=; b=smAikSwDRgQTXQPNw9qcnwlN4WUFEjF6w+Am0opavcEMwu5GBDJjqUx0UcXLZ3D37i Cn/6oU+VlTiOLU20+Bqa3f2AlhkEKOMs+kOGE6/Cctp0yiAcW4p1iD4fQQjwAzlocaD5 aYWeJQRQK0vR/SHJwmokOPlGEios0DHk1EhCZiuxlt6e9R5AaR3EQU0Uqnvo2aXCPPj+ 7cZd+gqufeatihF+SLXy4JCbqWlOGnkploXoJUS05wGhocl8oLwo+sFn3YR59QjbEE5E tKZYiF/q3aTyThkLw0N+eB1astWQs1jo9XQJ2Lxw74ZL+it/HlHbYr716lKaR9E+c1Ms GE8A== MIME-Version: 1.0 X-Received: by 10.50.12.71 with SMTP id w7mr7363831igb.86.1449134100855; Thu, 03 Dec 2015 01:15:00 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.50.152.69 with HTTP; Thu, 3 Dec 2015 01:15:00 -0800 (PST) In-Reply-To: <86io4guekw.fsf@desk.des.no> References: <86egf5ckwa.fsf@desk.des.no> <03ABAEA7-F8B7-4E2C-8BFA-9FFC02BAAFC5@gmail.com> <11EF2033-BAE0-422C-9B75-DC4A1F4D62E8@FreeBSD.org> <35576295-CD53-49D6-ADD7-DADEA75C7C13@FreeBSD.org> <86io4guekw.fsf@desk.des.no> Date: Thu, 3 Dec 2015 01:15:00 -0800 X-Google-Sender-Auth: q23sBgSLCMD-D5AJR6ks-TEgtv0 Message-ID: Subject: Re: Can we have a toolchain that works? From: Craig Rodrigues To: =?UTF-8?Q?Dag=2DErling_Sm=C3=B8rgrav?= , FreeBSD Toolchain Cc: Pedro Giffuni , David Chisnall , Garrett Cooper , Allan Jude , Kurt Lidl , Dimitry Andric , John Baldwin Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-toolchain@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Maintenance of FreeBSD's integrated toolchain List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Dec 2015 09:15:01 -0000 [Moving discussion to freebsd-toolchain] Dag, Regarding your question about a working debugger, due to your problems debugging code with the in-tree gdb on latest current, we have a few options: (1) Enable WITH_LLDB by default in the make infrastructure, and install lldb. We already have lldb in the tree: https://svnweb.freebsd.org/base/head/contrib/llvm/tools/lldb/ but it is not built by default. lldb does not have kgdb support though. (2) Kick gdb out of the base system, and tell people to install the devel/gdb port. This will install gdb 7.10 from ports. This port also installs kgdb -- Craig