public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] Do not silently continue if config.{build,host,gcc} fails
@ 2017-05-15 16:48 Segher Boessenkool
  2017-07-24  7:03 ` Segher Boessenkool
  0 siblings, 1 reply; 3+ messages in thread
From: Segher Boessenkool @ 2017-05-15 16:48 UTC (permalink / raw)
  To: gcc-patches; +Cc: Segher Boessenkool

If config.{build,host,gcc} fails, configure currently silently
continues.  This then makes it much harder than necessary to notice
you made a stupid pasto in config.gcc (and where exactly).

This patch fixes it, by terminating if one of the config.* fails.

Testing in progress (on powerpc64-linux); is this okay for trunk if
it passes?


Segher


2017-05-15  Segher Boessenkool  <segher@kernel.crashing.org>

	* configure.ac: If any of the config.* scripts fail, exit 1.
	* configure: Regenerate.

---
 gcc/configure    | 6 +++---
 gcc/configure.ac | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gcc/configure b/gcc/configure
index c823ffe..f3c7465 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -11489,15 +11489,15 @@ fi
 # --------------------------------------------------------
 
 # Collect build-machine-specific information.
-. ${srcdir}/config.build
+. ${srcdir}/config.build || exit 1
 
 # Collect host-machine-specific information.
-. ${srcdir}/config.host
+. ${srcdir}/config.host || exit 1
 
 target_gtfiles=
 
 # Collect target-machine-specific information.
-. ${srcdir}/config.gcc
+. ${srcdir}/config.gcc || exit 1
 
 extra_objs="${host_extra_objs} ${extra_objs}"
 extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
diff --git a/gcc/configure.ac b/gcc/configure.ac
index acfe979..c24e83f 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -1442,15 +1442,15 @@ fi
 # --------------------------------------------------------
 
 # Collect build-machine-specific information.
-. ${srcdir}/config.build
+. ${srcdir}/config.build || exit 1
 
 # Collect host-machine-specific information.
-. ${srcdir}/config.host
+. ${srcdir}/config.host || exit 1
 
 target_gtfiles=
 
 # Collect target-machine-specific information.
-. ${srcdir}/config.gcc
+. ${srcdir}/config.gcc || exit 1
 
 extra_objs="${host_extra_objs} ${extra_objs}"
 extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
-- 
1.9.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Do not silently continue if config.{build,host,gcc} fails
  2017-05-15 16:48 [PATCH] Do not silently continue if config.{build,host,gcc} fails Segher Boessenkool
@ 2017-07-24  7:03 ` Segher Boessenkool
  2017-07-24 22:23   ` Jeff Law
  0 siblings, 1 reply; 3+ messages in thread
From: Segher Boessenkool @ 2017-07-24  7:03 UTC (permalink / raw)
  To: gcc-patches

Ping?


Segher


On Mon, May 15, 2017 at 04:29:24PM +0000, Segher Boessenkool wrote:
> If config.{build,host,gcc} fails, configure currently silently
> continues.  This then makes it much harder than necessary to notice
> you made a stupid pasto in config.gcc (and where exactly).
> 
> This patch fixes it, by terminating if one of the config.* fails.
> 
> Testing in progress (on powerpc64-linux); is this okay for trunk if
> it passes?
> 
> 
> Segher
> 
> 
> 2017-05-15  Segher Boessenkool  <segher@kernel.crashing.org>
> 
> 	* configure.ac: If any of the config.* scripts fail, exit 1.
> 	* configure: Regenerate.
> 
> ---
>  gcc/configure    | 6 +++---
>  gcc/configure.ac | 6 +++---
>  2 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/gcc/configure b/gcc/configure
> index c823ffe..f3c7465 100755
> --- a/gcc/configure
> +++ b/gcc/configure
> @@ -11489,15 +11489,15 @@ fi
>  # --------------------------------------------------------
>  
>  # Collect build-machine-specific information.
> -. ${srcdir}/config.build
> +. ${srcdir}/config.build || exit 1
>  
>  # Collect host-machine-specific information.
> -. ${srcdir}/config.host
> +. ${srcdir}/config.host || exit 1
>  
>  target_gtfiles=
>  
>  # Collect target-machine-specific information.
> -. ${srcdir}/config.gcc
> +. ${srcdir}/config.gcc || exit 1
>  
>  extra_objs="${host_extra_objs} ${extra_objs}"
>  extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
> diff --git a/gcc/configure.ac b/gcc/configure.ac
> index acfe979..c24e83f 100644
> --- a/gcc/configure.ac
> +++ b/gcc/configure.ac
> @@ -1442,15 +1442,15 @@ fi
>  # --------------------------------------------------------
>  
>  # Collect build-machine-specific information.
> -. ${srcdir}/config.build
> +. ${srcdir}/config.build || exit 1
>  
>  # Collect host-machine-specific information.
> -. ${srcdir}/config.host
> +. ${srcdir}/config.host || exit 1
>  
>  target_gtfiles=
>  
>  # Collect target-machine-specific information.
> -. ${srcdir}/config.gcc
> +. ${srcdir}/config.gcc || exit 1
>  
>  extra_objs="${host_extra_objs} ${extra_objs}"
>  extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
> -- 
> 1.9.3

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Do not silently continue if config.{build,host,gcc} fails
  2017-07-24  7:03 ` Segher Boessenkool
@ 2017-07-24 22:23   ` Jeff Law
  0 siblings, 0 replies; 3+ messages in thread
From: Jeff Law @ 2017-07-24 22:23 UTC (permalink / raw)
  To: Segher Boessenkool, gcc-patches

On 07/24/2017 01:03 AM, Segher Boessenkool wrote:
> Ping?
> 
> 
> Segher
> 
> 
> On Mon, May 15, 2017 at 04:29:24PM +0000, Segher Boessenkool wrote:
>> If config.{build,host,gcc} fails, configure currently silently
>> continues.  This then makes it much harder than necessary to notice
>> you made a stupid pasto in config.gcc (and where exactly).
>>
>> This patch fixes it, by terminating if one of the config.* fails.
>>
>> Testing in progress (on powerpc64-linux); is this okay for trunk if
>> it passes?
>>
>>
>> Segher
>>
>>
>> 2017-05-15  Segher Boessenkool  <segher@kernel.crashing.org>
>>
>> 	* configure.ac: If any of the config.* scripts fail, exit 1.
>> 	* configure: Regenerate.
OK.
jeff

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-07-24 22:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-15 16:48 [PATCH] Do not silently continue if config.{build,host,gcc} fails Segher Boessenkool
2017-07-24  7:03 ` Segher Boessenkool
2017-07-24 22:23   ` Jeff Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).