* mold/macOS is now available as an alpha feature. We do not recommend using it for anything serious though. Starting from this version, we accept not only mold/Unix issues but also mold/macOS ones on our GitHub Issues. Feel free to file a bug if you encounter any problem. * We started supporting CMake in addition to Make to build mold. Our long-term plan is to migrate from Make to CMake because we want to support Windows eventually and CMake provides a better Windows support than Make does. (e6a0e67) * There was a bug that mold accidentally exported a hidden symbol from an executable if a shared library linked to that executable happened to define the same symbol. This caused a build issue with Blender (#606). The bug has been fixed. (b163068) --hash-style=both is now the default if no --hash-style option is given. Previously, --hash-style=sysv was the default. This change shouldn't affect most users because the compiler driver (cc, gcc, clang, etc.) always passes --hash-style to the linker. We made this change because GNU ld defaults to --hash-style=both. * Alias symbols defined by the --defsym option now have the same scope as the aliased symbols. Previously, alias symbols defined by --defsym were always hidden and never be exported as dynamic symbols. (5dd1227) * mold now accepts foo = bar-style linker script directive to define symbol aliases. Previously, such statement was treated as a syntax error. This change was made to link mariadb-connector-c correctly (f0e1237) * Symbols in mergeable string sections now have correct output section indices instead of SHN_UNDEF. (a595c48) * [ARM32] Previously, calling a function from ARM code to Thumb code caused a program crash due to bug #442. This issue has been fixed. (053b90b) - Run tests in parallel. OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/mold?expand=0&rev=65
135 lines
3.4 KiB
RPMSpec
135 lines
3.4 KiB
RPMSpec
#
|
|
# spec file for package mold
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: mold
|
|
Version: 1.4.1
|
|
Release: 0
|
|
Summary: A Modern Linker (mold)
|
|
License: AGPL-3.0-or-later
|
|
Group: Development/Tools/Building
|
|
URL: https://github.com/rui314/mold
|
|
Source: https://github.com/rui314/mold/archive/v%{version}/mold-%{version}.tar.gz
|
|
ExclusiveArch: aarch64 %arm %ix86 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
|
|
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 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
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%if %{suse_version} < 1550
|
|
export CC=gcc-10
|
|
export CXX=g++-10
|
|
%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
|
|
%if %{suse_version} < 1550
|
|
export TEST_CC=gcc-10
|
|
export TEST_CXX=g++-10
|
|
%endif
|
|
%make_build 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
|
|
%{_libexecdir}/mold/ld
|
|
%dir %{_libexecdir}/mold
|
|
%{_libdir}/mold/mold-wrapper.so
|
|
%{_mandir}/man1/mold.1.gz
|
|
%{_mandir}/man1/ld.mold.1.gz
|
|
%dir /usr/share/doc/mold
|
|
%doc /usr/share/doc/mold/LICENSE
|
|
|
|
%changelog
|