We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a83473f commit 06883c7Copy full SHA for 06883c7
build-all.sh
@@ -22,6 +22,13 @@ if [ $# -lt 1 ]; then
22
fi
23
PREFIX="$1"
24
25
+for dep in git svn cmake; do
26
+ if ! hash $dep 2>/dev/null; then
27
+ echo "$dep not installed. Please install it and retry" 1>&2
28
+ exit 1
29
+ fi
30
+done
31
+
32
./build-llvm.sh $PREFIX
33
./install-wrappers.sh $PREFIX
34
./build-mingw-w64.sh $PREFIX
0 commit comments