aboutsummaryrefslogtreecommitdiffhomepage
path: root/grpc.BUILD
diff options
context:
space:
mode:
authorGravatar Kiril Gorovoy <kgorovoy@google.com>2016-09-14 16:01:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-09-14 17:17:46 -0700
commit6abf9327312db0bca45398677da0f46e59d9b668 (patch)
treed6161c4f3b075f598b1f28e18fdf879435d69b10 /grpc.BUILD
parent6b104af2a4b01f034632cb25ef30851c30d92ef9 (diff)
Add -std=gnu99 build flag to the gRPC++ build target to unbreak TensorFlow Serving. We can remove it when https://github.com/grpc/grpc/issues/7851 is fixed and incorportated into TensorFlow.
Change: 133193927
Diffstat (limited to 'grpc.BUILD')
-rw-r--r--grpc.BUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/grpc.BUILD b/grpc.BUILD
index 2579536b17..624079a0c7 100644
--- a/grpc.BUILD
+++ b/grpc.BUILD
@@ -1558,6 +1558,9 @@ cc_library(
":grpc",
":gpr",
],
+ copts = [
+ "-std=gnu99",
+ ],
)