mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 21:24:31 +04:00
gcc: add GCC 14.2
Deleted (upstreamed): 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch [1] 021-libcc1-fix-vector-include.patch [2] All other patches automatically rebased. [1] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=9970b576b7e4ae337af1268395ff221348c4b34a [2] https://gcc.gnu.org/git/?p=gcc.git;a=commit;h=5213047b1d50af63dfabb5e5649821a6cb157e33 Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
This commit is contained in:
committed by
Rosen Penev
parent
b44065ec62
commit
4a1f9bdab8
22
devel/gcc/patches-14.x/920-specs_nonfatal_getenv.patch
Normal file
22
devel/gcc/patches-14.x/920-specs_nonfatal_getenv.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
Author: Jo-Philipp Wich <jow@openwrt.org>
|
||||
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.cc
|
||||
+++ b/gcc/gcc.cc
|
||||
@@ -10319,8 +10319,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
|
||||
Reference in New Issue
Block a user