You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
if test -n "$LLVM_VERSION"; then
|
|
export LLVM_CONFIG="llvm-config-${LLVM_VERSION}"
|
|
fi
|
|
|
|
rm -rf build
|
|
scons $SCONS_TARGET force_scons=on
|
|
eval $SCONS_CHECK_COMMAND
|