gentoo/llvm-runtimes/libatomic-stub/libatomic-stub-0.ebuild
Sam James 9b854af3d8
llvm-runtimes/libatomic-stub: use tc-getAR
Nothing guarantees AR is set.

Signed-off-by: Sam James <sam@gentoo.org>
2025-11-05 16:47:15 +00:00

28 lines
616 B
Bash

# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Stub library which allows compiler-rt to replace libatomic"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64"
RDEPEND="
llvm-runtimes/compiler-rt[atomic-builtins(-)]
!sys-devel/gcc
"
src_install() {
# Create an empty library, so that -latomic will not fail.
# The atomic routines will be provided implicitly by the compiler-rt
# builtins library.
$(tc-getAR) rc libatomic.a || die
dolib.a libatomic.a
}