mold/mold.spec

130 lines
3.2 KiB
RPMSpec
Raw Normal View History

#
# spec file for package mold
#
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
2022-01-04 19:37:29 +01:00
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
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
2022-01-04 19:37:29 +01:00
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: mold
Version: 1.2.1
Release: 0
Summary: A Modern Linker (mold)
License: AGPL-3.0-or-later
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
2022-01-04 19:37:29 +01:00
URL: https://github.com/rui314/mold
Source: https://github.com/rui314/mold/archive/v%{version}/mold-%{version}.tar.gz
ExclusiveArch: x86_64 aarch64 riscv64
BuildRequires: cmake
%if %{suse_version} < 1550
BuildRequires: gcc10-c++
%else
# These libraries are not present for openSUSE Leap
BuildRequires: gcc-c++
BuildRequires: clang
BuildRequires: libdwarf-tools
BuildRequires: llvm
BuildRequires: llvm-gold
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
2022-01-04 19:37:29 +01:00
BuildRequires: tbb-devel
%ifarch x86_64
BuildRequires: gcc-32bit
%endif
%endif
BuildRequires: gdb
BuildRequires: glibc-devel-static
BuildRequires: openssl-devel
BuildRequires: valgrind
BuildRequires: xxhash-devel
BuildRequires: zlib-devel
PreReq: update-alternatives
%if %{suse_version} < 1550
%define build_args STRIP=true SYSTEM_XXHASH=1 USE_MIMALLOC=0
%else
%define build_args STRIP=true SYSTEM_TBB=1 SYSTEM_XXHASH=1 SYSTEM_MIMALLOC=1 USE_MIMALLOC=0
%endif
%description
mold is a faster drop-in replacement for existing Unix linkers.
It is several times faster than LLVM lld linker, the second-fastest
open-source linker.
mold is created for increasing developer productivity by reducing
build time especially in rapid debug-edit-rebuild cycles.
%prep
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
2022-01-04 19:37:29 +01:00
%autosetup -p1
%build
%if %{suse_version} < 1550
export CC=gcc-10
export CXX=g++-10
%else
export CC=gcc
export CXX=g++
%endif
export CXXFLAGS="%{optflags} -Wno-sign-compare"
%make_build -e \
CXXFLAGS="${CXXFLAGS}" \
LDFLAGS="${CXXFLAGS}" \
PREFIX=%{_prefix} \
BINDIR=%{_bindir} \
MANDIR=%{_mandir} \
LIBDIR=%{_libdir} \
LIBEXECDIR=%{_libexecdir} \
%{build_args}
%install
%make_install -e \
PREFIX=%{_prefix} \
BINDIR=%{_bindir} \
MANDIR=%{_mandir} \
LIBDIR=%{_libdir} \
LIBEXECDIR=%{_libexecdir} \
%{build_args}
%check
make test -k -e \
PREFIX=%{_prefix} \
BINDIR=%{_bindir} \
MANDIR=%{_mandir} \
LIBDIR=%{_libdir} \
LIBEXECDIR=%{_libexecdir} \
%{build_args}
%post
"%_sbindir/update-alternatives" --install \
"%_bindir/ld" ld "%_bindir/ld.mold" 1
%pre
if [ "$1" -gt 0 ] && [ -f %{_sbindir}/update-alternatives ] ; then
"%_sbindir/update-alternatives" --remove ld "%_bindir/ld.mold";
fi;
%postun
if [ ! -f %{_bindir}/lld ] ; then
"%{_sbindir}/update-alternatives" --remove ld "%{_bindir}/ld.mold"
fi
%files
%ghost %_sysconfdir/alternatives/ld
%{_bindir}/mold
%{_bindir}/ld.mold
%{_bindir}/ld64.mold
%dir %{_libdir}/mold
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
2022-01-04 19:37:29 +01:00
%{_libexecdir}/mold/ld
%dir %{_libexecdir}/mold
%{_libdir}/mold/mold-wrapper.so
%{_mandir}/man1/mold.1.gz
%changelog