SHA256
1
0
forked from pool/mold

- Do not use mimalloc, use system glibc allocator.

OBS-URL: https://build.opensuse.org/package/show/devel:tools:compiler/mold?expand=0&rev=34
This commit is contained in:
Martin Liška 2022-05-10 12:30:23 +00:00 committed by Git OBS Bridge
parent 3c3e3c8ac6
commit 5bed486ad0
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue May 10 12:30:07 UTC 2022 - Martin Liška <mliska@suse.cz>
- Do not use mimalloc, use system glibc allocator.
-------------------------------------------------------------------
Thu May 5 11:17:01 UTC 2022 - Martin Liška <mliska@suse.cz>

View File

@ -34,7 +34,6 @@ BuildRequires: clang
BuildRequires: libdwarf-tools
BuildRequires: llvm
BuildRequires: llvm-gold
BuildRequires: mimalloc-devel
BuildRequires: tbb-devel
%ifarch x86_64
BuildRequires: gcc-32bit
@ -49,9 +48,9 @@ BuildRequires: zlib-devel
PreReq: update-alternatives
%if %{suse_version} < 1550
%define build_args STRIP=true SYSTEM_XXHASH=1
%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
%define build_args STRIP=true SYSTEM_TBB=1 SYSTEM_XXHASH=1 SYSTEM_MIMALLOC=1 USE_MIMALLOC=0
%endif
%description