aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ken Payson <kpayson@google.com>2017-04-10 15:53:17 -0700
committerGravatar Ken Payson <kpayson@google.com>2017-04-10 15:53:17 -0700
commit3b90055f2cd5a20d1f4ff2b4d1581795a4eef645 (patch)
tree0502194796134325fe1cae88299124b96a1385a1
parentf7796e0b2f482b98586d9bf831eb356b11025102 (diff)
Fix mac build
-rw-r--r--src/python/grpcio/commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/grpcio/commands.py b/src/python/grpcio/commands.py
index e50ccbe23e..f196b028a7 100644
--- a/src/python/grpcio/commands.py
+++ b/src/python/grpcio/commands.py
@@ -260,7 +260,7 @@ class BuildExt(build_ext.build_ext):
"""Custom build_ext command to enable compiler-specific flags."""
C_OPTIONS = {
- 'unix': ('-pthread', '-std=gnu99'),
+ 'unix': ('-pthread',),
'msvc': (),
}
LINK_OPTIONS = {}