From 493fba25c3ddd0b3eefd0bb4029d820ad3ad7269 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mat=C3=ADas=20Fonzo?= Date: Mon, 20 Apr 2020 08:42:12 -0300 Subject: [PATCH] bootstrap: Use pipes by default to speed up the build process MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Matías Fonzo --- bootstrap | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bootstrap b/bootstrap index 9ae16fab..99d4ae7d 100755 --- a/bootstrap +++ b/bootstrap @@ -72,7 +72,7 @@ usage() { version() { printf "%s\n" \ - "$PROGRAM 3.21" \ + "$PROGRAM 3.22" \ "Copyright (C) 2014-2020 Matias Andres Fonzo." \ "License GPLv3+: GNU GPL version 3 or later " \ "This is free software: you are free to change and redistribute it." \ @@ -168,12 +168,12 @@ unpack() # Print a warning for good practices. # -# Recommended practices is to set variables in -# **front** of `configure' or make(1), see: +# Recommended practices is to set variables +# in front of `configure' or make(1), see: # -# http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Defining-Variables.html +# http://www.gnu.org/software/make/manual/html_node/Environment.html +# http://gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Defining-Variables.html # http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Setting-Output-Variables.html -# http://www.gnu.org/software/make/manual/make.html#Environment warn_flags() { @@ -186,8 +186,8 @@ warn_flags() BTCC="${BTCC:=cc}" BTCXX="${BTCXX:=c++}" -BTCFLAGS="${BTCFLAGS:=-g0 -Os}" -BTCXXFLAGS="${BTCXXFLAGS:=$BTCFLAGS}" +BTCFLAGS="${BTCFLAGS:=-g0 -Os -pipe}" +BTCXXFLAGS="${BTCXXFLAGS:=-g0 -Os -pipe}" BTLDFLAGS="${BTLDFLAGS:=-s}" opt_keep=opt_keep.off stage=0 -- 2.11.4.GIT