aboutsummaryrefslogtreecommitdiff
path: root/projects/grpc
diff options
context:
space:
mode:
authorMatt Kwong <matt-kwong@users.noreply.github.com>2017-03-29 14:07:17 -0700
committerOliver Chang <oliverchang@users.noreply.github.com>2017-03-29 14:07:17 -0700
commitaeb7f0416f1c00675ac21eaed8b11d921eaddc6f (patch)
tree75cfaa9e5ee42d8229a2ec33a6b3b6eb1d28b74b /projects/grpc
parent35ab764e2e79ca5b48a1f97db338e715a25181bc (diff)
downloadoss-fuzz-aeb7f0416f1c00675ac21eaed8b11d921eaddc6f.tar.gz
Add c-ares to libraries to compile fuzzers with (#486)
Diffstat (limited to 'projects/grpc')
-rwxr-xr-xprojects/grpc/build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/projects/grpc/build.sh b/projects/grpc/build.sh
index c4410be4e..9d54b9c45 100755
--- a/projects/grpc/build.sh
+++ b/projects/grpc/build.sh
@@ -42,6 +42,7 @@ bazel-bin/test/core/util/*.a \
bazel-bin/test/core/end2end/*.a \
bazel-bin/third_party/boringssl-with-bazel/libssl.a \
bazel-bin/third_party/boringssl-with-bazel/libcrypto.a \
+bazel-bin/external/submodule_cares/_objs/ares/external/submodule_cares/cares/*.o \
bazel-bin/external/submodule_zlib/_objs/z/external/submodule_zlib/*.o \
bazel-bin/third_party/nanopb/*.a \
bazel-bin/*.a \
@@ -54,7 +55,7 @@ EXTERA_BAZEL_FLAGS="--strip=never $(for f in $CXXFLAGS; do if [ $f != "-stdlib=
bazel build --dynamic_mode=off --spawn_strategy=standalone --genrule_strategy=standalone \
$EXTERA_BAZEL_FLAGS \
$NO_VPTR \
- :all test/... third_party/boringssl-with-bazel/... third_party/nanopb/...
+ :all test/... third_party/boringssl-with-bazel/... third_party/nanopb/...
CFLAGS="${CFLAGS} -Iinclude -I."
CXXFLAGS="${CXXFLAGS} -Iinclude -I. -stdlib=libc++"