From owner-freebsd-current@FreeBSD.ORG Mon Dec 17 09:44:57 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 230599D5 for ; Mon, 17 Dec 2012 09:44:57 +0000 (UTC) (envelope-from artyom.mirgorodsky@gmail.com) Received: from qs3206.pair.com (qs3206.pair.com [216.92.131.43]) by mx1.freebsd.org (Postfix) with ESMTP id D9B028FC0C for ; Mon, 17 Dec 2012 09:44:56 +0000 (UTC) Received: from notebook.alkar.net (unknown [178.215.171.20]) by qs3206.pair.com (Postfix) with ESMTPSA id 36C23E604A; Mon, 17 Dec 2012 04:44:50 -0500 (EST) From: Artyom Mirgorodskiy To: freebsd-current@freebsd.org Subject: Re: X on ThinkPad X220 with chrome or firefox goes blank Date: Mon, 17 Dec 2012 11:44:59 +0200 Message-ID: <5770330.aKFb2b9JYM@notebook.alkar.net> User-Agent: KMail/4.9.3 (FreeBSD/10.0-CURRENT; KDE/4.9.3; amd64; ; ) In-Reply-To: <20121217084037.2ff6391a@X220.ovitrap.com> References: <20121217084037.2ff6391a@X220.ovitrap.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: Erich Dollansky X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Dec 2012 09:44:57 -0000 Did you try to rebuild xorg-server with latest clang patch? (this patch commited 2-3 days ago) On Monday 17 December 2012 08:40:37 Erich Dollansky wrote: > Hi, > > I updated my notebook over the last couple of days and have now > problems starting chrome and firefox. The effect is that the screen > turns blury leaving hard to recognose characters on a white screen > after starting any of these applications. > > I can use Ctrl-Alt-F2 to come back to the terminal. Of course, this is > now a flight in the dark. After entering Ctrl-C and restart X, I get a > new X running until I start firefox or chrome again. > > Applications like Claws Mail, Arora or xterm work without problems. > > I do not see anything different in the log file of X. > > Does anybody have a clue what could cause this? > > I will recompile and reinstall all my ports now to see what will come > out there. > > Erich > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" -- Artyom Mirgorodskiy From owner-freebsd-current@FreeBSD.ORG Mon Dec 17 11:50:54 2012 Return-Path: Delivered-To: Current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27826FF9 for ; Mon, 17 Dec 2012 11:50:54 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from tensor.andric.com (tensor.andric.com [87.251.56.140]) by mx1.freebsd.org (Postfix) with ESMTP id CE9138FC15 for ; Mon, 17 Dec 2012 11:50:53 +0000 (UTC) Received: from [IPv6:2001:7b8:3a7:0:8d40:6f90:726d:a241] (unknown [IPv6:2001:7b8:3a7:0:8d40:6f90:726d:a241]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tensor.andric.com (Postfix) with ESMTPSA id 7662B5C5A; Mon, 17 Dec 2012 12:50:46 +0100 (CET) Message-ID: <50CF0715.7060300@FreeBSD.org> Date: Mon, 17 Dec 2012 12:50:45 +0100 From: Dimitry Andric Organization: The FreeBSD Project User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20121128 Thunderbird/18.0 MIME-Version: 1.0 To: "Sam Fourman Jr." Subject: Re: Clang/LLVM revision 169451 References: <50CE2E29.4030906@FreeBSD.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Current X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Dec 2012 11:50:54 -0000 On 2012-12-17 09:36, Sam Fourman Jr. wrote: >> No, there is no one-click merge script, it needs humanoid help, I'm >> afraid. :-) Is there any reason you cannot just install the port, or >> if that is too outdated, just checkout from llvm.org directly and build >> it? > > is it currently possible to build FreeBSD world, without clang and > then build clang from ports? There is no real need, as you can just put /usr/local/bin before /usr/bin in your PATH, but if you really want to do so, you can put the following in /etc/src.conf: CC=gcc CXX=g++ CPP=gcpp WITHOUT_CLANG= From then on, you build world with gcc, which will also be installed as /usr/bin/cc again.