diff --git a/mold-1.1.1.tar.gz b/mold-1.1.1.tar.gz new file mode 100644 index 0000000..e0c7fb2 --- /dev/null +++ b/mold-1.1.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47c5ddfe60beffc01da954191c819d78924e4d1eb96aeebfa24e1862cb3a33f9 +size 4530297 diff --git a/mold-1.1.tar.gz b/mold-1.1.tar.gz deleted file mode 100644 index f7561df..0000000 --- a/mold-1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2f04bb2cd58797258c4f5f6f29fd2667f8b6c6b2bc76c731fede526884ea9a0c -size 4522886 diff --git a/mold.changes b/mold.changes index 3680125..065085e 100644 --- a/mold.changes +++ b/mold.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Tue Mar 8 12:07:34 UTC 2022 - Martin Liška + +- Respect %{optflags}. + +------------------------------------------------------------------- +Tue Mar 8 09:58:13 UTC 2022 - Martin Liška + +- Update to version 1.1.1 + * Native LTO (Link-Time Optimization) support + * RISC-V CPU architecture support + * Optimize memory usage by reducing the sizes of + frequently-allocated objects; roughly 6% redux in the maximum + RSS. + ------------------------------------------------------------------- Wed Feb 23 23:29:01 UTC 2022 - Christoph G diff --git a/mold.spec b/mold.spec index 65473b9..5435319 100644 --- a/mold.spec +++ b/mold.spec @@ -17,7 +17,7 @@ Name: mold -Version: 1.1 +Version: 1.1.1 Release: 0 Summary: A Modern Linker (mold) License: AGPL-3.0-or-later @@ -61,12 +61,13 @@ export CXX=g++-10 export CC=gcc export CXX=g++ %endif -export CFLAGS="%{optflags} -Wno-sign-compare" -export CXXFLAGS="${CFLAGS}" export MANDIR=%{_mandir} export LIBDIR=%{_libdir} export BINDIR=%{_bindir} -%make_build %{build_args} + +export CXXFLAGS="%{optflags} -Wno-sign-compare" +export LDFLAGS="${CXXFLAGS}" +%make_build %{build_args} CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" %install %make_install PREFIX=%{_prefix} BINDIR=%{_bindir} MANDIR=%{_mandir} LIBDIR=%{_libdir} %{build_args}