From patchwork Tue Jan 16 07:14:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 861300 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-89244-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="gSkkipkE"; dkim-atps=neutral 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 3zLM126GYrz9s7g for ; Tue, 16 Jan 2018 18:14:46 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; q=dns; s=default; b= k0D5PMWbSwnQR33Yhho+3E9L76x1jqro9h/+iuWsAA1RLiW9J0AtN8F9QHXQTdfL RFWp8jqLx3USQ8Z4qHH2vUb1eIENUQ8rBuHFrnTpkeY0QG2HFzvfKmlEYHc/W7f8 oa7knOvmrvbkm8Bi2MfckuwEs8NuQf8JqnVqzms1zQQ= 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:date:to:subject:mime-version:content-type :content-transfer-encoding:message-id:from; s=default; bh=14+J2M WddDgv4V/3rsjvusFyPiQ=; b=gSkkipkEKOnWyZ7VvOjYlPUcmiE8tx0suhVAFt nF1PEUkRb5rwiMvLBrsxKF4SaBFACv7OEY1K9nGRR4WbOX1AeYupNKt+/edgWk7S LJEJdfnO6AhJYUFXcSjaTvSaCTioBYbp+0Cly6KjI9odVbah/Y4+3nKuRl2rYGtg Fip+w= Received: (qmail 52347 invoked by alias); 16 Jan 2018 07:14:40 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 52333 invoked by uid 89); 16 Jan 2018 07:14:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy= X-HELO: mx1.redhat.com Date: Tue, 16 Jan 2018 08:14:25 +0100 To: libc-alpha@sourceware.org Subject: [PATCH COMMITTED] nptl/tst-minstack-throw: Compile in C++11 mode with GNU extensions User-Agent: Heirloom mailx 12.5 7/5/10 MIME-Version: 1.0 Message-Id: <20180116071425.750DE40172552@oldenburg.str.redhat.com> From: fweimer@redhat.com (Florian Weimer) 2018-01-16 Florian Weimer * nptl/Makefile (CFLAGS-tst-minstack-throw.o): Compile in C++11 mode with GNU extensions. diff --git a/nptl/Makefile b/nptl/Makefile index d59caa5980..a11a25bbff 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -231,6 +231,7 @@ CFLAGS-tst-thread_local1.o = -std=gnu++11 LDLIBS-tst-thread_local1 = -lstdc++ CFLAGS-tst-thread-exit-clobber.o = -std=gnu++11 LDLIBS-tst-thread-exit-clobber = -lstdc++ +CFLAGS-tst-minstack-throw.o = -std=gnu++11 LDLIBS-tst-minstack-throw = -lstdc++ tests = tst-attr1 tst-attr2 tst-attr3 tst-default-attr \