From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x136.google.com (mail-il1-x136.google.com [IPv6:2607:f8b0:4864:20::136]) by sourceware.org (Postfix) with ESMTPS id D0892385DC0E for ; Mon, 13 Apr 2020 20:56:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D0892385DC0E Received: by mail-il1-x136.google.com with SMTP id f82so6497554ilh.8 for ; Mon, 13 Apr 2020 13:56:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=G3HuQcG7mKpestb5xAutIgs+fR9HyE7nLNfU1yss/F0=; b=hOoqL74uigwCNixiZfDtjHh2M6NaEez5nZeOF+nm27Ai18wTFoj7VsPnrINBL3FNU4 /8dUEfhTn8CXeDTxUIPM+zbaKJtxtsaHTZvZ+08jpitZzKFUmgoXl2ps1iXyrs/ZB3A8 Q3ty+uqPQTFjE4GLa4ENnaViSNqsd15nQJYfuKvOwQFGt0N2FYWD/PpB+hkVvlTQdorT dEzdyvgVHKg6CGQn7Vk41zTLGvr+Mulg5YJWh11Y8WeNcCB7oxHeN0DJGoasWsJPKbou lwcHDqpsOsI0M11aVo6Bf4P03TIgd0Ly+cMJTZncxqj0QbJOXMsm7/oKMlefuvYpKaKY T8kw== X-Gm-Message-State: AGi0PuaUWaHar7+HMke7gEWSyTPMF3IrVs1QVe1k7HaQcQQR5c9PH9V+ EM0mm/QZqBZnie8WtoJoGTvcPNtIAP2CbtpC1yk= X-Google-Smtp-Source: APiQypKabijXjDSKmB1E7EZ/4ITLoVXrxEBrVon6gaHr+rnxmxQiAuJmDjOUsKbYWkYJW+uJPjFjaHz0rxYZW+FHWtY= X-Received: by 2002:a92:c14f:: with SMTP id b15mr4325473ilh.134.1586811416351; Mon, 13 Apr 2020 13:56:56 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Mon, 13 Apr 2020 21:56:45 +0100 Message-ID: Subject: Re: How to customize GCC builtin search paths To: William Tambe Cc: gcc-help Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: gcc-help@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-help mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Apr 2020 20:56:59 -0000 On Mon, 13 Apr 2020 at 21:46, Jim Wilson wrote: > > On Sun, Apr 12, 2020 at 9:06 AM William Tambe wrote: > > I can hardly find examples on how to use startfile_prefixes. Currently > > when running gcc as follow: > > arch-elf-gcc -v test.c > > > > I get the following excerpt showing how gcc looks for includes: > > You have the source code. You can find a lot of info by using grep to > search for obvious things, like /usr/include for instance, and then > follow the code to see where it takes you. Right, the following commands were all I needed to answer your question about thread model: git grep 'Thread model' gcc git grep thrmod gcc git grep thread_model gcc gvim gcc/configure.ac git grep thread_file gcc gvim gcc/config.gcc You could have done that yourself pretty easily, and probably found the answer quicker than waiting for a reply from the mailing list.