From 9de417fa98155a5567e1ab6d064dce54d9a116ec82408b9ed7e3f3854c4ce2a7 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 4 Jan 2022 18:37:29 +0000 Subject: [PATCH] Accepting request 943544 from devel:gcc - Start using %{_libexecdir} as an installation location. - Remove quotationsmarks from build_args as it prevented the use of system packages for TBB and xxHash. - Drop configure-fix.patch as xxHash is used from system package, so we don't need to patch the wrong configuration of xxHash. - Use telling name of source tarball, adjust GitHub url to have matching names. - Update to version 1.0.1: * make install now creates /usr/local/libexec/mold/ld as a symlink to the mold executable. We do this for GCC. By passing -B/usr/local/libexec/mold, you can tell GCC to use ld inside that directory instead of /usr/bin/ld. (e8dcecf) * xxHash library is now included in the mold's source tree as a subtree for ease of building. If you want to link against a libxxhash in a system library directory, pass SYSTEM_XXHASH=1 to make. (665bffa) * The extern "C++" directive is now supported in the dynamic list. (7aa5c39) * --color-diagnostics is supported. mold used to ignore that flag. (6e290aa) * Not only * but also ? are now treated as special characters in the version script wildcard pattern. (31b0248) * The --threads=N option has been added as an alias for --thread-count=N. (f9ff048) * The following option has been added: --defsym (f6e8006), -z nodefaultlib (8c86c28), -z separate-code, -z noseparate-code and -z separate-lodable-segments (5601cf4), -z max-page-size (f3766cd) - Add workaround patch configure-fix.patch. OBS-URL: https://build.opensuse.org/request/show/943544 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/mold?expand=0&rev=3 --- mold-1.0.1.tar.gz | 3 +++ mold.changes | 34 ++++++++++++++++++++++++++++++++++ mold.spec | 20 ++++++++++++-------- v1.0.0.tar.gz | 3 --- 4 files changed, 49 insertions(+), 11 deletions(-) create mode 100644 mold-1.0.1.tar.gz delete mode 100644 v1.0.0.tar.gz diff --git a/mold-1.0.1.tar.gz b/mold-1.0.1.tar.gz new file mode 100644 index 0000000..7d8dab2 --- /dev/null +++ b/mold-1.0.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0d54602d1229c26583ee8a0132e53463c4d755f9dbc456475f388fd8a1aa3e4 +size 3675262 diff --git a/mold.changes b/mold.changes index e625966..16db025 100644 --- a/mold.changes +++ b/mold.changes @@ -1,3 +1,37 @@ +------------------------------------------------------------------- +Mon Jan 3 08:33:39 UTC 2022 - Martin Liška + +- Start using %{_libexecdir} as an installation location. + +------------------------------------------------------------------- +Sat Jan 1 22:23:26 UTC 2022 - Christoph G + +- Remove quotationsmarks from build_args as it prevented the use + of system packages for TBB and xxHash. +- Drop configure-fix.patch as xxHash is used from system package, + so we don't need to patch the wrong configuration of xxHash. +- Use telling name of source tarball, adjust GitHub url to have + matching names. + +------------------------------------------------------------------- +Sat Jan 1 21:37:43 UTC 2022 - Martin Liška + +- Update to version 1.0.1: + * make install now creates /usr/local/libexec/mold/ld as + a symlink to the mold executable. We do this for GCC. + By passing -B/usr/local/libexec/mold, you can tell GCC to use ld + inside that directory instead of /usr/bin/ld. (e8dcecf) + * xxHash library is now included in the mold's source tree as a subtree for ease of building. + If you want to link against a libxxhash in a system library directory, pass SYSTEM_XXHASH=1 to make. (665bffa) + * The extern "C++" directive is now supported in the dynamic list. (7aa5c39) + * --color-diagnostics is supported. mold used to ignore that flag. (6e290aa) + * Not only * but also ? are now treated as special characters in the version script wildcard pattern. (31b0248) + * The --threads=N option has been added as + an alias for --thread-count=N. (f9ff048) + * The following option has been added: --defsym (f6e8006), -z nodefaultlib (8c86c28), + -z separate-code, -z noseparate-code and -z separate-lodable-segments (5601cf4), -z max-page-size (f3766cd) +- Add workaround patch configure-fix.patch. + ------------------------------------------------------------------- Tue Dec 21 17:04:56 UTC 2021 - Martin Liška diff --git a/mold.spec b/mold.spec index 3f3bf23..9197e67 100644 --- a/mold.spec +++ b/mold.spec @@ -1,7 +1,7 @@ # # spec file for package mold # -# Copyright (c) 2021 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,26 +12,27 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: mold -Version: 1.0.0 +Version: 1.0.1 Release: 0 Summary: A Modern Linker (mold) License: AGPL-3.0-or-later -Url: https://github.com/rui314/mold -Source: https://github.com/rui314/mold/archive/refs/tags/v%{version}.tar.gz +URL: https://github.com/rui314/mold +Source: https://github.com/rui314/mold/archive/v%{version}/mold-%{version}.tar.gz BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: openssl-devel +BuildRequires: tbb-devel +BuildRequires: tbb-devel BuildRequires: xxhash-devel BuildRequires: zlib-devel -BuildRequires: tbb-devel PreReq: update-alternatives -%define build_args "SYSTEM_TBB=1 SYSTEM_XXHASH=1" +%define build_args SYSTEM_TBB=1 SYSTEM_XXHASH=1 %description mold is a faster drop-in replacement for existing Unix linkers. @@ -41,7 +42,7 @@ mold is created for increasing developer productivity by reducing build time especially in rapid debug-edit-rebuild cycles. %prep -%autosetup -p1 -n mold-%{version} +%autosetup -p1 %build export CC=gcc @@ -54,6 +55,7 @@ export BINDIR=%{_bindir} %make_build %{build_args} %install +export PREFIX=%{_prefix} export MANDIR=%{_mandir} export LIBDIR=%{_libdir} export BINDIR=%{_bindir} @@ -79,6 +81,8 @@ fi %{_bindir}/ld.mold %{_bindir}/ld64.mold %dir %{_libdir}/mold +%{_libexecdir}/mold/ld +%dir %{_libexecdir}/mold %{_libdir}/mold/mold-wrapper.so %{_mandir}/man1/mold.1.gz diff --git a/v1.0.0.tar.gz b/v1.0.0.tar.gz deleted file mode 100644 index 04570cf..0000000 --- a/v1.0.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7cf170b57a3767d944c80c7468215fa9f8fa176f94f411a5b62b3f56cf07400 -size 3482927