Skip to content

Commit

Permalink
llvm: Use ninja over GNU Make
Browse files Browse the repository at this point in the history
  • Loading branch information
pmenzel committed Jun 26, 2019
1 parent adc0be1 commit f3f1cbb
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions llvm.be0
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,17 @@ mee_configure() {
-DLLVM_TARGETS_TO_BUILD="X86;AMDGPU;BPF" \
-DLLVM_BUILD_TESTS=ON \
-DLLVM_INSTALL_UTILS=ON \
-Wno-dev
-Wno-dev \
-G Ninja
}

#mee_build() {
# bee_build
#}
mee_build() {
start_cmd ninja -v -C ${B} ${BEE_MAKEFLAGS} "${@}"
}

#mee_install() {
# bee_install
#}
mee_install() {
DESTDIR=${D} start_cmd ninja -C ${B} install "${@}"
}
## by default this may be 'make install DESTDIR="${D}"'

###############################################################################
Expand Down

0 comments on commit f3f1cbb

Please sign in to comment.