From acb0788b8e586cdd1329ff16d4570879e7f48f7b Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Sat, 10 Apr 2021 20:37:55 +0200 Subject: toolchain: gcc: Update to version 10.3.0 Signed-off-by: Hauke Mehrtens --- .../patches/10.2.0/920-specs_nonfatal_getenv.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 toolchain/gcc/patches/10.2.0/920-specs_nonfatal_getenv.patch (limited to 'toolchain/gcc/patches/10.2.0/920-specs_nonfatal_getenv.patch') diff --git a/toolchain/gcc/patches/10.2.0/920-specs_nonfatal_getenv.patch b/toolchain/gcc/patches/10.2.0/920-specs_nonfatal_getenv.patch deleted file mode 100644 index 487b9e47cb..0000000000 --- a/toolchain/gcc/patches/10.2.0/920-specs_nonfatal_getenv.patch +++ /dev/null @@ -1,22 +0,0 @@ -Author: Jo-Philipp Wich -Date: Sat Apr 21 03:02:39 2012 +0000 - - gcc: add patch to make the getenv() spec function nonfatal if requested environment variable is unset - - SVN-Revision: 31390 - ---- a/gcc/gcc.c -+++ b/gcc/gcc.c -@@ -9396,8 +9396,10 @@ getenv_spec_function (int argc, const ch - } - - if (!value) -- fatal_error (input_location, -- "environment variable %qs not defined", varname); -+ { -+ warning (input_location, "environment variable %qs not defined", varname); -+ value = ""; -+ } - - /* We have to escape every character of the environment variable so - they are not interpreted as active spec characters. A -- cgit v1.2.3