From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from esa2.mentor.iphmx.com (esa2.mentor.iphmx.com [68.232.141.98]) by sourceware.org (Postfix) with ESMTPS id CC0B63858439; Wed, 20 Dec 2023 03:23:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org CC0B63858439 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org CC0B63858439 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=68.232.141.98 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1703042583; cv=none; b=ZMbk83kc9mFoxTjvnaDNQufg4swaRtn3xDjwkikzuxfwxz+PvXUqBFfTm7+w5rmd9RvruwddxTOtRmlby1yWcU4w0hMHXtNjMmd63wJ+M55n/1swrutmuRkpc2QEQxTqkAVBhw1Uau84EH+R0nhQIpq29BTxl1EJYlDe4wzcUrY= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1703042583; c=relaxed/simple; bh=RE21/O4G8U0H/widBuVaX2WceCE+YWtG5g/QHjOu1eU=; h=Message-ID:Date:MIME-Version:Subject:To:From; b=wHW3b/w/yWjXsZT2DqgPFo+N3a2J/J6dXe9AjvZBZDfijByeO1vkY+Su5/ORFDxukvZNf6hIXLVb5EXDw+0M1YcAlXvpuNB5ix69gAAO2k6RjH6+oK0bC7TjKWbYa8VHtUJEjcUdTcTAs6H9u+FiKZY1GLanZUu8LH8NT+P+F0s= ARC-Authentication-Results: i=1; server2.sourceware.org X-CSE-ConnectionGUID: ramBmB+0TJKLCeDV6FSZAw== X-CSE-MsgGUID: Ea/9Gpm7Rn6S+9ZSr3V4ww== X-IronPort-AV: E=Sophos;i="6.04,290,1695715200"; d="scan'208";a="28828940" Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa2.mentor.iphmx.com with ESMTP; 19 Dec 2023 19:23:00 -0800 IronPort-SDR: qEn3uC4RUCRlAAOyjiNYQ5CiBgKHFc+p9okm+H62mbG2aYs2WeMEPUzcc5NCMDQIXClnwJ1Z0D 481HpmhCnQNMLEcrxYaAdQ9n3nHy6Cu9s1JsXYM0hiXOzPRXRP6lmx8FVBi3Pa665IaQqbYZoP Q7hqz/neZllzMrFcOmPSHEcOHO7AANRxnTtG2GawhUtACgX03Uax8efMfP4VZVwC/0BjZoRQbe axdMGFVJ1o3xza7lxf1ikea1mRr+6/3jWPCSnmYpXH8N0i+kxYyN+K4wi7qR2CArfkpu0yUaxF UdU= Message-ID: Date: Tue, 19 Dec 2023 20:22:57 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.8.0 Subject: Re: [PATCH v26 00/23] Optimize type traits compilation performance Content-Language: en-US To: Ken Matsui , CC: References: <20231024020424.699427-1-kmatsui@gcc.gnu.org> <20231207051513.969952-1-kmatsui@gcc.gnu.org> From: Sandra Loosemore In-Reply-To: <20231207051513.969952-1-kmatsui@gcc.gnu.org> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit X-ClientProxiedBy: svr-orw-mbx-10.mgc.mentorg.com (147.34.90.210) To svr-orw-mbx-13.mgc.mentorg.com (147.34.90.213) X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00,HEADER_FROM_DIFFERENT_DOMAINS,KAM_DMARC_STATUS,NICE_REPLY_A,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 12/6/23 22:11, Ken Matsui wrote: > This patch series optimizes type traits compilation performance by > implementing built-in type traits and using them in libstdc++. I'm finding that all the new g++.dg/ext/is_*.C testcases added by this patch series are failing due to the "#include ". If that is supposed to refer to the file of that name in the libstdc++ testcase, there's no gcc option being passed to add that location to the include search path. That .h file includes other header files from the libstdc++ testsuite so just copying it into the same directory as the new g++ tests doesn't work. Can you fix this, somehow? Target is nios2-elf, if that matters. -Sandra