From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f50.google.com (mail-wr1-f50.google.com [209.85.221.50]) by mx.groups.io with SMTP id smtpd.web10.395.1632421030936278737 for ; Thu, 23 Sep 2021 11:17:11 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@nuviainc-com.20210112.gappssmtp.com header.s=20210112 header.b=FSCmC50D; spf=pass (domain: nuviainc.com, ip: 209.85.221.50, mailfrom: leif@nuviainc.com) Received: by mail-wr1-f50.google.com with SMTP id d6so19600118wrc.11 for ; Thu, 23 Sep 2021 11:17:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nuviainc-com.20210112.gappssmtp.com; s=20210112; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to; bh=/tzcw1viti7vs3Oucy6ojDadxouf93edKjR0hxusvjg=; b=FSCmC50DhgyTtuJlJsYv48tjh4iY8vJ56YHTibcQ/rgnnBPatTsUoI3WqslEAxueQB nBTg40pgDtFOThAR2X36/3m1j342ne9nDbUBCRvGjiV1aeH66SwDCZ0KETDsntKzrzJB X/REtadaYxAKZFeOI/SCt28LGHeAruaXMB4uMUzCPYi6iO4chRHf4y5bwXDXKsAz0+7+ 7205K0RgZFCMt3xUr0WCr9l47Sg8jX+3b3Gj0R7NISVtA+VMYeTu+Xd3zP0gviid5CS7 4+SpI3F8NtlyMWWdVoVUTAgv5ogHu3qmbgC68PFkLI+/7/OHzdoXCUBMUdPcaBXiwBJU 5vgQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=/tzcw1viti7vs3Oucy6ojDadxouf93edKjR0hxusvjg=; b=i6HVrurwf31xNQZ8Zz5/kYTQ9MCLZ/DRbi4FdfIwiE7gM82IoOtbA0pJ6oyP0/SHHZ xB5XPMCvKGSeGMzwm1xf4zfiAD17Gek9QjDaMjCGqH31eexSY2YAP7VGGM6qzerKSIG/ 6rpm3Y2bcZ9s3oHda0bhck3dLL8YskWA9sJKS+NAsOzyktsX+nbrYw7kyRloSRJFsid9 gNIOEACwQyKujoPd6g7LihHZV6BoVHsRw3WQ8OJzuoGQrt8YPRPZcY5msQBde5bhuy/Q r7VvBuibrQhMjPsWbGCVv9o33gUO8wS3Cl+1zTlh8JCl4d+qbDFvyNLXZHOMooMOONs5 3Gqw== X-Gm-Message-State: AOAM532QLbYyvMDFPenA5QpFBmS+oN4qLCCLPcTHX1UgXBbtK+pQUYGZ L1P2X6SIb+USHE5ld1qp/Wn7uQ== X-Google-Smtp-Source: ABdhPJzd+9tgKlOCt0PoMT/vA0jUHapKY86Zp73nEnCzv4Tzd4YG3VRxB5HE7pDHatN6Oz2bpNeEBg== X-Received: by 2002:a5d:58cd:: with SMTP id o13mr6934944wrf.416.1632421029389; Thu, 23 Sep 2021 11:17:09 -0700 (PDT) Return-Path: Received: from leviathan (cpc92314-cmbg19-2-0-cust559.5-4.cable.virginm.net. [82.11.186.48]) by smtp.gmail.com with ESMTPSA id q11sm6009450wrn.65.2021.09.23.11.17.08 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 23 Sep 2021 11:17:09 -0700 (PDT) Date: Thu, 23 Sep 2021 19:17:07 +0100 From: "Leif Lindholm" To: Rebecca Cran Cc: devel@edk2.groups.io, Bob Feng , Liming Gao , Yuwei Chen , Sean Brogan , Sami Mujawar , Ard Biesheuvel Subject: Re: [PATCH v3 0/2] BaseTools: Switch to downloading the ARM and AARCH64 compilers from Arm's site Message-ID: <20210923181707.4nvbon5w6u5nfeyq@leviathan> References: <20210923160957.19800-1-rebecca@nuviainc.com> MIME-Version: 1.0 In-Reply-To: <20210923160957.19800-1-rebecca@nuviainc.com> Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Rebecca, I think I already gave v2 an Acked-by, but just in case: Acked-by: Leif Lindholm Bob, Liming, Yuwei - any comments? / Leif Thu, Sep 23, 2021 at 10:09:55 -0600, Rebecca Cran wrote: > BaseTools/Bin/gcc_[arm,aarch64]_linux_ext_dep.yaml downloads GCC releases > from https://releases.linaro.org/components/toolchain/binaries/7.4-2019.02 . > > As indicated in the URL, those builds are from 2019 because Linaro no > longer do GCC releases, with that task having moved to Arm. > > The Arm GCC page is https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-a/downloads, > with the latest release being 10.3-2021.07. > > gcc_aarch64_linux_ext_dep.yaml is used when setting up a CI > environment using the stuart tools. > > BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=3594 > PR: https://github.com/tianocore/edk2/pull/1909 > > Changes from v2 to v3: > > Fixed the author to be @nuviainc.com instead of @bsdio.com. > > Rebecca Cran (2): > BaseTools: Switch to downloading the ARM compiler from Arm's site > BaseTools: Switch to downloading the AARCH64 compiler from Arm's site > > BaseTools/Bin/gcc_aarch64_linux_ext_dep.yaml | 10 +++++----- > BaseTools/Bin/gcc_arm_linux_ext_dep.yaml | 10 +++++----- > BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py | 4 ++-- > 3 files changed, 12 insertions(+), 12 deletions(-) > > -- > 2.31.1 >