From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16981 invoked by alias); 14 May 2014 06:46:13 -0000 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 Received: (qmail 16970 invoked by uid 89); 14 May 2014 06:46:12 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 14 May 2014 06:46:11 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s4E6kAFR026248 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Wed, 14 May 2014 02:46:10 -0400 Received: from tucnak.zalov.cz (ovpn-116-116.ams2.redhat.com [10.36.116.116]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s4E6k8j4031581 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 14 May 2014 02:46:09 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.8/8.14.7) with ESMTP id s4E6k6c2010899; Wed, 14 May 2014 08:46:06 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.8/8.14.8/Submit) id s4E6k3rq010898; Wed, 14 May 2014 08:46:03 +0200 Date: Wed, 14 May 2014 06:46:00 -0000 From: Jakub Jelinek To: Yury Gribov Cc: GCC Patches Subject: Re: [PATCH] Install sanitizer public headers (fix for PR sanitizer/61100) Message-ID: <20140514064603.GC10386@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <53724493.2070305@samsung.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <53724493.2070305@samsung.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2014-05/txt/msg01039.txt.bz2 On Tue, May 13, 2014 at 08:13:07PM +0400, Yury Gribov wrote: > Asan and Tsan allow sanitized applications to tweak runtime behavior > via API defined in headers in libsanitizer/include/sanitizer. This > patch adds installation code for these headers and a small test. > > Bootstrapped and regtested on x64. > libsanitizer/ChangeLog: > > 2014-05-13 Yury Gribov > > PR sanitizer/61100 > * Makefile.am (nodist_saninclude_HEADERS): Install > public headers. > * Makefile.in: Regenerate. > > gcc/testsuite/ChangeLog: > > 2014-05-13 Yury Gribov > > PR sanitizer/61100 > * c-c++-common/asan/asan-interface-1.c: New test. > * lib/asan-dg.exp (asan_include_flags): New function. > (asan_init): Call asan_include_flags to obtain path > to sanitizer headers. Ok. Jakub