Cleaned up the usage to show the BuildAndIntegration configuration.

llvm-svn: 147325
This commit is contained in:
Greg Clayton 2011-12-28 22:34:32 +00:00
parent d2c46a6e39
commit 12a14e270e
1 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
#!/bin/sh -x
# Usage:
# build-lldb-llvm-clang <revision> [Debug|Release]
# build-lldb-llvm-clang <llvm-revision> <clang-revision> [Debug|Release]
# build-lldb-llvm-clang <revision> [Debug|Release|BuildAndIntegration]
# build-lldb-llvm-clang <llvm-revision> <clang-revision> [Debug|Release|BuildAndIntegration]
LLVM_REVISION=$1
CLANG_REVISION=$2
LLVM_CONFIGURATION=$3
if [ "$LLVM_REVISION" = "" ]; then
echo "Usage:\n build-lldb-llvm-clang <llvm-revision> [<clang-revision> Debug|Release]"
echo "Usage:\n build-lldb-llvm-clang <llvm-revision> [<clang-revision> Debug|Release||BuildAndIntegration]"
exit 1
fi