Skip to content
Permalink
update-openssh
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 41 lines (31 sloc) 885 Bytes
#!/usr/bin/env beesh
# BEE_VERSION llvm-9.0.1-1
# SRCURL[0]="https://github.com/llvm/llvm-project/releases/download/llvmorg-${PKGVERSION}/llvm-${PKGVERSION}.src.tar.xz"
SRCURL[0]="https://beehive.molgen.mpg.de/31eb9ce73dd2a0f8dcab8319fb03f8fc/llvm-9.0.1.src.tar.xz"
# PATCHURL+=()
# build_in_sourcedir
# sourcesubdir_append src
#mee_extract() {
# bee_extract "${@}"
#}
#mee_patch() {
# bee_patch "${@}"
#}
mee_configure() {
bee_configure \
-DCMAKE_BUILD_TYPE=Release \
-DLLVM_BUILD_LLVM_DYLIB=ON \
-DLLVM_LINK_LLVM_DYLIB=ON \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_TARGETS_TO_BUILD="X86;AMDGPU;BPF" \
-DLLVM_BUILD_TESTS=ON \
-DLLVM_INSTALL_UTILS=ON \
-Wno-dev \
-G Ninja
}
mee_build() {
start_cmd ninja -v -C ${B} ${BEE_NINJAFLAGS} "${@}"
}
mee_install() {
DESTDIR=${D} start_cmd ninja -C ${B} install "${@}"
}