gcc: Update to version 5.4.0, change maintainer

Signed-off-by: Noble Pepper <noblepepper@gmail.com>
This commit is contained in:
Noble Pepper
2016-09-24 11:36:08 -05:00
parent 82a482e92a
commit 77a8b220fd
40 changed files with 1667 additions and 488 deletions
@@ -1,12 +1,13 @@
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -8003,7 +8003,10 @@ getenv_spec_function (int argc, const ch
@@ -8807,8 +8807,10 @@ getenv_spec_function (int argc, const ch
value = getenv (argv[0]);
if (!value)
- fatal_error ("environment variable %qs not defined", argv[0]);
- fatal_error (input_location,
- "environment variable %qs not defined", argv[0]);
+ {
+ warning (0, "environment variable %qs not defined", argv[0]);
+ warning (input_location, "environment variable %qs not defined", argv[0]);
+ value = "";
+ }