compiler-rt: update to 10.0.1

This commit is contained in:
Juergen Daubert 2020-07-22 11:53:35 +00:00
parent ffd50d8bd9
commit 3eeb23a47c
2 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/YuxCl7uOJPu6GJxqixDI+jVjJyZbN4hWvKTigrO4EGJ/XPmLIIUiivNe78yJCx9xzuJ6QF5YcKlHXlzRop+1w0=
SHA256 (Pkgfile) = 1f29061e18efc5c6405482ec1362230132f34b9f5fd7331dc2843a70f6164a27
RWSE3ohX2g5d/e0GpMQKc7d3ReAnSPZcalz0NVQn1e9ub9COBxR7lJpFYU0zu9UY8Ij8WMnI+uV3evaJroT+2tefcYfgrp8YWgg=
SHA256 (Pkgfile) = 8aec0d6208c717dbed5547d6444a4b541cca6bfe90f147f6896efc10070aa8dd
SHA256 (.footprint) = 6eb3fc11a34af7e00a6324bd81631c556fb4fc3b81af62605b9b0b2deface269
SHA256 (compiler-rt-10.0.0.src.tar.xz) = 6a7da64d3a0a7320577b68b9ca4933bdcab676e898b759850e827333c3282c75
SHA256 (compiler-rt-10.0.1.src.tar.xz) = d90dc8e121ca0271f0fd3d639d135bfaa4b6ed41e67bd6eb77808f72629658fa

View File

@ -4,16 +4,16 @@
# Depends on: llvm
name=compiler-rt
version=10.0.0
version=10.0.1
release=1
source=(https://github.com/llvm/llvm-project/releases/download/llvmorg-10.0.0/$name-$version.src.tar.xz)
source=(https://github.com/llvm/llvm-project/releases/download/llvmorg-$version/$name-$version.src.tar.xz)
build() {
cmake -S$name-$version.src -Bbuild -GNinja \
cmake -S $name-$version.src -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DPYTHON_EXECUTABLE=/usr/bin/python3 \
-Wno-dev
cmake --build build
DESTDIR=$PKG cmake --install build
ninja -C build
DESTDIR=$PKG ninja -C build install
}