From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-qk1-f172.google.com (mail-qk1-f172.google.com [209.85.222.172]) by mx.groups.io with SMTP id smtpd.web08.1954.1632359930549054657 for ; Wed, 22 Sep 2021 18:18:50 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@nuviainc-com.20210112.gappssmtp.com header.s=20210112 header.b=nsGcPPY6; spf=pass (domain: nuviainc.com, ip: 209.85.222.172, mailfrom: rebecca@nuviainc.com) Received: by mail-qk1-f172.google.com with SMTP id 138so16197054qko.10 for ; Wed, 22 Sep 2021 18:18:50 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nuviainc-com.20210112.gappssmtp.com; s=20210112; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=zyYGda7q2wEjn9MT8LopwNelGRi7uBqmdRL/e6vwn6E=; b=nsGcPPY6wQ9Ql382usxYM81rLx5HKsWrlS5kfDpvig9joaTA0XrivSH2v9kzr6iYdk nl2lVTVbfj/gss9udHCCJW3ASDPof7GYJY/erDiA4F6JWKEeW5RivIB38vUxxssFjJtQ b0BIhRyWdRQx5u+R2nO7mtTYAf2qAfA/f1FMbZfAHYFV9IQEO4Zr+Ka/P7a3Dv2xgXBt r98NB8ZWFO/cUDibTaRsjVb8NB9T9L9JsaMJbzGhTXBG39jby8kidQTdbCWsHHvknCk3 CPILFeTgYrCkv67Z0EjXzPFdJxhEi9jm1g5dqI5bOX2QtawM1wi9pYk5o5T+WxnAxnSh bGvQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=zyYGda7q2wEjn9MT8LopwNelGRi7uBqmdRL/e6vwn6E=; b=k2KmGAmBghZYPtEdVY+Zm9OeU5e1nVcpwByvhc3v90Def7bqipvFJSfbz3ahQn2GP9 GUabgkwQJfDvhsOaGeVX+ZbHQ2Lf2hbYzycN7OON5kJ+N7O4tfGlquCwKGbVLNouMOMj 1hxkg4pB3ZK9weu5hX9wD3+DS1cRVGNGW1ZKWq4Mo7aCMM+iNSQvK/6CGFmlmSZbIaoj 2Mj8MXWvINaEwfs0Qy/q0QmDEjfEg41adM5fWnadOx6V/915EWugPxwtNP9HiIO+usBK olU3nhNLvY67I1no6a3R/Pvl94oRgaFDykWA3OOadPQDIRkpoO/GcU03QAQlQZ10duxj asQA== X-Gm-Message-State: AOAM5312PdvPWxvhGsqaDZkYyRYXoVZVnWNQYL5QHyzaqlGI63KE4nZx r99uyzai5ofp440kLf4GvZJepEGKWwQoQgrzKNqd5We5OKIu6Vngvkm9VR03seSHZC0WKVkgyEy soSeRfPASjfqszsiz9hCNSRtB89qiuJJusRUt84YdqCkvU7YgBqTW3XodjF8bDGnlKQN4uMV5 X-Google-Smtp-Source: ABdhPJxZ9Ar3U53OA8i8ECcKeo9tWzplmEtrWw5bfNnYDg3vgCg1zVJuUcZeVsEr4tjlVu/e2X4cOQ== X-Received: by 2002:a37:63d4:: with SMTP id x203mr2460896qkb.364.1632359929507; Wed, 22 Sep 2021 18:18:49 -0700 (PDT) Return-Path: Received: from linbox.int.bluestop.org (c-174-52-16-57.hsd1.ut.comcast.net. [174.52.16.57]) by smtp.gmail.com with ESMTPSA id l28sm2075911qtn.1.2021.09.22.18.18.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 22 Sep 2021 18:18:49 -0700 (PDT) From: "Rebecca Cran" To: devel@edk2.groups.io, Bob Feng , Liming Gao , Yuwei Chen , Sean Brogan , Sami Mujawar , Leif Lindholm , Ard Biesheuvel Cc: Rebecca Cran Subject: [PATCH v2 1/2] BaseTools: Switch to downloading the ARM compiler from Arm's site Date: Wed, 22 Sep 2021 19:18:31 -0600 Message-Id: <20210923011832.14981-2-rebecca@nuviainc.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210923011832.14981-1-rebecca@nuviainc.com> References: <20210923011832.14981-1-rebecca@nuviainc.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Rebecca Cran Linaro no longer do gcc releases - they're done by Arm now. Update gcc_arm_linux_ext_dep.yaml to fetch the latest ARM gcc release (10.3-2021.07) from their site. Signed-off-by: Rebecca Cran --- BaseTools/Bin/gcc_arm_linux_ext_dep.yaml | 10 +++++----- BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BaseTools/Bin/gcc_arm_linux_ext_dep.yaml b/BaseTools/Bin/gcc_arm_linux_ext_dep.yaml index 09481ceae05f..9b3c4e394fa1 100644 --- a/BaseTools/Bin/gcc_arm_linux_ext_dep.yaml +++ b/BaseTools/Bin/gcc_arm_linux_ext_dep.yaml @@ -1,5 +1,5 @@ ## @file -# Download GCC ARM compiler from Linaro's release site +# Download GCC ARM compiler from Arm's release site # Set shell variable GCC5_ARM_INSTALL to this folder # # This is only downloaded when a build activates scope gcc_arm_linux @@ -11,11 +11,11 @@ "scope": "gcc_arm_linux", "type": "web", "name": "gcc_arm_linux", - "source": "https://releases.linaro.org/components/toolchain/binaries/7.4-2019.02/arm-linux-gnueabihf/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf.tar.xz", - "version": "7.4.1", - "sha256": "3C951CF1941D0FA06D64CC0D5E88612B209D8123B273FA26C16D70BD7BC6B163", + "source": "https://developer.arm.com/-/media/Files/downloads/gnu-a/10.3-2021.07/binrel/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf.tar.asc", + "version": "10.3-2021.07", + "sha256": "aa074fa8371a4f73fecbd16bd62c8b1945f23289e26414794f130d6ccdf8e39c", "compression_type": "tar", - "internal_path": "/gcc-linaro-7.4.1-2019.02-x86_64_arm-linux-gnueabihf/", + "internal_path": "/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/", "flags": ["set_shell_var", ], "var_name": "GCC5_ARM_INSTALL" } diff --git a/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py b/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py index 81075438d2e8..a695fc328565 100644 --- a/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py +++ b/BaseTools/Plugin/LinuxGcc5ToolChain/LinuxGcc5ToolChain.py @@ -57,7 +57,7 @@ class LinuxGcc5ToolChain(IUefiBuildPlugin): return 0 # make GCC5_ARM_PREFIX to align with tools_def.txt - prefix = os.path.join(install_path, "bin", "arm-linux-gnueabihf-") + prefix = os.path.join(install_path, "bin", "arm-none-linux-gnueabihf-") shell_environment.GetEnvironment().set_shell_var("GCC5_ARM_PREFIX", prefix) # now confirm it exists -- 2.31.1