The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
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.
 
 
 
 
 
 

39 lines
804 B

#!/bin/bash
# Keeping up with Bazel's breaking changes is currently difficult.
# This script wraps calling bazel by downloading the currently
# supported version, and then calling it. This way, we can make sure
# that running bazel will always get meaningful results, at least
# until Bazel 1.0 is released.
set -e
VERSION=0.24.1
CWD=`pwd`
BASEURL=https://github.com/bazelbuild/bazel/releases/download/
cd `dirname $0`
TOOLDIR=`pwd`
case `uname -sm` in
"Linux x86_64")
suffix=linux-x86_64
;;
"Darwin x86_64")
suffix=darwin-x86_64
;;
*)
echo "Unsupported architecture: `uname -sm`"
exit 1
;;
esac
filename=bazel-$VERSION-$suffix
if [ ! -x $filename ] ; then
curl -L $BASEURL/$VERSION/$filename > $filename
chmod a+x $filename
fi
cd $CWD
$TOOLDIR/$filename $@