From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x12e.google.com (mail-il1-x12e.google.com [IPv6:2607:f8b0:4864:20::12e]) by sourceware.org (Postfix) with ESMTPS id A4FBC3858410 for ; Fri, 29 Oct 2021 15:08:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A4FBC3858410 Received: by mail-il1-x12e.google.com with SMTP id s3so11037778ild.0 for ; Fri, 29 Oct 2021 08:08:29 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Jp6QVjj+ttTowuyVhfvTi9Pvm6mCM/L4hKx++DHjA60=; b=pDGOvzwM0dls1C/pKiq8Q/yF/+YVzA5pWd7pdHJu7SUXtPy4X5GvA4N1cyg9c7QLpT Q6XXrqilxveJP9XrWFCWMhNOdkgHBMr21jR3DdTfnslrXhOEUl2RfIlkrNiVVUAtk4A5 wG2wBJBeEs2WthZ+9dkN6lcXgxpNWCHTntz31I6sBARnQiXYg1IDnDSifLIUcN9d3Z2p 777a156AgdSi0djLDXbBnyq/KcwHPeaRfPEETe+KWsyQ2soz6rWaVMMwrmyhAafSgkIs HloXflR10ymaAdLKzfnfO2cibFCoRbD3zMGTgHVvSBHkWmVomSmy5aSL9caWsZWA+3CB 1nkg== X-Gm-Message-State: AOAM530Sx+YI/OGbMeBSnCzS1jLL0/AjpiMfbJj5+iRxACDwXihLTrKl DFmjGg79/c90NemoEmja19/t3n//Eps3aoYrC8Ac4NHZ X-Google-Smtp-Source: ABdhPJzn1PFxcT9r1J3DHth4CieZGdvM54+9/EhTSCmfB70Vxp077IsoHwc60DMwzEhu0vPzCP8SjQ7t4js1iAvRITw= X-Received: by 2002:a05:6e02:1d13:: with SMTP id i19mr8181297ila.182.1635520108644; Fri, 29 Oct 2021 08:08:28 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Stafford Horne Date: Sat, 30 Oct 2021 00:08:18 +0900 Message-ID: Subject: Re: Upstreaming OpenRISC with GCC mainline To: Joseph Myers Cc: GLIBC patches X-Spam-Status: No, score=-3.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 29 Oct 2021 15:08:31 -0000 On Fri, Oct 29, 2021, 11:43 PM Joseph Myers wrote: > On Fri, 29 Oct 2021, Stafford Horne wrote: > > > $ or1k-glibc-linux-gnu-gcc tst-mqueue5.c -c -std=gnu11 > -fgnu89-inline -g -O -Wall -Wwrite-strings -Wundef -Werror > -fmerge-all-constants -frounding-math -fno-stack-protector -fno-c.... > > That's -O, i.e. -O1, which is expected to have extra warnings. Making > glibc build cleanly with different optimization options would be good, but > should be handled separately from new ports. > Oh, you are right, I reset CFLAGS before the build so I didn't think anything would be coming in. I'll try to figure out where those extra flags are coming from. >