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 3.x development tree".
The branch, master has been updated via 0c55b410c662bf766ba8ca6133279630bf153410 (commit) via 9ab36f618b7867e39a828c8c2e2ffa2ea5bfcbd2 (commit) from 1544a62869c0c597b0ff18f3227a37551a376f2a (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 0c55b410c662bf766ba8ca6133279630bf153410 Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Dec 18 22:35:30 2018 +0000
glibc: Compile with -O2
Instead of compiling with -O3, we now compile this with -O2 which is the default for the whole system. It looks like binaries launch and perform a little bit slower than on some other distributions, but there is no explanation to it.
This change will reduce the size of the libc and sibling libraries which will hopefully allow to load them faster. Code might potentially execute slower on some machines, but this impact might be less than the startup time of the binaries.
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
commit 9ab36f618b7867e39a828c8c2e2ffa2ea5bfcbd2 Author: Michael Tremer michael.tremer@ipfire.org Date: Tue Dec 18 22:17:00 2018 +0000
sqlite: Update to 3.26.0
Signed-off-by: Michael Tremer michael.tremer@ipfire.org
-----------------------------------------------------------------------
Summary of changes: glibc/glibc.nm | 4 ++-- sqlite/sqlite.nm | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-)
Difference in files: diff --git a/glibc/glibc.nm b/glibc/glibc.nm index d4ec78b6b..012e5b3d8 100644 --- a/glibc/glibc.nm +++ b/glibc/glibc.nm @@ -5,7 +5,7 @@
name = glibc version = 2.28 -release = 1 +release = 2
maintainer = Michael Tremer michael.tremer@ipfire.org groups = System/Base @@ -45,7 +45,7 @@ build end
# Build glibc with custom cflags - GLIBC_FLAGS = -O3 -g -fasynchronous-unwind-tables -DNDEBUG + GLIBC_FLAGS = -O2 -g -DNDEBUG -pipe
if "%{DISTRO_ARCH}" == "i686" GLIBC_FLAGS += -march=i686 -mtune=generic diff --git a/sqlite/sqlite.nm b/sqlite/sqlite.nm index 9f8df4096..5e951c786 100644 --- a/sqlite/sqlite.nm +++ b/sqlite/sqlite.nm @@ -4,9 +4,9 @@ ###############################################################################
name = sqlite -version = 3.14.1 +version = 3.26.0 release = 1 -realver = 3140100 +realver = 3260000
groups = System/Databases url = http://www.sqlite.org/ @@ -23,7 +23,7 @@ description end
thisapp = %{name}-autoconf-%{realver} -source_dl = http://www.sqlite.org/2016/ +source_dl = http://www.sqlite.org/2018/
build requires
hooks/post-receive -- IPFire 3.x development tree