This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via 8e01581f67579888651ab39f8602ea89062d1c72 (commit) via 9f172a3db01b779c55c0b2daec5585052a58b071 (commit) from 63c94c5185e52dddb756cf7b0d46abd3ee72e012 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 8e01581f67579888651ab39f8602ea89062d1c72 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat May 20 09:32:51 2017 +0100
binutils: Remove any host optimisations in toolchain's first pass
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 9f172a3db01b779c55c0b2daec5585052a58b071 Author: Michael Tremer michael.tremer@ipfire.org Date: Sat May 20 09:32:36 2017 +0100
make.sh: Correctly set environment variables in toolchain pass
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: lfs/binutils | 3 +++ tools/make-functions | 10 +++++----- 2 files changed, 8 insertions(+), 5 deletions(-)
Difference in files: diff --git a/lfs/binutils b/lfs/binutils index db59d97..8bf6dec 100644 --- a/lfs/binutils +++ b/lfs/binutils @@ -46,6 +46,9 @@ ifeq "$(ROOT)" "" EXTRA_INSTALL = tooldir=/usr else ifeq "$(PASS)" "1" + CFLAGS := $(patsubst -march=%,,$(CFLAGS)) + CFLAGS := $(patsubst -mfloat-abi=%,,$(CFLAGS)) + TARGET = $(DIR_INFO)/$(THISAPP)-tools1 EXTRA_CONFIG = \ --target=$(CROSSTARGET) \ diff --git a/tools/make-functions b/tools/make-functions index ebe157a..356162f 100644 --- a/tools/make-functions +++ b/tools/make-functions @@ -607,21 +607,21 @@ lfsmake1() {
cd $BASEDIR/lfs && env -i \ PATH="/tools/ccache/bin:/tools/bin:$PATH" \ + CCACHE_DIR="${CCACHE_DIR}" \ + CCACHE_COMPRESS="${CCACHE_COMPRESS}" \ + CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ make -f $* \ TOOLCHAIN=1 \ CROSSTARGET="${CROSSTARGET}" \ BUILDTARGET="${BUILDTARGET}" \ BUILD_ARCH="${BUILD_ARCH}" \ BUILD_PLATFORM="${BUILD_PLATFORM}" \ - CFLAGS="${CFLAGS}" \ - CXXFLAGS="${CXXFLAGS}" \ LFS_BASEDIR="${BASEDIR}" \ ROOT="${LFS}" \ KVER="${KVER}" \ MAKETUNING="${MAKETUNING}" \ - CCACHE_DIR="${CCACHE_DIR}" \ - CCACHE_COMPRESS="${CCACHE_COMPRESS}" \ - CCACHE_COMPILERCHECK="${CCACHE_COMPILERCHECK}" \ install >> $LOGFILE 2>&1
local COMPILE_SUCCESS=$?
hooks/post-receive -- IPFire 2.x development tree