[grpc] Add address sorting submodule to gRPC build.sh (#1276)

This commit is contained in:
Matt Kwong 2018-03-28 17:34:54 -07:00 committed by Max Moroz
parent 6ecb20612a
commit 6c41b292ac
1 changed files with 3 additions and 1 deletions

View File

@ -44,6 +44,7 @@ bazel-bin/external/boringssl/libssl.a \
bazel-bin/external/boringssl/libcrypto.a \ bazel-bin/external/boringssl/libcrypto.a \
bazel-bin/external/com_github_cares_cares/*.a \ bazel-bin/external/com_github_cares_cares/*.a \
bazel-bin/external/com_github_madler_zlib/*.a \ bazel-bin/external/com_github_madler_zlib/*.a \
bazel-bin/third_party/address_sorting/*.a \
bazel-bin/third_party/nanopb/*.a \ bazel-bin/third_party/nanopb/*.a \
bazel-bin/*.a \ bazel-bin/*.a \
" "
@ -55,7 +56,8 @@ EXTERA_BAZEL_FLAGS="--strip=never $(for f in $CXXFLAGS; do if [ $f != "-stdlib=
bazel build --dynamic_mode=off --spawn_strategy=standalone --genrule_strategy=standalone \ bazel build --dynamic_mode=off --spawn_strategy=standalone --genrule_strategy=standalone \
$EXTERA_BAZEL_FLAGS \ $EXTERA_BAZEL_FLAGS \
$NO_VPTR \ $NO_VPTR \
:all test/core/util/... test/core/end2end/... third_party/nanopb/... @boringssl//:all @com_github_madler_zlib//:all @com_github_cares_cares//:all :all test/core/util/... test/core/end2end/... third_party/address_sorting/... \
third_party/nanopb/... @boringssl//:all @com_github_madler_zlib//:all @com_github_cares_cares//:all
CFLAGS="${CFLAGS} -Iinclude -I." CFLAGS="${CFLAGS} -Iinclude -I."
CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++" CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++"