aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <atash@google.com>2016-01-20 13:30:29 -0800
committerGravatar Masood Malekghassemi <atash@google.com>2016-01-20 13:30:41 -0800
commit985152ca93b3de010364556b42bcffda37e3b90f (patch)
tree5f590df167ad6db336e62baa412ef25a43f51cb3
parent7ff9f3fe7fc38ea120eecadb6dad980890255731 (diff)
Fix missing libz and libm linker symbols
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4012397800..043cd1fed4 100644
--- a/setup.py
+++ b/setup.py
@@ -77,7 +77,7 @@ CYTHON_EXTENSION_MODULE_NAMES = ('grpc._cython.cygrpc',)
EXTENSION_INCLUDE_DIRECTORIES = (
(PYTHON_STEM,) + CORE_INCLUDE + BORINGSSL_INCLUDE)
-EXTENSION_LIBRARIES = ()
+EXTENSION_LIBRARIES = ('z', 'm',)
if not "darwin" in sys.platform:
EXTENSION_LIBRARIES += ('rt',)