From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x129.google.com (mail-il1-x129.google.com [IPv6:2607:f8b0:4864:20::129]) by sourceware.org (Postfix) with ESMTPS id 9A87F385DC0C for ; Mon, 13 Apr 2020 20:34:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9A87F385DC0C Received: by mail-il1-x129.google.com with SMTP id t8so5138050ilj.3 for ; Mon, 13 Apr 2020 13:34:29 -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=0Ks4TZTHWvTo1yL3J9Rfx5EaGNKnMt6YGQJM4nFKR6M=; b=ig6pP4eP+kKz4KAYbT0Ivd1BGEjY3BzgIgtDlbEMaheNFQYqbG9E3tmDYiVVVXDSBY 2cenSlXKtVx/xCAW+nyqgzz0LhqQBsXCwrxk5g/2ZtPyulqP/gP5BU3NhL78kxE5gHcD 68k4zvhO1QkbAB1IWeU6OaJBquVtrImitSPD+gXfLS/mg+hEtSOjwfjsleoamLl4RFkD ce9widrJWLWoWXSFOlEesJCtlFvvNWP+osE+lPID5DbcyxhTUxOZqhpTbEjcmDG5dho1 79SfnI6oJOpdgwM9JHVF7teN4lBM+zJ/RooKiZY8UZnaedz1L0n/3JUSdMtdSSESEIRw gOOQ== X-Gm-Message-State: AGi0PuYhBIG2ikObSubo8xSCq4JAxyxoGQU/433wB87QMPzIBim1P9Gf dubxYLCiLXq8aXMb4LrkM2BvejGLXKK85CL5sUc= X-Google-Smtp-Source: APiQypKtNWh/ShhCJdTJnCGsoRgA7y0xT6n98MrirWvUe8P1lm/su4knbDfP0x8gOJtGqBmGVtABI5Hf1yS0OnqjERA= X-Received: by 2002:a92:540f:: with SMTP id i15mr7226391ilb.59.1586810069168; Mon, 13 Apr 2020 13:34:29 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Mon, 13 Apr 2020 21:34:17 +0100 Message-ID: Subject: Re: How to configure thread model to be used by a custom GCC port ? To: William Tambe Cc: gcc-help Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.0 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:34:31 -0000 On Mon, 13 Apr 2020 at 21:32, Jonathan Wakely wrote: > > On Mon, 13 Apr 2020 at 19:53, William Tambe via Gcc-help > wrote: > > > > How to configure GCC "Thread model"? > > > > in our port it is currently "single", however we would like for it to be "posix" > > See gcc/configure.ac where target_thread_file is set. And gcc/config.gcc which sets the default if no --enable-threads option is passed to configure explicitly.