From owner-svn-src-head@FreeBSD.ORG Thu Jan 9 01:19:27 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64E86A76; Thu, 9 Jan 2014 01:19:27 +0000 (UTC) Received: from mail-wi0-x236.google.com (mail-wi0-x236.google.com [IPv6:2a00:1450:400c:c05::236]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8020E1583; Thu, 9 Jan 2014 01:19:26 +0000 (UTC) Received: by mail-wi0-f182.google.com with SMTP id en1so2852492wid.15 for ; Wed, 08 Jan 2014 17:19:24 -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=CSuVxaP15tiEcfeAvFAdjsyJax92VyDfvUmd7q9oM5o=; b=uPxSAGkszzONXGeP13NSUA502elnyA+5xdLkdaZdBW4FTC27PVO3opgvP2nZH8BbCH c3Dxmf0DlWXEK5OU3TpU6EMlWDgq4nT3VYYukNgyBS0nOJMkFXBcTL3hxhw406kz9wlg zK3Sea1w5EsqrV5gCNe1j8tLEfAkeBZHqVW/bIVeoS8NHEZbeeYL/CoIhtoNfaENbnfC ozbROt+0CSCRw6htkE03ycgiUPENRJeFnPoc7TOCxOdRaNk5NJysQFVsSGS0JZ0YaXG9 VJ7ZSgUjif5kryKstaXp3FkpYtD4qMhLPIdd0v07g0kQf7QDJezTxSlb6sPSHcTQGcBm hcXw== MIME-Version: 1.0 X-Received: by 10.194.10.103 with SMTP id h7mr254923wjb.62.1389230364918; Wed, 08 Jan 2014 17:19:24 -0800 (PST) Sender: zbodek@gmail.com Received: by 10.217.112.65 with HTTP; Wed, 8 Jan 2014 17:19:24 -0800 (PST) In-Reply-To: <201312221751.rBMHpYpj059326@svn.freebsd.org> References: <201312221751.rBMHpYpj059326@svn.freebsd.org> Date: Thu, 9 Jan 2014 02:19:24 +0100 X-Google-Sender-Auth: kILYwNtuCMgBSzTS0fLnD371AdE Message-ID: Subject: Re: svn commit: r259730 - in head: gnu/lib/csu gnu/lib/libgcc gnu/lib/libstdc++ gnu/lib/libsupc++ lib/atf/libatf-c/tests share/mk sys/conf tools/tools/ath/athstats tools/tools/net80211/wlanstats usr.bi... From: Zbigniew Bodek To: Dimitry Andric Content-Type: text/plain; charset=ISO-8859-1 Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Jan 2014 01:19:27 -0000 2013/12/22 Dimitry Andric : > Author: dim > Date: Sun Dec 22 17:51:33 2013 > New Revision: 259730 > URL: http://svnweb.freebsd.org/changeset/base/259730 > > Log: > To avoid having to explicitly test COMPILER_TYPE for setting > clang-specific or gcc-specific flags, introduce the following new > variables for use in Makefiles: > > CFLAGS.clang > CFLAGS.gcc > CXXFLAGS.clang > CXXFLAGS.gcc > > In bsd.sys.mk, these get appended to the regular CFLAGS or CXXFLAGS for > the right compiler. > > MFC after: 1 week > > Modified: > head/gnu/lib/csu/Makefile > head/gnu/lib/libgcc/Makefile > head/gnu/lib/libstdc++/Makefile > head/gnu/lib/libsupc++/Makefile > head/lib/atf/libatf-c/tests/Makefile > head/share/mk/bsd.sys.mk > head/sys/conf/Makefile.arm > head/tools/tools/ath/athstats/Makefile > head/tools/tools/net80211/wlanstats/Makefile > head/usr.bin/mkcsmapper/Makefile.inc > Hello Dimitry. It appears that this change broke backtrace on ARM. Now only last stack frame can be displayed in bt. However I don't have any fix or suggestion. Best regards zbb