From owner-freebsd-ports@FreeBSD.ORG Tue Jun 21 10:43:55 2011 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B841106564A for ; Tue, 21 Jun 2011 10:43:55 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from xiurhn.etoilebsd.net (xiurhn.etoilebsd.net [94.23.37.58]) by mx1.freebsd.org (Postfix) with ESMTP id D78718FC16 for ; Tue, 21 Jun 2011 10:43:54 +0000 (UTC) Received: by xiurhn.etoilebsd.net (Postfix, from userid 80) id 29EA77E880; Tue, 21 Jun 2011 12:43:54 +0200 (CEST) To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 21 Jun 2011 12:43:54 +0200 From: Baptiste Daroussin In-Reply-To: <4E0074D6.4040308@FreeBSD.org> References: "<20110620153753.GA41541@freebsd.org>" <4E006F43.5010505@FreeBSD.org> <4E0070FB.1090607@FreeBSD.org> <4E007284.1060304@FreeBSD.org> <4E0074D6.4040308@FreeBSD.org> Message-ID: X-Sender: bapt@FreeBSD.org User-Agent: Roundcube Webmail/0.5.3 Subject: Re: [ANNOUNCE]: clang compiling ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jun 2011 10:43:55 -0000 On Tue, 21 Jun 2011 12:39:18 +0200, Matthias Andree wrote: > Am 21.06.2011 12:29, schrieb Alex Dupre: >> Matthias Andree ha scritto: >>>> I have patches for my ports, can I send them to anyone to test >>>> them? >>> >>> Do something similar to this: >> >> Thanks for the instructions, but currently I haven't a -current >> ready >> for testing, this is the reason of my question :-) > > Are the faults you're fixing specific to -CURRENT, like affecting > features or changes specific to 9-CURRENT? > > If not, try -STABLE in the way I've proposed -- you need to do that > twice: > > 1 - before your fixes and see if the problem reproduces; and > > 2 - if it does, try again after your fixes -- if your fixes solve the > problem on -STABLE, that will likely work with -CURRENT too. > > HTH > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" Just be aware that stable clang has some issue with the stable binutils, to fix this make sure to use binutils from ports. To be able to test on stable: export CC=clang export CXX=clang++ PATH=/usr/local/bin:${PATH} make -C myport the ld from localbase is found first so clang uses it. currently from my testing everything that succeed compiling with this also succeed on current and everything that fail on current also fails this way. regards, Bapt