29128b0bd4
Release Notes: https://gcc.gnu.org/pipermail/gcc-announce/2023/000175.html Manually Refreshed: - 910-mbsd_multi.patch - 970-macos_arm64-building-fix.patch Automatically Refreshed: - 010-documentation.patch - 230-musl_libssp.patch - 300-mips_Os_cpu_rtx_cost_model.patch - 820-libgcc_pic.patch - 840-armv4_pass_fix-v4bx_to_ld.patch - 850-use_shared_libgcc.patch - 870-ppc_no_crtsavres.patch - 920-specs_nonfatal_getenv.patch Signed-off-by: Nick Hainke <vincent@systemli.org>
23 lines
679 B
Diff
23 lines
679 B
Diff
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
|
|
@@ -10174,8 +10174,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
|