From patchwork Fri Sep 5 06:34:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bryan Hundven X-Patchwork-Id: 386113 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id E893D14007B for ; Fri, 5 Sep 2014 16:35:02 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; q=dns; s=default; b=iSWd7bLFg+PN2oe2Z9ctBACKpyGGLZR 0PqAR2lZK2Cwn8S92LbSccVGx3+H9vIy3vcKuIk+MlO13E0nBN/VC/8z4g61dsfp IS6tMZhpKtkWf0b23ObG68ooJg2KMp9Y9vBy0vvlezkAyjWufAETU5gxYHxpx15s 8RDTxhb7kKHE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:cc:subject:date:message-id:in-reply-to :references; s=default; bh=Do7RR5V/CVwxM/GB7S+SWpEU7Pc=; b=N3LKA WOIM6XQ9TxZ0/GFng85I5cv8mGGwTpqZYQjLcvcX08SYyflcLFXlaWW3BrTcXCZi uCaKcseDvWhPdfJdOmopy7PB3m3GVy+vqi/ZnzkLSLouy3HdRgPjdy4SIy/dcBho +VNapXhrVUG0NLpbbND+/1/UUDU8kw1q78aSWA= Received: (qmail 18564 invoked by alias); 5 Sep 2014 06:34:25 -0000 Mailing-List: contact crossgcc-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: crossgcc-owner@sourceware.org Delivered-To: mailing list crossgcc@sourceware.org Received: (qmail 18416 invoked by uid 89); 5 Sep 2014 06:34:19 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f42.google.com Received: from mail-pa0-f42.google.com (HELO mail-pa0-f42.google.com) (209.85.220.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 05 Sep 2014 06:34:16 +0000 Received: by mail-pa0-f42.google.com with SMTP id lf10so21878383pab.15 for ; Thu, 04 Sep 2014 23:34:14 -0700 (PDT) X-Received: by 10.70.131.70 with SMTP id ok6mr17714006pdb.133.1409898854328; Thu, 04 Sep 2014 23:34:14 -0700 (PDT) Received: from fuzzy.hsd1.wa.comcast.net (c-50-135-131-187.hsd1.wa.comcast.net. [50.135.131.187]) by mx.google.com with ESMTPSA id yx1sm970803pab.5.2014.09.04.23.34.13 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 04 Sep 2014 23:34:13 -0700 (PDT) From: Bryan Hundven To: "Yann E. MORIN" Cc: crossgcc@sourceware.org, Bryan Hundven Subject: [PATCH 5/5] config/gcc: Disable CC_GCC_LIBSANITIZER for musl-libc Date: Thu, 4 Sep 2014 23:34:03 -0700 Message-Id: <1409898843-14901-6-git-send-email-bryanhundven@gmail.com> In-Reply-To: <1409898843-14901-1-git-send-email-bryanhundven@gmail.com> References: <1409898843-14901-1-git-send-email-bryanhundven@gmail.com> X-IsSubscribed: yes Disable libsanitizer for musl-libc. Signed-off-by: Bryan Hundven --- config/cc/gcc.in.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/cc/gcc.in.2 b/config/cc/gcc.in.2 index 1b9515c..b088515 100644 --- a/config/cc/gcc.in.2 +++ b/config/cc/gcc.in.2 @@ -148,7 +148,7 @@ config CC_GCC_LIBSANITIZER prompt "Compile libsanitizer" depends on CC_GCC_HAS_LIBSANITIZER depends on THREADS_NATIVE - depends on ! LIBC_uClibc # Currently lacks required headers (like netrom.h) + depends on ! LIBC_uClibc && ! LIBC_musl # Currently lacks required headers (like netrom.h) help libsanitizer is a library which provides run-time sanitising of either or both of: