Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/compiler-rt-sanitizers/
Date: Thu, 17 Jun 2021 09:05:26
Message-Id: 1623920709.df4671798d0d0aa5f43483fb6085ecf2168dab15.mgorny@gentoo
1 commit: df4671798d0d0aa5f43483fb6085ecf2168dab15
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 17 08:55:57 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 17 09:05:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df467179
7
8 sys-libs/compiler-rt-sanitizers: Bump to 12.0.1rc2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 sys-libs/compiler-rt-sanitizers/Manifest | 1 +
13 .../compiler-rt-sanitizers-12.0.1_rc2.ebuild | 200 +++++++++++++++++++++
14 2 files changed, 201 insertions(+)
15
16 diff --git a/sys-libs/compiler-rt-sanitizers/Manifest b/sys-libs/compiler-rt-sanitizers/Manifest
17 index f479d3674d7..466ea268532 100644
18 --- a/sys-libs/compiler-rt-sanitizers/Manifest
19 +++ b/sys-libs/compiler-rt-sanitizers/Manifest
20 @@ -6,3 +6,4 @@ DIST llvmorg-10.0.1.tar.gz 120880730 BLAKE2B 30f19f56c4d1f6abcda5fec76256219d1e3
21 DIST llvmorg-11.1.0.tar.gz 122776532 BLAKE2B ca842ff4afff8f44c82b5e7383962a9c45ca1c93b64fa4c6ebcd70a1d3849dbad2b8e4e24fba02d144c6266d7fab3607ebc6999b28c229cb35256cf40f26a985 SHA512 9a8ce022a935eed42fa71a224f2a207122aadcbef58ee855fdb4825f879e7d028e4dcff22c19b9d336db1c8bf63fb84372d44981acf84615f757e54306c92b81
22 DIST llvmorg-12.0.0.tar.gz 134226215 BLAKE2B f9c3ba8c58571855caa4f206fd285c9b5be66672fb0814cb8bc0964a051f57f5d35013aa1e27cbda502652b37df1ec23474129109e76a42066847860db441dbe SHA512 0cff02155c5ac0d6db2b72d60d9819d5b5dd859663b45f721b1c7540239c2fceb1f57d9173f6870c49de851c242ed8e85c5c6d6577a1f8092a7c5dcd12513b26
23 DIST llvmorg-12.0.1-rc1.tar.gz 134261735 BLAKE2B d29510495641c06e6d7a5ac165e6d34e0ba15d1a5b786534e186e341e3a0550cdd3d8a2b61deb3e2bf44c0b0ff8561224bf7f8cebc2ce9415639cb67ceae289e SHA512 4595a26df56eed7d5941240fe92116ad2f1c61639f0f464697c2c530a601347032fbad6802d1fa915ced8574c7b30ef05bc8c0be737784c844d3860892817e6e
24 +DIST llvmorg-12.0.1-rc2.tar.gz 134274147 BLAKE2B 2d3f6ce8d5239cf2e5ea52f4b9020d6a8fedb8d6a4df02ca0d8e4398237f4eb967865e1e65570d16cd191865281b9619a63905c1e1c47b31183b881e97e49867 SHA512 cdebb954016dc92251cd9c6281804f7a36e7bc8c6f101a6817d96cc121aba4d361fb99501c259409a29c90d7749b224be670c41177fe43fa64b730ff294831b8
25
26 diff --git a/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1_rc2.ebuild b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1_rc2.ebuild
27 new file mode 100644
28 index 00000000000..e96a0217228
29 --- /dev/null
30 +++ b/sys-libs/compiler-rt-sanitizers/compiler-rt-sanitizers-12.0.1_rc2.ebuild
31 @@ -0,0 +1,200 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7..9} )
38 +inherit check-reqs cmake flag-o-matic llvm llvm.org python-any-r1
39 +
40 +DESCRIPTION="Compiler runtime libraries for clang (sanitizers & xray)"
41 +HOMEPAGE="https://llvm.org/"
42 +
43 +LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
44 +SLOT="$(ver_cut 1-3)"
45 +KEYWORDS=""
46 +IUSE="+clang test elibc_glibc"
47 +# base targets
48 +IUSE+=" +libfuzzer +memprof +profile +xray"
49 +# sanitizer targets, keep in sync with config-ix.cmake
50 +# NB: ubsan, scudo deliberately match two entries
51 +SANITIZER_FLAGS=(
52 + asan dfsan lsan msan hwasan tsan ubsan safestack cfi scudo
53 + shadowcallstack gwp-asan
54 +)
55 +IUSE+=" ${SANITIZER_FLAGS[@]/#/+}"
56 +REQUIRED_USE="
57 + || ( ${SANITIZER_FLAGS[*]} libfuzzer profile xray )
58 + test? (
59 + cfi? ( ubsan )
60 + gwp-asan? ( scudo )
61 + )"
62 +RESTRICT="!test? ( test ) !clang? ( test )"
63 +
64 +CLANG_SLOT=${SLOT%%.*}
65 +# llvm-6 for new lit options
66 +DEPEND="
67 + >=sys-devel/llvm-6"
68 +BDEPEND="
69 + >=dev-util/cmake-3.16
70 + clang? ( sys-devel/clang )
71 + elibc_glibc? ( net-libs/libtirpc )
72 + test? (
73 + !<sys-apps/sandbox-2.13
74 + $(python_gen_any_dep ">=dev-python/lit-5[\${PYTHON_USEDEP}]")
75 + =sys-devel/clang-${PV%_*}*:${CLANG_SLOT}
76 + sys-libs/compiler-rt:${SLOT}
77 + )
78 + ${PYTHON_DEPS}"
79 +
80 +LLVM_COMPONENTS=( compiler-rt )
81 +LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support llvm/utils/unittest )
82 +LLVM_PATCHSET=9999-1
83 +llvm.org_set_globals
84 +
85 +python_check_deps() {
86 + use test || return 0
87 + has_version "dev-python/lit[${PYTHON_USEDEP}]"
88 +}
89 +
90 +check_space() {
91 + if use test; then
92 + local CHECKREQS_DISK_BUILD=11G
93 + check-reqs_pkg_pretend
94 + fi
95 +}
96 +
97 +pkg_pretend() {
98 + check_space
99 +}
100 +
101 +pkg_setup() {
102 + check_space
103 + llvm_pkg_setup
104 + python-any-r1_pkg_setup
105 +}
106 +
107 +src_prepare() {
108 + sed -i -e 's:-Werror::' lib/tsan/go/buildgo.sh || die
109 +
110 + local flag
111 + for flag in "${SANITIZER_FLAGS[@]}"; do
112 + if ! use "${flag}"; then
113 + local cmake_flag=${flag/-/_}
114 + sed -i -e "/COMPILER_RT_HAS_${cmake_flag^^}/s:TRUE:FALSE:" \
115 + cmake/config-ix.cmake || die
116 + fi
117 + done
118 +
119 + # TODO: fix these tests to be skipped upstream
120 + if use asan && ! use profile; then
121 + rm test/asan/TestCases/asan_and_llvm_coverage_test.cpp || die
122 + fi
123 + if use ubsan && ! use cfi; then
124 + > test/cfi/CMakeLists.txt || die
125 + fi
126 +
127 + llvm.org_src_prepare
128 +}
129 +
130 +src_configure() {
131 + # pre-set since we need to pass it to cmake
132 + BUILD_DIR=${WORKDIR}/compiler-rt_build
133 +
134 + if use clang; then
135 + local -x CC=${CHOST}-clang
136 + local -x CXX=${CHOST}-clang++
137 + strip-unsupported-flags
138 + fi
139 +
140 + local flag want_sanitizer=OFF
141 + for flag in "${SANITIZER_FLAGS[@]}"; do
142 + if use "${flag}"; then
143 + want_sanitizer=ON
144 + break
145 + fi
146 + done
147 +
148 + local mycmakeargs=(
149 + -DCOMPILER_RT_INSTALL_PATH="${EPREFIX}/usr/lib/clang/${SLOT}"
150 + # use a build dir structure consistent with install
151 + # this makes it possible to easily deploy test-friendly clang
152 + -DCOMPILER_RT_OUTPUT_DIR="${BUILD_DIR}/lib/clang/${SLOT}"
153 +
154 + -DCOMPILER_RT_INCLUDE_TESTS=$(usex test)
155 + # builtins & crt installed by sys-libs/compiler-rt
156 + -DCOMPILER_RT_BUILD_BUILTINS=OFF
157 + -DCOMPILER_RT_BUILD_CRT=OFF
158 + -DCOMPILER_RT_BUILD_LIBFUZZER=$(usex libfuzzer)
159 + -DCOMPILER_RT_BUILD_MEMPROF=$(usex memprof)
160 + -DCOMPILER_RT_BUILD_PROFILE=$(usex profile)
161 + -DCOMPILER_RT_BUILD_SANITIZERS="${want_sanitizer}"
162 + -DCOMPILER_RT_BUILD_XRAY=$(usex xray)
163 +
164 + -DPython3_EXECUTABLE="${PYTHON}"
165 + )
166 + if use test; then
167 + mycmakeargs+=(
168 + -DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm"
169 + -DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit"
170 + -DLLVM_LIT_ARGS="$(get_lit_flags)"
171 +
172 + # they are created during src_test()
173 + -DCOMPILER_RT_TEST_COMPILER="${BUILD_DIR}/lib/llvm/${CLANG_SLOT}/bin/clang"
174 + -DCOMPILER_RT_TEST_CXX_COMPILER="${BUILD_DIR}/lib/llvm/${CLANG_SLOT}/bin/clang++"
175 + )
176 +
177 + # same flags are passed for build & tests, so we need to strip
178 + # them down to a subset supported by clang
179 + CC=${EPREFIX}/usr/lib/llvm/${CLANG_SLOT}/bin/clang \
180 + CXX=${EPREFIX}/usr/lib/llvm/${CLANG_SLOT}/bin/clang++ \
181 + strip-unsupported-flags
182 + fi
183 +
184 + if use prefix && [[ "${CHOST}" == *-darwin* ]] ; then
185 + mycmakeargs+=(
186 + # setting -isysroot is disabled with compiler-rt-prefix-paths.patch
187 + # this allows adding arm64 support using SDK in EPREFIX
188 + -DDARWIN_macosx_CACHED_SYSROOT="${EPREFIX}/MacOSX.sdk"
189 + # Set version based on the SDK in EPREFIX
190 + # This disables i386 for SDK >= 10.15
191 + # Will error if has_use tsan and SDK < 10.12
192 + -DDARWIN_macosx_OVERRIDE_SDK_VERSION="$(realpath ${EPREFIX}/MacOSX.sdk | sed -e 's/.*MacOSX\(.*\)\.sdk/\1/')"
193 + # Use our libtool instead of looking it up with xcrun
194 + -DCMAKE_LIBTOOL="${EPREFIX}/usr/bin/${CHOST}-libtool"
195 + )
196 + fi
197 +
198 + cmake_src_configure
199 +
200 + if use test; then
201 + local sys_dir=( "${EPREFIX}"/usr/lib/clang/${SLOT}/lib/* )
202 + [[ -e ${sys_dir} ]] || die "Unable to find ${sys_dir}"
203 + [[ ${#sys_dir[@]} -eq 1 ]] || die "Non-deterministic compiler-rt install: ${sys_dir[*]}"
204 +
205 + # copy clang over since resource_dir is located relatively to binary
206 + # therefore, we can put our new libraries in it
207 + mkdir -p "${BUILD_DIR}"/lib/{llvm/${CLANG_SLOT}/{bin,$(get_libdir)},clang/${SLOT}/include} || die
208 + cp "${EPREFIX}"/usr/lib/llvm/${CLANG_SLOT}/bin/clang{,++} \
209 + "${BUILD_DIR}"/lib/llvm/${CLANG_SLOT}/bin/ || die
210 + cp "${EPREFIX}"/usr/lib/clang/${SLOT}/include/*.h \
211 + "${BUILD_DIR}"/lib/clang/${SLOT}/include/ || die
212 + cp "${sys_dir}"/*builtins*.a \
213 + "${BUILD_DIR}/lib/clang/${SLOT}/lib/${sys_dir##*/}/" || die
214 + # we also need LLVMgold.so for gold-based tests
215 + if [[ -f ${EPREFIX}/usr/lib/llvm/${CLANG_SLOT}/$(get_libdir)/LLVMgold.so ]]; then
216 + ln -s "${EPREFIX}"/usr/lib/llvm/${CLANG_SLOT}/$(get_libdir)/LLVMgold.so \
217 + "${BUILD_DIR}"/lib/llvm/${CLANG_SLOT}/$(get_libdir)/ || die
218 + fi
219 + fi
220 +}
221 +
222 +src_test() {
223 + # respect TMPDIR!
224 + local -x LIT_PRESERVES_TMP=1
225 + # disable sandbox to have it stop clobbering LD_PRELOAD
226 + local -x SANDBOX_ON=0
227 + # wipe LD_PRELOAD to make ASAN happy
228 + local -x LD_PRELOAD=
229 +
230 + cmake_build check-all
231 +}