From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4301 invoked by alias); 25 Oct 2012 16:39:54 -0000 Received: (qmail 4239 invoked by uid 22791); 25 Oct 2012 16:39:52 -0000 X-SWARE-Spam-Status: No, hits=-6.7 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_DNSWL_HI,RCVD_IN_HOSTKARMA_W,RP_MATCHES_RCVD,SPF_HELO_PASS,TW_LV X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 25 Oct 2012 16:39:47 +0000 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id q9PGdlB4016523 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 25 Oct 2012 12:39:47 -0400 Received: from zalov.redhat.com (vpn1-6-1.ams2.redhat.com [10.36.6.1]) by int-mx12.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id q9PGdiQX014116 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 25 Oct 2012 12:39:46 -0400 Received: from zalov.cz (localhost [127.0.0.1]) by zalov.redhat.com (8.14.5/8.14.5) with ESMTP id q9PGdhFr029886; Thu, 25 Oct 2012 18:39:43 +0200 Received: (from jakub@localhost) by zalov.cz (8.14.5/8.14.5/Submit) id q9PGdhEY029885; Thu, 25 Oct 2012 18:39:43 +0200 Date: Thu, 25 Oct 2012 16:51:00 -0000 From: Jakub Jelinek To: Xinliang David Li Cc: Wei Mi , Andrew Pinski , gcc-patches@gcc.gnu.org, Diego Novillo Subject: Re: [asan] migrate runtime from llvm Message-ID: <20121025163942.GM1752@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <20121018181636.GZ584@tucnak.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2012-10/txt/msg02298.txt.bz2 On Thu, Oct 25, 2012 at 09:24:51AM -0700, Xinliang David Li wrote: > To accommodate tsan (and msan in the future), the directory structure > needs to be changed. The top level directory can be called something > like librt with the following subdirs: asan, tsan, sanitizer_common, > and interception. Also the libasan should be linked in statically by > default. librt is a very bad name, that clashes with glibc librt, would only create confusion. Why should be libasan linked statically by default? Jakub