Skip to content

Instantly share code, notes, and snippets.

@nickpresta
Last active March 14, 2017 20:10
Show Gist options
  • Save nickpresta/c250a7c94f071f4d521ab11a101336dc to your computer and use it in GitHub Desktop.
Save nickpresta/c250a7c94f071f4d521ab11a101336dc to your computer and use it in GitHub Desktop.
GRPC with glibc
# How to run:
# docker build --no-cache -t nick/lean-python-grpc . && docker run -it --rm nick/lean-python-grpc /bin/ash
FROM alpine:edge
RUN apk add --no-cache --update \
python3 python3-dev \
openssl ca-certificates \
build-base musl-dev linux-headers
# Setup dependencies
# From https://circleci.com/gh/sgerrand/alpine-pkg-glibc/86#artifacts/containers/0
RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-dev-2.25-r1.apk
RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-bin-2.25-r1.apk
RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-2.25-r1.apk
RUN apk --allow-untrusted add --update glibc-dev-2.25-r1.apk glibc-bin-2.25-r1.apk glibc-2.25-r1.apk
# Setup Python deps
RUN python3 -m pip install -U pip wheel
RUN CPATH=/usr/glibc-compat/include LIBRARY_PATH=/usr/glibc-compat/lib python3 -m pip install grpcio==1.1.3 grpcio-tools==1.1.3
$ docker build --no-cache -f Dockerfile.lean -t nick/lean-python-grpc . && docker run -it --rm nick/lean-python-grpc /bin/ash
Sending build context to Docker daemon 5.12 kB
Step 1/8 : FROM alpine:edge
---> 8914de95a28d
Step 2/8 : RUN apk add --no-cache --update python3 python3-dev openssl ca-certificates build-base musl-dev linux-headers
---> Running in f61aa5d2f405
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
(1/35) Installing binutils-libs (2.27-r1)
(2/35) Installing binutils (2.27-r1)
(3/35) Installing gmp (6.1.2-r0)
(4/35) Installing isl (0.17.1-r0)
(5/35) Installing libgomp (6.3.0-r1)
(6/35) Installing libatomic (6.3.0-r1)
(7/35) Installing pkgconf (1.3.0-r2)
(8/35) Installing libgcc (6.3.0-r1)
(9/35) Installing mpfr3 (3.1.5-r0)
(10/35) Installing mpc1 (1.0.3-r0)
(11/35) Installing libstdc++ (6.3.0-r1)
(12/35) Installing gcc (6.3.0-r1)
(13/35) Installing musl-dev (1.1.16-r3)
(14/35) Installing libc-dev (0.7.1-r0)
(15/35) Installing g++ (6.3.0-r1)
(16/35) Installing make (4.2.1-r0)
(17/35) Installing fortify-headers (0.8-r0)
(18/35) Installing build-base (0.5-r0)
(19/35) Installing ca-certificates (20161130-r0)
(20/35) Installing linux-headers (4.4.6-r2)
(21/35) Installing libcrypto1.0 (1.0.2k-r0)
(22/35) Installing libssl1.0 (1.0.2k-r0)
(23/35) Installing openssl (1.0.2k-r0)
(24/35) Installing libbz2 (1.0.6-r5)
(25/35) Installing expat (2.2.0-r0)
(26/35) Installing libffi (3.2.1-r3)
(27/35) Installing gdbm (1.12-r0)
(28/35) Installing xz-libs (5.2.3-r0)
(29/35) Installing ncurses-terminfo-base (6.0-r7)
(30/35) Installing ncurses-terminfo (6.0-r7)
(31/35) Installing ncurses-libs (6.0-r7)
(32/35) Installing readline (6.3.008-r5)
(33/35) Installing sqlite-libs (3.17.0-r1)
(34/35) Installing python3 (3.6.0-r0)
(35/35) Installing python3-dev (3.6.0-r0)
Executing busybox-1.26.2-r0.trigger
Executing ca-certificates-20161130-r0.trigger
OK: 247 MiB in 46 packages
---> 10a0a6e69919
Removing intermediate container f61aa5d2f405
Step 3/8 : RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-dev-2.25-r1.apk
---> Running in b15741f63cbe
Connecting to 86-33333969-gh.circle-artifacts.com (52.2.41.174:443)
glibc-dev-2.25-r1.ap 335k --:--:-- ETA
glibc-dev-2.25-r1.ap 943k --:--:-- ETA
glibc-dev-2.25-r1.ap 1678k --:--:-- ETA
glibc-dev-2.25-r1.ap 2766k --:--:-- ETA
glibc-dev-2.25-r1.ap 4013k --:--:-- ETA
glibc-dev-2.25-r1.ap 5037k --:--:-- ETA
glibc-dev-2.25-r1.ap 6556k --:--:-- ETA
glibc-dev-2.25-r1.ap 8123k --:--:-- ETA
glibc-dev-2.25-r1.ap 10074k --:--:-- ETA
glibc-dev-2.25-r1.ap 13465k --:--:-- ETA
glibc-dev-2.25-r1.ap 16247k --:--:-- ETA
glibc-dev-2.25-r1.ap 100% |*******************************| 18381k 0:00:00 ETA
---> 0c3e28aa5c69
Removing intermediate container b15741f63cbe
Step 4/8 : RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-bin-2.25-r1.apk
---> Running in 16b678766fb8
Connecting to 86-33333969-gh.circle-artifacts.com (52.2.41.174:443)
glibc-bin-2.25-r1.ap 311k --:--:-- ETA
glibc-bin-2.25-r1.ap 100% |*******************************| 1721k 0:00:00 ETA
---> a4073563b611
Removing intermediate container 16b678766fb8
Step 5/8 : RUN wget https://86-33333969-gh.circle-artifacts.com/0/home/ubuntu/alpine-pkg-glibc/packages/builder/x86_64/glibc-2.25-r1.apk
---> Running in 28c27384d52b
Connecting to 86-33333969-gh.circle-artifacts.com (52.2.41.174:443)
glibc-2.25-r1.apk 785k --:--:-- ETA
glibc-2.25-r1.apk 100% |*******************************| 2892k 0:00:00 ETA
---> 93a8fde7b381
Removing intermediate container 28c27384d52b
Step 6/8 : RUN apk --allow-untrusted add --update glibc-dev-2.25-r1.apk glibc-bin-2.25-r1.apk glibc-2.25-r1.apk
---> Running in a969cb7e8fbe
fetch http://dl-cdn.alpinelinux.org/alpine/edge/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz
(1/3) Installing glibc (2.25-r1)
(2/3) Installing glibc-bin (2.25-r1)
(3/3) Installing glibc-dev (2.25-r1)
Executing glibc-bin-2.25-r1.trigger
OK: 291 MiB in 49 packages
---> be3d93e6fb0c
Removing intermediate container a969cb7e8fbe
Step 7/8 : RUN python3 -m pip install -U pip wheel
---> Running in 69fadccb1d11
Requirement already up-to-date: pip in /usr/lib/python3.6/site-packages
Collecting wheel
Downloading wheel-0.29.0-py2.py3-none-any.whl (66kB)
Installing collected packages: wheel
Successfully installed wheel-0.29.0
---> b01ddab53408
Removing intermediate container 69fadccb1d11
Step 8/8 : RUN CPATH=/usr/glibc-compat/include LIBRARY_PATH=/usr/glibc-compat/lib python3 -m pip install grpcio==1.1.3 grpcio-tools==1.1.3
---> Running in d59b470653c8
Collecting grpcio==1.1.3
Downloading grpcio-1.1.3.tar.gz (7.2MB)
Collecting grpcio-tools==1.1.3
Downloading grpcio-tools-1.1.3.tar.gz (1.8MB)
Collecting six>=1.5.2 (from grpcio==1.1.3)
Downloading six-1.10.0-py2.py3-none-any.whl
Collecting enum34>=1.0.4 (from grpcio==1.1.3)
Downloading enum34-1.1.6-py3-none-any.whl
Collecting protobuf>=3.0.0 (from grpcio==1.1.3)
Downloading protobuf-3.2.0-py2.py3-none-any.whl (360kB)
Requirement already satisfied: setuptools in /usr/lib/python3.6/site-packages (from protobuf>=3.0.0->grpcio==1.1.3)
Building wheels for collected packages: grpcio, grpcio-tools
Running setup.py bdist_wheel for grpcio: started
Running setup.py bdist_wheel for grpcio: finished with status 'error'
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-t_244v_o/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp1khhd4b9pip-wheel- --python-tag cp36:
Found cython-generated files...
running bdist_wheel
running build
running build_py
running build_project_metadata
creating python_build
creating python_build/lib.linux-x86_64-3.6
creating python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_grpcio_metadata.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_plugin_wrapping.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_auth.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_utilities.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_credential_composition.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_channel.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_common.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_server.py -> python_build/lib.linux-x86_64-3.6/grpc
creating python_build/lib.linux-x86_64-3.6/grpc/_cython
copying src/python/grpcio/grpc/_cython/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython
creating python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_client_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_server_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_connectivity_channel.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/interfaces.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/implementations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
creating python_build/lib.linux-x86_64-3.6/grpc/framework
copying src/python/grpcio/grpc/framework/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
copying src/python/grpcio/grpc/_cython/_cygrpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
copying src/python/grpcio/grpc/framework/interfaces/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
creating python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/logging_pool.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/abandonment.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/callable_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/future.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
creating python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/style.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/cardinality.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/base.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/face.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
copying src/python/grpcio/grpc/_cython/_credentials/roots.pem -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
running build_ext
Found cython-generated files...
building 'grpc._cython.cygrpc' extension
creating python_build/temp.linux-x86_64-3.6
creating python_build/temp.linux-x86_64-3.6/src
creating python_build/temp.linux-x86_64-3.6/src/python
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython
creating python_build/temp.linux-x86_64-3.6/src/core
creating python_build/temp.linux-x86_64-3.6/src/core/lib
creating python_build/temp.linux-x86_64-3.6/src/core/lib/profiling
creating python_build/temp.linux-x86_64-3.6/src/core/lib/support
creating python_build/temp.linux-x86_64-3.6/src/core/lib/surface
creating python_build/temp.linux-x86_64-3.6/src/core/lib/channel
creating python_build/temp.linux-x86_64-3.6/src/core/lib/compression
creating python_build/temp.linux-x86_64-3.6/src/core/lib/debug
creating python_build/temp.linux-x86_64-3.6/src/core/lib/http
creating python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr
creating python_build/temp.linux-x86_64-3.6/src/core/lib/json
creating python_build/temp.linux-x86_64-3.6/src/core/lib/slice
creating python_build/temp.linux-x86_64-3.6/src/core/lib/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/context
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/util
creating python_build/temp.linux-x86_64-3.6/src/core/lib/tsi
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1
creating python_build/temp.linux-x86_64-3.6/third_party
creating python_build/temp.linux-x86_64-3.6/third_party/nanopb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr
creating python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen
creating python_build/temp.linux-x86_64-3.6/src/core/plugin_registry
creating python_build/temp.linux-x86_64-3.6/src/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl
creating python_build/temp.linux-x86_64-3.6/third_party/zlib
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/python/grpcio/grpc/_cython/cygrpc.c -o python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython/cygrpc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:64:0: warning: "PTHREAD_KEYS_MAX" redefined
#define PTHREAD_KEYS_MAX 1024
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:63:0: note: this is the location of the previous definition
#define PTHREAD_KEYS_MAX 128
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:69:0: warning: "PTHREAD_DESTRUCTOR_ITERATIONS" redefined
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:65:0: note: this is the location of the previous definition
#define PTHREAD_DESTRUCTOR_ITERATIONS 4
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:81:0: warning: "PTHREAD_STACK_MIN" redefined
#define PTHREAD_STACK_MIN 16384
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:64:0: note: this is the location of the previous definition
#define PTHREAD_STACK_MIN 2048
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:84:0: warning: "DELAYTIMER_MAX" redefined
#define DELAYTIMER_MAX 2147483647
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:68:0: note: this is the location of the previous definition
#define DELAYTIMER_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:93:0: warning: "HOST_NAME_MAX" redefined
#define HOST_NAME_MAX 64
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:59:0: note: this is the location of the previous definition
#define HOST_NAME_MAX 255
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:99:0: warning: "SEM_VALUE_MAX" redefined
#define SEM_VALUE_MAX (2147483647)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:66:0: note: this is the location of the previous definition
#define SEM_VALUE_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/limits.h:187:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/posix2_lim.h:88:0: warning: "RE_DUP_MAX" redefined
#define RE_DUP_MAX (0x7fff)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:82:0: note: this is the location of the previous definition
#define RE_DUP_MAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:65:0: warning: "_XOPEN_IOV_MAX" redefined
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:150:0: note: this is the location of the previous definition
#define _XOPEN_IOV_MAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:70:0: warning: "NL_ARGMAX" redefined
#define NL_ARGMAX _POSIX_ARG_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:84:0: note: this is the location of the previous definition
#define NL_ARGMAX 9
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:73:0: warning: "NL_LANGMAX" redefined
#define NL_LANGMAX _POSIX2_LINE_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:85:0: note: this is the location of the previous definition
#define NL_LANGMAX 32
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:76:0: warning: "NL_MSGMAX" redefined
#define NL_MSGMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:86:0: note: this is the location of the previous definition
#define NL_MSGMAX 32767
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:81:0: warning: "NL_NMAX" redefined
# define NL_NMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:95:0: note: this is the location of the previous definition
#define NL_NMAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:85:0: warning: "NL_SETMAX" redefined
#define NL_SETMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:87:0: note: this is the location of the previous definition
#define NL_SETMAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:88:0: warning: "NL_TEXTMAX" redefined
#define NL_TEXTMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:88:0: note: this is the location of the previous definition
#define NL_TEXTMAX 2048
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:460:4: note: in expansion of macro '_IO_va_list'
_IO_va_list, int *__restrict);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:462:5: note: in expansion of macro '_IO_va_list'
_IO_va_list);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:80:9: note: in expansion of macro '_G_va_list'
typedef _G_va_list va_list;
^~~~~~~~~~
In file included from /usr/include/python3.6m/Python.h:25:0,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/stdio.h:80:20: error: conflicting types for 'va_list'
typedef _G_va_list va_list;
^~~~~~~
In file included from /usr/include/stdarg.h:10:0,
from /usr/glibc-compat/include/libio.h:49,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/bits/alltypes.h:6:27: note: previous declaration of 'va_list' was here
typedef __builtin_va_list va_list;
^~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:375:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:380:54: note: in expansion of macro '_G_va_list'
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:383:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg) __THROWNL;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:394:42: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:403:9: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:416:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:475:7: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:482:53: note: in expansion of macro '_G_va_list'
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:487:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:906:8: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:27:7: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:44:4: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:57:8: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:75:35: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:89:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:91:6: note: in expansion of macro '_G_va_list'
_G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:114:40: note: in expansion of macro '_G_va_list'
vprintf (const char *__restrict __fmt, _G_ Failed building wheel for grpcio
va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:125:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:134:37: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:150:51: note: in expansion of macro '_G_va_list'
vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:162:38: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:171:7: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:208:5: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:215:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdlib.h:941:0,
from /usr/include/python3.6m/Python.h:34,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/stdlib.h: In function 'wctomb':
/usr/glibc-compat/include/bits/stdlib.h:90:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/include/python3.6m/unicodeobject.h:111:0,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/wchar.h: At top level:
/usr/glibc-compat/include/wchar.h:620:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:627:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:633:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:697:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:704:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:709:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:306:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:312:6: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap), vswprintf);
^
/usr/glibc-compat/include/sys/cdefs.h:200:11: note: in definition of macro '__REDIRECT_NTH'
name proto __asm__ (__ASMNAME (#alias)) __THROW
^~~~~
/usr/glibc-compat/include/bits/wchar2.h:309:12: note: in expansion of macro '__REDIRECT_NTH_LDBL'
extern int __REDIRECT_NTH_LDBL (__vswprintf_alias,
^~~~~~~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:316:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap))
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:333:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:335:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:358:44: error: unknown type name '__gnuc_va_list'
vwprintf (const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:365:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h: In function 'wcrtomb':
/usr/glibc-compat/include/bits/wchar2.h:448:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:486:0:
include/grpc/support/alloc.h: At top level:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:489:0:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2303:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2304:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11496:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11570:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_10ChannelArg___cinit__':
src/python/grpcio/grpc/_cython/cygrpc.c:14570:38: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
__pyx_v_self->ptr_vtable.destroy = (&__pyx_f_4grpc_7_cython_6cygrpc_destroy_ptr);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_17_MetadataIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:16017:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_19_OperationsIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:19650:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
creating tmp
creating tmp/tmpdwtxdrgc
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -I/usr/include/python3.6m -c /tmp/tmpdwtxdrgc/a.c -o tmp/tmpdwtxdrgc/a.o
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:64:0: warning: "PTHREAD_KEYS_MAX" redefined
#define PTHREAD_KEYS_MAX 1024
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:63:0: note: this is the location of the previous definition
#define PTHREAD_KEYS_MAX 128
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:69:0: warning: "PTHREAD_DESTRUCTOR_ITERATIONS" redefined
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:65:0: note: this is the location of the previous definition
#define PTHREAD_DESTRUCTOR_ITERATIONS 4
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:81:0: warning: "PTHREAD_STACK_MIN" redefined
#define PTHREAD_STACK_MIN 16384
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:64:0: note: this is the location of the previous definition
#define PTHREAD_STACK_MIN 2048
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:84:0: warning: "DELAYTIMER_MAX" redefined
#define DELAYTIMER_MAX 2147483647
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:68:0: note: this is the location of the previous definition
#define DELAYTIMER_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:93:0: warning: "HOST_NAME_MAX" redefined
#define HOST_NAME_MAX 64
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:59:0: note: this is the location of the previous definition
#define HOST_NAME_MAX 255
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:99:0: warning: "SEM_VALUE_MAX" redefined
#define SEM_VALUE_MAX (2147483647)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:66:0: note: this is the location of the previous definition
#define SEM_VALUE_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/limits.h:187:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/posix2_lim.h:88:0: warning: "RE_DUP_MAX" redefined
#define RE_DUP_MAX (0x7fff)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:82:0: note: this is the location of the previous definition
#define RE_DUP_MAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:65:0: warning: "_XOPEN_IOV_MAX" redefined
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:150:0: note: this is the location of the previous definition
#define _XOPEN_IOV_MAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:70:0: warning: "NL_ARGMAX" redefined
#define NL_ARGMAX _POSIX_ARG_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:84:0: note: this is the location of the previous definition
#define NL_ARGMAX 9
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:73:0: warning: "NL_LANGMAX" redefined
#define NL_LANGMAX _POSIX2_LINE_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:85:0: note: this is the location of the previous definition
#define NL_LANGMAX 32
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:76:0: warning: "NL_MSGMAX" redefined
#define NL_MSGMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:86:0: note: this is the location of the previous definition
#define NL_MSGMAX 32767
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:81:0: warning: "NL_NMAX" redefined
# define NL_NMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:95:0: note: this is the location of the previous definition
#define NL_NMAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:85:0: warning: "NL_SETMAX" redefined
#define NL_SETMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:87:0: note: this is the location of the previous definition
#define NL_SETMAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:88:0: warning: "NL_TEXTMAX" redefined
#define NL_TEXTMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/limits.h:88:0: note: this is the location of the previous definition
#define NL_TEXTMAX 2048
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:460:4: note: in expansion of macro '_IO_va_list'
_IO_va_list, int *__restrict);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:462:5: note: in expansion of macro '_IO_va_list'
_IO_va_list);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:80:9: note: in expansion of macro '_G_va_list'
typedef _G_va_list va_list;
^~~~~~~~~~
In file included from /usr/include/python3.6m/Python.h:25:0,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/stdio.h:80:20: error: conflicting types for 'va_list'
typedef _G_va_list va_list;
^~~~~~~
In file included from /usr/include/stdarg.h:10:0,
from /usr/glibc-compat/include/libio.h:49,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/include/bits/alltypes.h:6:27: note: previous declaration of 'va_list' was here
typedef __builtin_va_list va_list;
^~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:375:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:380:54: note: in expansion of macro '_G_va_list'
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:383:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg) __THROWNL;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:394:42: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:403:9: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:416:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:475:7: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:482:53: note: in expansion of macro '_G_va_list'
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:487:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:906:8: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:27:7: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:44:4: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:57:8: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:75:35: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:89:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:91:6: note: in expansion of macro '_G_va_list'
_G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:114:40: note: in expansion of macro '_G_va_list'
vprintf (const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:125:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:134:37: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:150:51: note: in expansion of macro '_G_va_list'
vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:162:38: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:171:7: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:208:5: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:215:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdlib.h:941:0,
from /usr/include/python3.6m/Python.h:34,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/stdlib.h: In function 'wctomb':
/usr/glibc-compat/include/bits/stdlib.h:90:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/include/python3.6m/unicodeobject.h:111:0,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/wchar.h: At top level:
/usr/glibc-compat/include/wchar.h:620:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:627:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:633:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:697:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:704:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:709:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:306:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:312:6: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap), vswprintf);
^
/usr/glibc-compat/include/sys/cdefs.h:200:11: note: in definition of macro '__REDIRECT_NTH'
name proto __asm__ (__ASMNAME (#alias)) __THROW
^~~~~
/usr/glibc-compat/include/bits/wchar2.h:309:12: note: in expansion of macro '__REDIRECT_NTH_LDBL'
extern int __REDIRECT_NTH_LDBL (__vswprintf_alias,
^~~~~~~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:316:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap))
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpdwtxdrgc/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:333:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:335:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:358:44: error: unknown type name '__gnuc_va_list'
vwprintf (const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:365:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h: In function 'wcrtomb':
/usr/glibc-compat/include/bits/wchar2.h:448:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
Could not find <Python.h>. This could mean the following:
* You're on Ubuntu and haven't run `apt-get install python-dev`.
* You're on RHEL/Fedora and haven't run `yum install python-devel` or
`dnf install python-devel` (make sure you also have redhat-rpm-config
installed)
* You're on Mac OS X and the usual Python framework was somehow corrupted
(check your environment variables or try re-installing?)
* You're on Windows and your Python installation was somehow corrupted
(check your environment variables or try re-installing?)
Traceback (most recent call last):
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 118, in _compile
extra_postargs)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/_spawn_patch.py", line 69, in _commandfile_spawn
_classic_spawn(self, command)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 909, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 36, in spawn
_spawn_posix(cmd, search_path, dry_run=dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 159, in _spawn_posix
% (cmd, exit_status))
distutils.errors.DistutilsExecError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/commands.py", line 281, in build_extensions
build_ext.build_ext.build_extensions(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 448, in build_extensions
self._build_extensions_serial()
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 473, in _build_extensions_serial
self.build_extension(ext)
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 196, in build_extension
_build_ext.build_extension(self, ext)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 533, in build_extension
depends=ext.depends)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-t_244v_o/grpcio/setup.py", line 276, in <module>
cmdclass=COMMAND_CLASS,
File "/usr/lib/python3.6/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib/python3.6/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/wheel/bdist_wheel.py", line 179, in run
self.run_command('build')
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 75, in run
_build_ext.run(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 339, in run
self.build_extensions()
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/commands.py", line 284, in build_extensions
support.diagnose_build_ext_error(self, error, formatted_exception)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 124, in diagnose_build_ext_error
diagnostic(build_ext, error)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 85, in diagnose_compile_error
_expect_compile(build_ext.compiler, c_check, message)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 79, in _expect_compile
.format(error_message))
commands.CommandError: Diagnostics found a compilation environment issue:
Could not find <Python.h>. This could mean the following:
* You're on Ubuntu and haven't run `apt-get install python-dev`.
* You're on RHEL/Fedora and haven't run `yum install python-devel` or
`dnf install python-devel` (make sure you also have redhat-rpm-config
installed)
* You're on Mac OS X and the usual Python framework was somehow corrupted
(check your environment variables or try re-installing?)
* You're on Windows and your Python installation was somehow corrupted
(check your environment variables or try re-installing?)
----------------------------------------
Running setup.py clean for grpcio
Running setup.py bdist_wheel for grpcio-tools: started
Running setup.py bdist_wheel for grpcio-tools: finished with status 'error'
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-t_244v_o/grpcio-tools/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmp4ro7cmg7pip-wheel- --python-tag cp36:
running bdist_wheel
running build
running build_py
creating build
creating build/lib.linux-x86_64-3.6
creating build/lib.linux-x86_64-3.6/grpc_tools
copying grpc_tools/__init__.py -> build/lib.linux-x86_64-3.6/grpc_tools
copying grpc_tools/protoc.py -> build/lib.linux-x86_64-3.6/grpc_tools
copying grpc_tools/command.py -> build/lib.linux-x86_64-3.6/grpc_tools
creating build/lib.linux-x86_64-3.6/grpc_tools/_proto
creating build/lib.linux-x86_64-3.6/grpc_tools/_proto/google
creating build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/wrappers.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/type.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/timestamp.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/struct.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/source_context.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/field_mask.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/empty.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/duration.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/descriptor.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
creating build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf/compiler
copying grpc_tools/_proto/google/protobuf/compiler/plugin.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf/compiler
copying grpc_tools/_proto/google/protobuf/api.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
copying grpc_tools/_proto/google/protobuf/any.proto -> build/lib.linux-x86_64-3.6/grpc_tools/_proto/google/protobuf
running build_ext
building 'grpc_tools._protoc_compiler' extension
creating build/temp.linux-x86_64-3.6
creating build/temp.linux-x86_64-3.6/grpc_tools
creating build/temp.linux-x86_64-3.6/grpc_root
creating build/temp.linux-x86_64-3.6/grpc_root/src
creating build/temp.linux-x86_64-3.6/grpc_root/src/compiler
creating build/temp.linux-x86_64-3.6/third_party
creating build/temp.linux-x86_64-3.6/third_party/protobuf
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/ruby
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/python
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/php
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/objectivec
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/js
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/javanano
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/java
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/csharp
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/compiler/cpp
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/util
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/util/internal
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/stubs
creating build/temp.linux-x86_64-3.6/third_party/protobuf/src/google/protobuf/io
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DHAVE_PTHREAD=1 -I. -Igrpc_root -Igrpc_root/include -Ithird_party/protobuf/src -I/usr/include/python3.6m -c grpc_tools/_protoc_compiler.cpp -o build/temp.linux-x86_64-3.6/grpc_tools/_protoc_compiler.o -std=c++11 -fno-wrapv -frtti
cc1plus: warning: command line option '-Wstrict-prototypes' is valid for C/ObjC but not for C++
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:64:0: warning: "PTHREAD_KEYS_MAX" redefined
#define PTHREAD_KEYS_MAX 1024
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:63:0: note: this is the location of the previous definition
#define PTHREAD_KEYS_MAX 128
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:69:0: warning: "PTHREAD_DESTRUCTOR_ITERATIONS" redefined
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:65:0: note: this is the location of the previous definition
#define PTHREAD_DESTRUCTOR_ITERATIONS 4
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:81:0: warning: "PTHREAD_STACK_MIN" redefined
#define PTHREAD_STACK_MIN 16384
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:64:0: note: this is the location of the previous definition
#define PTHREAD_STACK_MIN 2048
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:84:0: warning: "DELAYTIMER_MAX" redefined
#define DELAYTIMER_MAX 2147483647
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:68:0: note: this is the location of the previous definition
#define DELAYTIMER_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:93:0: warning: "HOST_NAME_MAX" redefined
#define HOST_NAME_MAX 64
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:59:0: note: this is the location of the previous definition
#define HOST_NAME_MAX 255
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/local_lim.h:99:0: warning: "SEM_VALUE_MAX" redefined
#define SEM_VALUE_MAX (2147483647)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:66:0: note: this is the location of the previous definition
#define SEM_VALUE_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/limits.h:187:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/posix2_lim.h:88:0: warning: "RE_DUP_MAX" redefined
#define RE_DUP_MAX (0x7fff)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:82:0: note: this is the location of the previous definition
#define RE_DUP_MAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:65:0: warning: "_XOPEN_IOV_MAX" redefined
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:150:0: note: this is the location of the previous definition
#define _XOPEN_IOV_MAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:70:0: warning: "NL_ARGMAX" redefined
#define NL_ARGMAX _POSIX_ARG_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:84:0: note: this is the location of the previous definition
#define NL_ARGMAX 9
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:73:0: warning: "NL_LANGMAX" redefined
#define NL_LANGMAX _POSIX2_LINE_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:85:0: note: this is the location of the previous definition
#define NL_LANGMAX 32
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:76:0: warning: "NL_MSGMAX" redefined
#define NL_MSGMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:86:0: note: this is the location of the previous definition
#define NL_MSGMAX 32767
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:81:0: warning: "NL_NMAX" redefined
# define NL_NMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:95:0: note: this is the location of the previous definition
#define NL_NMAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:85:0: warning: "NL_SETMAX" redefined
#define NL_SETMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:87:0: note: this is the location of the previous definition
#define NL_SETMAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/xopen_lim.h:88:0: warning: "NL_TEXTMAX" redefined
#define NL_TEXTMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/include/limits.h:88:0: note: this is the location of the previous definition
#define NL_TEXTMAX 2048
In file included from /usr/glibc-compat/include/stdlib.h:941:0,
from /usr/include/python3.6m/Python.h:34,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdlib.h:90:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/wchar2.h:448:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:460:4: note: in expansion of macro '_IO_va_list'
_IO_va_list, int *__restrict);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:462:5: note: in expansion of macro '_IO_va_list'
_IO_va_list);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' does not name a type
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:80:9: note: in expansion of macro '_G_va_list'
typedef _G_va_list va_list;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:375:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:380:54: note: in expansion of macro '_G_va_list'
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:383:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg) __THROWNL;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:394:42: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:403:9: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:416:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:475:7: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:482:53: note: in expansion of macro '_G_va_list'
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:487:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:906:8: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:27:7: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
/usr/glibc-compat/include/bits/stdio2.h:44:4: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdio.h:939:0,
from /usr/include/python3.6m/Python.h:25,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdio2.h: In function 'int vsprintf(char*, const char*, int)':
/usr/glibc-compat/include/bits/stdio2.h:47:32: error: invalid conversion from 'int' to '__va_list_tag*' [-fpermissive]
__bos (__s), __fmt, __ap);
^
<built-in>: note: initializing argument 5 of 'int __builtin___vsprintf_chk(char*, int, long unsigned int, const char*, __va_list_tag*)'
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdio2.h: At global scope:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:57:8: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
/usr/glibc-compat/include/bits/stdio2.h:75:35: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdio.h:939:0,
from /usr/include/python3.6m/Python.h:25,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdio2.h: In function 'int vsnprintf(char*, size_t, const char*, int)':
/usr/glibc-compat/include/bits/stdio2.h:78:33: error: invalid conversion from 'int' to '__va_list_tag*' [-fpermissive]
__bos (__s), __fmt, __ap);
^
<built-in>: note: initializing argument 6 of 'int __builtin___vsnprintf_chk(char*, long unsigned int, int, long unsigned int, const char*, __va_list_tag*)'
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdio2.h: At global scope:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:89:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:91:6: note: in expansion of macro '_G_va_list'
_G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:114:40: note: in expansion of macro '_G_va_list'
vprintf (const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:125:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:134:37: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:150:51: note: in expansion of macro '_G_va_list'
vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:162:38: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:171:7: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
/usr/glibc-compat/include/bits/stdio2.h:208:5: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: '__gnuc_va_list' has not been declared
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
/usr/glibc-compat/include/bits/stdio2.h:215:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/include/python3.6m/unicodeobject.h:111:0,
from /usr/include/python3.6m/Python.h:77,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/wchar.h:620:9: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:627:8: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:633:9: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:697:8: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:704:7: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:709:8: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/wchar2.h:306:8: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/wchar2.h:312:6: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __ap), vswprintf);
^
/usr/glibc-compat/include/sys/cdefs.h:195:11: note: in definition of macro '__REDIRECT_NTH'
name proto __THROW __asm__ (__ASMNAME (#alias))
^~~~~
/usr/glibc-compat/include/bits/wchar2.h:309:12: note: in expansion of macro '__REDIRECT_NTH_LDBL'
extern int __REDIRECT_NTH_LDBL (__vswprintf_alias,
^~~~~~~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:316:38: error: '__gnuc_va_list' has not been declared
const wchar_t *__restrict __fmt, __gnuc_va_list __ap))
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/wchar2.h:333:8: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:335:7: error: '__gnuc_va_list' has not been declared
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:358:44: error: '__gnuc_va_list' has not been declared
vwprintf (const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:365:38: error: '__gnuc_va_list' has not been declared
const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
In file included from /usr/include/c++/6.3.0/cstdlib:75:0,
from grpc_tools/_protoc_compiler.cpp:510:
/usr/include/fortify/stdlib.h: In function 'char* realpath(const char*, char*)':
/usr/include/fortify/stdlib.h:36:29: error: redefinition of 'char* realpath(const char*, char*)'
_FORTIFY_FN(realpath) char *realpath(const char *__p, char *__r)
^~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from grpc_tools/_protoc_compiler.cpp:36:
/usr/glibc-compat/include/bits/stdlib.h:37:8: note: 'char* realpath(const char*, char*)' previously defined here
__NTH (realpath (const char *__restrict __name, char *__restrict __resolved))
^
/usr/glibc-compat/include/sys/cdefs.h:62:35: note: in definition of macro '__NTH'
# define __NTH(fct) __LEAF_ATTR fct throw ()
^~~
error: command 'gcc' failed with exit status 1
----------------------------------------
Failed building wheel for grpcio-tools
Running setup.py clean for grpcio-tools
Failed to build grpcio grpcio-tools
Installing collected packages: six, enum34, protobuf, grpcio, grpcio-tools
Running setup.py install for grpcio: started
Running setup.py install for grpcio: finished with status 'error'
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-t_244v_o/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-pps9n8z2-record/install-record.txt --single-version-externally-managed --compile:
Found cython-generated files...
running install
running build
running build_py
running build_project_metadata
creating python_build
creating python_build/lib.linux-x86_64-3.6
creating python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_grpcio_metadata.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_plugin_wrapping.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_auth.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_utilities.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_credential_composition.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_channel.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_common.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_server.py -> python_build/lib.linux-x86_64-3.6/grpc
creating python_build/lib.linux-x86_64-3.6/grpc/_cython
copying src/python/grpcio/grpc/_cython/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython
creating python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_client_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_server_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_connectivity_channel.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/interfaces.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/implementations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
creating python_build/lib.linux-x86_64-3.6/grpc/framework
copying src/python/grpcio/grpc/framework/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
copying src/python/grpcio/grpc/_cython/_cygrpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
copying src/python/grpcio/grpc/framework/interfaces/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
creating python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/logging_pool.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/abandonment.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/callable_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/future.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
creating python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/style.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/cardinality.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/base.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/face.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
copying src/python/grpcio/grpc/_cython/_credentials/roots.pem -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
running build_ext
Found cython-generated files...
building 'grpc._cython.cygrpc' extension
creating python_build/temp.linux-x86_64-3.6
creating python_build/temp.linux-x86_64-3.6/src
creating python_build/temp.linux-x86_64-3.6/src/python
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython
creating python_build/temp.linux-x86_64-3.6/src/core
creating python_build/temp.linux-x86_64-3.6/src/core/lib
creating python_build/temp.linux-x86_64-3.6/src/core/lib/profiling
creating python_build/temp.linux-x86_64-3.6/src/core/lib/support
creating python_build/temp.linux-x86_64-3.6/src/core/lib/surface
creating python_build/temp.linux-x86_64-3.6/src/core/lib/channel
creating python_build/temp.linux-x86_64-3.6/src/core/lib/compression
creating python_build/temp.linux-x86_64-3.6/src/core/lib/debug
creating python_build/temp.linux-x86_64-3.6/src/core/lib/http
creating python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr
creating python_build/temp.linux-x86_64-3.6/src/core/lib/json
creating python_build/temp.linux-x86_64-3.6/src/core/lib/slice
creating python_build/temp.linux-x86_64-3.6/src/core/lib/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/context
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/util
creating python_build/temp.linux-x86_64-3.6/src/core/lib/tsi
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1
creating python_build/temp.linux-x86_64-3.6/third_party
creating python_build/temp.linux-x86_64-3.6/third_party/nanopb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr
creating python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen
creating python_build/temp.linux-x86_64-3.6/src/core/plugin_registry
creating python_build/temp.linux-x86_64-3.6/src/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl
creating python_build/temp.linux-x86_64-3.6/third_party/zlib
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/python/grpcio/grpc/_cython/cygrpc.c -o python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython/cygrpc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:64:0: warning: "PTHREAD_KEYS_MAX" redefined
#define PTHREAD_KEYS_MAX 1024
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:63:0: note: this is the location of the previous definition
#define PTHREAD_KEYS_MAX 128
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:69:0: warning: "PTHREAD_DESTRUCTOR_ITERATIONS" redefined
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:65:0: note: this is the location of the previous definition
#define PTHREAD_DESTRUCTOR_ITERATIONS 4
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:81:0: warning: "PTHREAD_STACK_MIN" redefined
#define PTHREAD_STACK_MIN 16384
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:64:0: note: this is the location of the previous definition
#define PTHREAD_STACK_MIN 2048
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:84:0: warning: "DELAYTIMER_MAX" redefined
#define DELAYTIMER_MAX 2147483647
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:68:0: note: this is the location of the previous definition
#define DELAYTIMER_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:93:0: warning: "HOST_NAME_MAX" redefined
#define HOST_NAME_MAX 64
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:59:0: note: this is the location of the previous definition
#define HOST_NAME_MAX 255
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/local_lim.h:99:0: warning: "SEM_VALUE_MAX" redefined
#define SEM_VALUE_MAX (2147483647)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:66:0: note: this is the location of the previous definition
#define SEM_VALUE_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/limits.h:187:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/posix2_lim.h:88:0: warning: "RE_DUP_MAX" redefined
#define RE_DUP_MAX (0x7fff)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:82:0: note: this is the location of the previous definition
#define RE_DUP_MAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:65:0: warning: "_XOPEN_IOV_MAX" redefined
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:150:0: note: this is the location of the previous definition
#define _XOPEN_IOV_MAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:70:0: warning: "NL_ARGMAX" redefined
#define NL_ARGMAX _POSIX_ARG_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:84:0: note: this is the location of the previous definition
#define NL_ARGMAX 9
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:73:0: warning: "NL_LANGMAX" redefined
#define NL_LANGMAX _POSIX2_LINE_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:85:0: note: this is the location of the previous definition
#define NL_LANGMAX 32
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:76:0: warning: "NL_MSGMAX" redefined
#define NL_MSGMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:86:0: note: this is the location of the previous definition
#define NL_MSGMAX 32767
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:81:0: warning: "NL_NMAX" redefined
# define NL_NMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:95:0: note: this is the location of the previous definition
#define NL_NMAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:85:0: warning: "NL_SETMAX" redefined
#define NL_SETMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:87:0: note: this is the location of the previous definition
#define NL_SETMAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/xopen_lim.h:88:0: warning: "NL_TEXTMAX" redefined
#define NL_TEXTMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/limits.h:88:0: note: this is the location of the previous definition
#define NL_TEXTMAX 2048
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:460:4: note: in expansion of macro '_IO_va_list'
_IO_va_list, int *__restrict);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:462:5: note: in expansion of macro '_IO_va_list'
_IO_va_list);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:80:9: note: in expansion of macro '_G_va_list'
typedef _G_va_list va_list;
^~~~~~~~~~
In file included from /usr/include/python3.6m/Python.h:25:0,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/stdio.h:80:20: error: conflicting types for 'va_list'
typedef _G_va_list va_list;
^~~~~~~
In file included from /usr/include/stdarg.h:10:0,
from /usr/glibc-compat/include/libio.h:49,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/include/bits/alltypes.h:6:27: note: previous declaration of 'va_list' was here
typedef __builtin_va_list va_list;
^~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:375:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:380:54: note: in expansion of macro '_G_va_list'
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:383:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg) __THROWNL;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:394:42: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:403:9: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:416:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:475:7: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:482:53: note: in expansion of macro '_G_va_list'
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:487:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:906:8: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:27:7: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:44:4: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:57:8: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:75:35: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:89:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:91:6: note: in expansion of macro '_G_va_list'
_G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:114:40: note: in expansion of macro '_G_va_list'
vprintf (const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:125:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:134:37: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:150:51: note: in expansion of macro '_G_va_list'
vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:162:38: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:171:7: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:208:5: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:215:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdlib.h:941:0,
from /usr/include/python3.6m/Python.h:34,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/stdlib.h: In function 'wctomb':
/usr/glibc-compat/include/bits/stdlib.h:90:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/include/python3.6m/unicodeobject.h:111:0,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/wchar.h: At top level:
/usr/glibc-compat/include/wchar.h:620:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:627:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:633:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:697:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:704:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:709:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:306:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:312:6: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap), vswprintf);
^
/usr/glibc-compat/include/sys/cdefs.h:200:11: note: in definition of macro '__REDIRECT_NTH'
name proto __asm__ (__ASMNAME (#alias)) __THROW
^~~~~
/usr/glibc-compat/include/bits/wchar2.h:309:12: note: in expansion of macro '__REDIRECT_NTH_LDBL'
extern int __REDIRECT_NTH_LDBL (__vswprintf_alias,
^~~~~~~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:316:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap))
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from src/python/grpcio/grpc/_cython/cygrpc.c:56:
/usr/glibc-compat/include/bits/wchar2.h:333:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:335:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:358:44: error: unknown type name '__gnuc_va_list'
vwprintf (const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:365:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h: In function 'wcrtomb':
/usr/glibc-compat/include/bits/wchar2.h:448:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:486:0:
include/grpc/support/alloc.h: At top level:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:489:0:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2303:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2304:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11496:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11570:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_10ChannelArg___cinit__':
src/python/grpcio/grpc/_cython/cygrpc.c:14570:38: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
__pyx_v_self->ptr_vtable.destroy = (&__pyx_f_4grpc_7_cython_6cygrpc_destroy_ptr);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_17_MetadataIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:16017:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_19_OperationsIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:19650:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
creating tmp/tmpou4s5en0
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -I/usr/include/python3.6m -c /tmp/tmpou4s5en0/a.c -o tmp/tmpou4s5en0/a.o
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:64:0: warning: "PTHREAD_KEYS_MAX" redefined
#define PTHREAD_KEYS_MAX 1024
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:63:0: note: this is the location of the previous definition
#define PTHREAD_KEYS_MAX 128
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:69:0: warning: "PTHREAD_DESTRUCTOR_ITERATIONS" redefined
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:65:0: note: this is the location of the previous definition
#define PTHREAD_DESTRUCTOR_ITERATIONS 4
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:81:0: warning: "PTHREAD_STACK_MIN" redefined
#define PTHREAD_STACK_MIN 16384
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:64:0: note: this is the location of the previous definition
#define PTHREAD_STACK_MIN 2048
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:84:0: warning: "DELAYTIMER_MAX" redefined
#define DELAYTIMER_MAX 2147483647
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:68:0: note: this is the location of the previous definition
#define DELAYTIMER_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:93:0: warning: "HOST_NAME_MAX" redefined
#define HOST_NAME_MAX 64
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:59:0: note: this is the location of the previous definition
#define HOST_NAME_MAX 255
In file included from /usr/glibc-compat/include/bits/posix1_lim.h:160:0,
from /usr/glibc-compat/include/limits.h:183,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/local_lim.h:99:0: warning: "SEM_VALUE_MAX" redefined
#define SEM_VALUE_MAX (2147483647)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:66:0: note: this is the location of the previous definition
#define SEM_VALUE_MAX 0x7fffffff
In file included from /usr/glibc-compat/include/limits.h:187:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/posix2_lim.h:88:0: warning: "RE_DUP_MAX" redefined
#define RE_DUP_MAX (0x7fff)
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:82:0: note: this is the location of the previous definition
#define RE_DUP_MAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:65:0: warning: "_XOPEN_IOV_MAX" redefined
#define _XOPEN_IOV_MAX _POSIX_UIO_MAXIOV
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:150:0: note: this is the location of the previous definition
#define _XOPEN_IOV_MAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:70:0: warning: "NL_ARGMAX" redefined
#define NL_ARGMAX _POSIX_ARG_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:84:0: note: this is the location of the previous definition
#define NL_ARGMAX 9
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:73:0: warning: "NL_LANGMAX" redefined
#define NL_LANGMAX _POSIX2_LINE_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:85:0: note: this is the location of the previous definition
#define NL_LANGMAX 32
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:76:0: warning: "NL_MSGMAX" redefined
#define NL_MSGMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:86:0: note: this is the location of the previous definition
#define NL_MSGMAX 32767
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:81:0: warning: "NL_NMAX" redefined
# define NL_NMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:95:0: note: this is the location of the previous definition
#define NL_NMAX 16
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:85:0: warning: "NL_SETMAX" redefined
#define NL_SETMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:87:0: note: this is the location of the previous definition
#define NL_SETMAX 255
In file included from /usr/glibc-compat/include/limits.h:191:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/xopen_lim.h:88:0: warning: "NL_TEXTMAX" redefined
#define NL_TEXTMAX INT_MAX
In file included from /usr/glibc-compat/include/limits.h:124:0,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/limits.h:88:0: note: this is the location of the previous definition
#define NL_TEXTMAX 2048
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:460:4: note: in expansion of macro '_IO_va_list'
_IO_va_list, int *__restrict);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/libio.h:44:21: note: in expansion of macro '_G_va_list'
#define _IO_va_list _G_va_list
^~~~~~~~~~
/usr/glibc-compat/include/libio.h:462:5: note: in expansion of macro '_IO_va_list'
_IO_va_list);
^~~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:80:9: note: in expansion of macro '_G_va_list'
typedef _G_va_list va_list;
^~~~~~~~~~
In file included from /usr/include/python3.6m/Python.h:25:0,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/stdio.h:80:20: error: conflicting types for 'va_list'
typedef _G_va_list va_list;
^~~~~~~
In file included from /usr/include/stdarg.h:10:0,
from /usr/glibc-compat/include/libio.h:49,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpou4s5en0/a.c:2:
/usr/include/bits/alltypes.h:6:27: note: previous declaration of 'va_list' was here
typedef __builtin_va_list va_list;
^~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:375:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:380:54: note: in expansion of macro '_G_va_list'
extern int vprintf (const char *__restrict __format, _G_va_list __arg);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:383:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg) __THROWNL;
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:394:42: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:403:9: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:416:8: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:475:7: note: in expansion of macro '_G_va_list'
_G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:482:53: note: in expansion of macro '_G_va_list'
extern int vscanf (const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:487:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/stdio.h:906:8: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:27:7: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:44:4: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:57:8: note: in expansion of macro '_G_va_list'
_G_va_list __ap) __THROW;
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:75:35: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/libio.h:31:0,
from /usr/glibc-compat/include/stdio.h:75,
from /usr/include/python3.6m/Python.h:25,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:89:40: note: in expansion of macro '_G_va_list'
const char *__restrict __format, _G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:91:6: note: in expansion of macro '_G_va_list'
_G_va_list __ap);
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:114:40: note: in expansion of macro '_G_va_list'
vprintf (const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:125:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:134:37: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:150:51: note: in expansion of macro '_G_va_list'
vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __ap)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:162:38: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __arg)
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/bits/stdio2.h:171:7: note: in expansion of macro '_G_va_list'
_G_va_list __args)
^~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:208:5: note: in expansion of macro '_G_va_list'
_G_va_list __ap))
^~~~~~~~~~
/usr/glibc-compat/include/_G_config.h:46:20: error: unknown type name '__gnuc_va_list'
#define _G_va_list __gnuc_va_list
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
/usr/glibc-compat/include/bits/stdio2.h:215:34: note: in expansion of macro '_G_va_list'
const char *__restrict __fmt, _G_va_list __ap))
^~~~~~~~~~
In file included from /usr/glibc-compat/include/stdlib.h:941:0,
from /usr/include/python3.6m/Python.h:34,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/stdlib.h: In function 'wctomb':
/usr/glibc-compat/include/bits/stdlib.h:90:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
In file included from /usr/include/python3.6m/unicodeobject.h:111:0,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/wchar.h: At top level:
/usr/glibc-compat/include/wchar.h:620:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:627:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:633:9: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:697:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:704:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/wchar.h:709:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:306:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __arg)
^~~~~~~~~~~~~~
In file included from /usr/glibc-compat/include/features.h:410:0,
from /usr/glibc-compat/include/bits/libc-header-start.h:33,
from /usr/glibc-compat/include/limits.h:26,
from /usr/include/python3.6m/Python.h:11,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:312:6: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap), vswprintf);
^
/usr/glibc-compat/include/sys/cdefs.h:200:11: note: in definition of macro '__REDIRECT_NTH'
name proto __asm__ (__ASMNAME (#alias)) __THROW
^~~~~
/usr/glibc-compat/include/bits/wchar2.h:309:12: note: in expansion of macro '__REDIRECT_NTH_LDBL'
extern int __REDIRECT_NTH_LDBL (__vswprintf_alias,
^~~~~~~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:316:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap))
^
/usr/glibc-compat/include/sys/cdefs.h:57:59: note: in definition of macro '__NTH'
# define __NTH(fct) __attribute__ ((__nothrow__ __LEAF)) fct
^~~
In file included from /usr/glibc-compat/include/wchar.h:890:0,
from /usr/include/python3.6m/unicodeobject.h:111,
from /usr/include/python3.6m/Python.h:77,
from /tmp/tmpou4s5en0/a.c:2:
/usr/glibc-compat/include/bits/wchar2.h:333:8: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:335:7: error: unknown type name '__gnuc_va_list'
__gnuc_va_list __ap);
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:358:44: error: unknown type name '__gnuc_va_list'
vwprintf (const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h:365:38: error: unknown type name '__gnuc_va_list'
const wchar_t *__restrict __fmt, __gnuc_va_list __ap)
^~~~~~~~~~~~~~
/usr/glibc-compat/include/bits/wchar2.h: In function 'wcrtomb':
/usr/glibc-compat/include/bits/wchar2.h:448:3: error: #error "Assumed value of MB_LEN_MAX wrong"
# error "Assumed value of MB_LEN_MAX wrong"
^~~~~
Could not find <Python.h>. This could mean the following:
* You're on Ubuntu and haven't run `apt-get install python-dev`.
* You're on RHEL/Fedora and haven't run `yum install python-devel` or
`dnf install python-devel` (make sure you also have redhat-rpm-config
installed)
* You're on Mac OS X and the usual Python framework was somehow corrupted
(check your environment variables or try re-installing?)
* You're on Windows and your Python installation was somehow corrupted
(check your environment variables or try re-installing?)
Traceback (most recent call last):
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 118, in _compile
extra_postargs)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/_spawn_patch.py", line 69, in _commandfile_spawn
_classic_spawn(self, command)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 909, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 36, in spawn
_spawn_posix(cmd, search_path, dry_run=dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 159, in _spawn_posix
% (cmd, exit_status))
distutils.errors.DistutilsExecError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/commands.py", line 281, in build_extensions
build_ext.build_ext.build_extensions(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 448, in build_extensions
self._build_extensions_serial()
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 473, in _build_extensions_serial
self.build_extension(ext)
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 196, in build_extension
_build_ext.build_extension(self, ext)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 533, in build_extension
depends=ext.depends)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 574, in compile
self._compile(obj, src, ext, cc_args, extra_postargs, pp_opts)
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 120, in _compile
raise CompileError(msg)
distutils.errors.CompileError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-t_244v_o/grpcio/setup.py", line 276, in <module>
cmdclass=COMMAND_CLASS,
File "/usr/lib/python3.6/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib/python3.6/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/setuptools/command/install.py", line 61, in run
return orig.install.run(self)
File "/usr/lib/python3.6/distutils/command/install.py", line 545, in run
self.run_command('build')
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 75, in run
_build_ext.run(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 339, in run
self.build_extensions()
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/commands.py", line 284, in build_extensions
support.diagnose_build_ext_error(self, error, formatted_exception)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 124, in diagnose_build_ext_error
diagnostic(build_ext, error)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 85, in diagnose_compile_error
_expect_compile(build_ext.compiler, c_check, message)
File "/tmp/pip-build-t_244v_o/grpcio/src/python/grpcio/support.py", line 79, in _expect_compile
.format(error_message))
commands.CommandError: Diagnostics found a compilation environment issue:
Could not find <Python.h>. This could mean the following:
* You're on Ubuntu and haven't run `apt-get install python-dev`.
* You're on RHEL/Fedora and haven't run `yum install python-devel` or
`dnf install python-devel` (make sure you also have redhat-rpm-config
installed)
* You're on Mac OS X and the usual Python framework was somehow corrupted
(check your environment variables or try re-installing?)
* You're on Windows and your Python installation was somehow corrupted
(check your environment variables or try re-installing?)
----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-t_244v_o/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-pps9n8z2-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-t_244v_o/grpcio/
The command '/bin/sh -c CPATH=/usr/glibc-compat/include LIBRARY_PATH=/usr/glibc-compat/lib python3 -m pip install grpcio==1.1.3 grpcio-tools==1.1.3' returned a non-zero code: 1
This file has been truncated, but you can view the full file.
# python3 -m pip install grpcio==1.1.3 grpcio-tools==1.1.3
Collecting grpcio==1.1.3
Downloading grpcio-1.1.3.tar.gz (7.2MB)
100% |████████████████████████████████| 7.2MB 145kB/s
Collecting grpcio-tools==1.1.3
Downloading grpcio-tools-1.1.3.tar.gz (1.8MB)
100% |████████████████████████████████| 1.8MB 656kB/s
Collecting six>=1.5.2 (from grpcio==1.1.3)
Downloading six-1.10.0-py2.py3-none-any.whl
Collecting enum34>=1.0.4 (from grpcio==1.1.3)
Downloading enum34-1.1.6-py3-none-any.whl
Collecting protobuf>=3.0.0 (from grpcio==1.1.3)
Downloading protobuf-3.2.0-py2.py3-none-any.whl (360kB)
100% |████████████████████████████████| 368kB 2.0MB/s
Requirement already satisfied: setuptools in /usr/lib/python3.6/site-packages (from protobuf>=3.0.0->grpcio==1.1.3)
Building wheels for collected packages: grpcio, grpcio-tools
Running setup.py bdist_wheel for grpcio ... error
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-yvgk_4fl/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" bdist_wheel -d /tmp/tmpp3t8ro3upip-wheel- --python-tag cp36:
Found cython-generated files...
running bdist_wheel
running build
running build_py
running build_project_metadata
creating python_build
creating python_build/lib.linux-x86_64-3.6
creating python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_grpcio_metadata.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_plugin_wrapping.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_auth.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_utilities.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_credential_composition.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_channel.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_common.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_server.py -> python_build/lib.linux-x86_64-3.6/grpc
creating python_build/lib.linux-x86_64-3.6/grpc/_cython
copying src/python/grpcio/grpc/_cython/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython
creating python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_client_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_server_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_connectivity_channel.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/interfaces.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/implementations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
creating python_build/lib.linux-x86_64-3.6/grpc/framework
copying src/python/grpcio/grpc/framework/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
copying src/python/grpcio/grpc/_cython/_cygrpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
copying src/python/grpcio/grpc/framework/interfaces/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
creating python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/logging_pool.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/abandonment.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/callable_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/future.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
creating python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/style.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/cardinality.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/base.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/face.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
copying src/python/grpcio/grpc/_cython/_credentials/roots.pem -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
running build_ext
Found cython-generated files...
building 'grpc._cython.cygrpc' extension
creating python_build/temp.linux-x86_64-3.6
creating python_build/temp.linux-x86_64-3.6/src
creating python_build/temp.linux-x86_64-3.6/src/python
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython
creating python_build/temp.linux-x86_64-3.6/src/core
creating python_build/temp.linux-x86_64-3.6/src/core/lib
creating python_build/temp.linux-x86_64-3.6/src/core/lib/profiling
creating python_build/temp.linux-x86_64-3.6/src/core/lib/support
creating python_build/temp.linux-x86_64-3.6/src/core/lib/surface
creating python_build/temp.linux-x86_64-3.6/src/core/lib/channel
creating python_build/temp.linux-x86_64-3.6/src/core/lib/compression
creating python_build/temp.linux-x86_64-3.6/src/core/lib/debug
creating python_build/temp.linux-x86_64-3.6/src/core/lib/http
creating python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr
creating python_build/temp.linux-x86_64-3.6/src/core/lib/json
creating python_build/temp.linux-x86_64-3.6/src/core/lib/slice
creating python_build/temp.linux-x86_64-3.6/src/core/lib/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/context
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/util
creating python_build/temp.linux-x86_64-3.6/src/core/lib/tsi
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1
creating python_build/temp.linux-x86_64-3.6/third_party
creating python_build/temp.linux-x86_64-3.6/third_party/nanopb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr
creating python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen
creating python_build/temp.linux-x86_64-3.6/src/core/plugin_registry
creating python_build/temp.linux-x86_64-3.6/src/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl
creating python_build/temp.linux-x86_64-3.6/third_party/zlib
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/python/grpcio/grpc/_cython/cygrpc.c -o python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython/cygrpc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:486:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:489:0:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2303:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2304:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11496:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11570:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_10ChannelArg___cinit__':
src/python/grpcio/grpc/_cython/cygrpc.c:14570:38: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
__pyx_v_self->ptr_vtable.destroy = (&__pyx_f_4grpc_7_cython_6cygrpc_destroy_ptr);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_17_MetadataIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:16017:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_19_OperationsIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:19650:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/profiling/basic_timers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/basic_timers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/profiling/stap_timers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/stap_timers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/alloc.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/alloc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/alloc.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/alloc.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/alloc.c:43:26: warning: function declaration isn't a prototype [-Wstrict-prototypes]
gpr_allocation_functions gpr_get_allocation_functions() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/avl.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/avl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/avl.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/backoff.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/backoff.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cmdline.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cmdline.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/cmdline.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/cmdline.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_iphone.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_iphone.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/cpu_linux.c:48:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/cpu_linux.c:53:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void init_num_cpus() {
^~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/env_linux.c:50:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/histogram.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/histogram.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/histogram.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/histogram.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/host_port.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/host_port.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/host_port.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/host_port.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/log.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/log.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/log.c:81:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void gpr_log_verbosity_init() {
^~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_android.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_android.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/log_linux.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/log_linux.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/mpscq.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/mpscq.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/mpscq.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/murmur_hash.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/murmur_hash.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/stack_lockfree.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/stack_lockfree.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/stack_lockfree.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/stack_lockfree.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/string.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/string.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/string_posix.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_util_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_util_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/subprocess_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/subprocess_posix.c:38:0:
include/grpc/support/subprocess.h:46:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI const char *gpr_subprocess_binary_extension();
^~~~~~
In file included from src/core/lib/support/subprocess_posix.c:51:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/subprocess_posix.c:52:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/subprocess_posix.c:59:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *gpr_subprocess_binary_extension() { return ""; }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/subprocess_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/sync.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/sync_posix.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/thd_posix.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/thd_posix.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time_posix.c:45:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_precise.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_precise.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time_precise.c:34:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tls_pthread.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tls_pthread.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_msys.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_msys.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/tmpfile_posix.c:45:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/tmpfile_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/wrap_memcpy.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/wrap_memcpy.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/init.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/init.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/init.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/init.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from ./src/core/lib/channel/handshaker_registry.h:39,
from src/core/lib/surface/init.c:47:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/surface/init.c:47:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
In file included from src/core/lib/surface/init.c:54:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
src/core/lib/surface/init.c:107:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void register_builtin_channel_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/surface/init.c:158:3: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void (*init)();
^~~~
src/core/lib/surface/init.c:159:3: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void (*destroy)();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_args.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_args.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/channel_args.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/channel_args.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_stack.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from src/core/lib/channel/channel_stack.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/channel_stack.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_stack_builder.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack_builder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from src/core/lib/channel/channel_stack_builder.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/channel_stack_builder.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/compress_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/compress_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/compress_filter.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/compress_filter.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/connected_channel.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/connected_channel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from ./src/core/lib/channel/connected_channel.h:37,
from src/core/lib/channel/connected_channel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/connected_channel.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/deadline_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/deadline_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/deadline_filter.h:35,
from src/core/lib/channel/deadline_filter.c:32:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/deadline_filter.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/handshaker.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/handshaker.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/handshaker.c:40:0:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
src/core/lib/channel/handshaker.c:97:25: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker_factory.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_factory.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from src/core/lib/channel/handshaker_factory.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/channel/handshaker_factory.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker_registry.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_registry.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from ./src/core/lib/channel/handshaker_registry.h:39,
from src/core/lib/channel/handshaker_registry.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/channel/handshaker_registry.c:34:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
In file included from src/core/lib/channel/handshaker_registry.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
src/core/lib/channel/handshaker_registry.c:88:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/http_client_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_client_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_client_filter.h:36,
from src/core/lib/channel/http_client_filter.c:33:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/http_client_filter.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/http_server_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_server_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_server_filter.h:37,
from src/core/lib/channel/http_server_filter.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/http_server_filter.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/message_size_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/message_size_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/message_size_filter.h:35,
from src/core/lib/channel/message_size_filter.c:32:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/message_size_filter.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/compression/compression.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/compression.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/compression/compression.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/compression/message_compress.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/message_compress.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/compression/message_compress.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/compression/message_compress.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/debug/trace.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/debug/trace.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/debug/trace.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/debug/trace.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/format_request.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/format_request.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/format_request.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/httpcli.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/httpcli.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/httpcli.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/http/httpcli.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/parser.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/parser.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/parser.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/http/parser.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/closure.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/closure.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/closure.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/combiner.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/combiner.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/combiner.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/combiner.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/endpoint_pair_posix.c:48:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/endpoint_pair_posix.c:49:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/endpoint_pair_posix.c:51:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/error.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/error.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/error.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/error.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_epoll_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_epoll_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/ev_epoll_linux.c:2028:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_poll_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_poll_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/ev_poll_posix.h:37:0,
from src/core/lib/iomgr/ev_poll_posix.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/ev_poll_posix.c:47:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/ev_poll_posix.c:48:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/ev_poll_posix.c:1447:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void global_cv_fd_table_init() {
^~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/ev_poll_posix.c:1468:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void global_cv_fd_table_shutdown() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/ev_posix.c:38:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/ev_posix.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/ev_posix.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/ev_posix.c:113:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name() { return g_poll_strategy_name; }
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/exec_ctx.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/exec_ctx.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/exec_ctx.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/executor.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/executor.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/executor.c:34:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
In file included from src/core/lib/iomgr/executor.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/executor.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/executor.c:57:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init() {
^~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/executor.c:97:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void maybe_spawn_locked() {
^~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iocp_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iocp_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/iomgr.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/iomgr.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/iomgr/iomgr.c:48:0:
./src/core/lib/iomgr/network_status_tracker.h:43:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/iomgr_posix.c:39:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/load_file.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/load_file.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/load_file.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/load_file.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/network_status_tracker.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/network_status_tracker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/network_status_tracker.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/network_status_tracker.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/network_status_tracker.c:59:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_destroy_network_status_monitor() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/network_status_tracker.c:111:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/polling_entity.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/polling_entity.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/polling_entity.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/polling_entity.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_set_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_set_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/resolve_address_posix.c:44:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/resolve_address_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/iomgr/resolve_address_posix.c:51:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resource_quota.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resource_quota.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/resource_quota.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/resource_quota.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/sockaddr_utils.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/sockaddr_utils.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/sockaddr_utils.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/sockaddr_utils.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_mutator.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_mutator.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_common_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_common_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/socket_utils_common_posix.c:53:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/socket_utils_common_posix.c:55:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/socket_utils_posix.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/tcp_client_posix.h:38:0,
from src/core/lib/iomgr/tcp_client_posix.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/tcp_client_posix.c:45:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_client_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/tcp_posix.c:38:0:
./src/core/lib/iomgr/network_status_tracker.h:43:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints();
^~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/tcp_posix.c:39:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/tcp_posix.c:50:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_posix.c:51:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/tcp_server_posix.c:57:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_server_posix.c:58:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/tcp_server_posix.c:68:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/time_averaged_stats.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/time_averaged_stats.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_generic.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_generic.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/timer_generic.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_heap.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_heap.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/timer_heap.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/udp_server.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/udp_server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/udp_server.h:38:0,
from src/core/lib/iomgr/udp_server.c:43:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/udp_server.c:57:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/udp_server.c:58:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/unix_sockets_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/unix_sockets_posix.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/unix_sockets_posix.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/unix_sockets_posix_noop.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix_noop.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_cv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_cv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/wakeup_fd_cv.h:53:0,
from src/core/lib/iomgr/wakeup_fd_cv.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/wakeup_fd_cv.c:43:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/wakeup_fd_cv.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_eventfd.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_eventfd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_nospecial.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_nospecial.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_pipe.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_pipe.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/wakeup_fd_pipe.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/wakeup_fd_cv.h:53:0,
from src/core/lib/iomgr/wakeup_fd_posix.c:39:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/workqueue_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/workqueue_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_reader.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_reader.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json_reader.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json_string.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/json/json_string.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_writer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_writer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/percent_encoding.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/percent_encoding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/percent_encoding.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/slice/slice.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice_buffer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice_buffer.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/slice/slice_buffer.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice_string_helpers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_string_helpers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice_string_helpers.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/alarm.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/alarm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/alarm.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/api_trace.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/api_trace.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/api_trace.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/byte_buffer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/byte_buffer.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/byte_buffer.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/byte_buffer_reader.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer_reader.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/byte_buffer_reader.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/byte_buffer_reader.c:42:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/call.c:43:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/call.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call_details.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_details.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/call_details.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/call_details.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call_log_batch.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_log_batch.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/call.h:37,
from src/core/lib/surface/call_log_batch.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/call_log_batch.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/channel.h:37,
from src/core/lib/surface/channel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_init.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_init.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from ./src/core/lib/surface/channel_init.h:37,
from src/core/lib/surface/channel_init.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel_init.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_ping.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_ping.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/channel.h:37,
from src/core/lib/surface/channel_ping.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel_ping.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_stack_type.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_stack_type.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/channel_stack_type.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/completion_queue.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/completion_queue.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/completion_queue.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/completion_queue.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/event_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/event_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/lame_client.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/lame_client.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/lame_client.h:37,
from src/core/lib/surface/lame_client.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/lame_client.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/metadata_array.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/metadata_array.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/metadata_array.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/metadata_array.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/server.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/server.h:38,
from src/core/lib/surface/server.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/server.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/validate_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/validate_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/version.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/version.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/byte_stream.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/byte_stream.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/byte_stream.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/connectivity_state.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/connectivity_state.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/connectivity_state.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/connectivity_state.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/mdstr_hash_table.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/mdstr_hash_table.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/mdstr_hash_table.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/mdstr_hash_table.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/metadata.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/metadata.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/metadata_batch.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata_batch.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/metadata_batch.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/metadata_batch.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/pid_controller.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/pid_controller.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/service_config.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/service_config.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/service_config.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/service_config.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/static_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/static_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/timeout_encoding.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/timeout_encoding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/transport.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/transport.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/transport.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/transport_op_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport_op_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from src/core/lib/transport/transport_op_string.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/transport/transport_op_string.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:46:0:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:47:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/bin_decoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_decoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/bin_decoder.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/bin_decoder.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/bin_encoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_encoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/bin_encoder.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/chttp2_plugin.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_plugin.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/chttp2_transport.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_transport.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/chttp2_transport.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/chttp2_transport.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_data.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_data.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_data.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_data.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_goaway.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_goaway.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_goaway.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_goaway.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_ping.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_ping.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_ping.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_ping.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_rst_stream.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_rst_stream.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_rst_stream.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_rst_stream.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_settings.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_settings.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_settings.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_settings.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_window_update.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_window_update.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_window_update.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_window_update.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_encoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_encoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_encoder.c:44:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_encoder.c:45:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_parser.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_parser.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_parser.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_parser.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_table.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_table.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_table.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_table.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/huffsyms.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/huffsyms.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/incoming_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/incoming_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/incoming_metadata.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/incoming_metadata.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/parsing.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/parsing.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/parsing.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/parsing.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/status_conversion.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/status_conversion.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/stream_lists.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/stream_lists.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/stream_lists.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/stream_map.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/stream_map.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/stream_map.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/stream_map.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/varint.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/varint.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/writing.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/writing.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/writing.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/alpn/alpn.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn/alpn.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/alpn/alpn.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/httpcli_security_connector.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/httpcli_security_connector.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/httpcli_security_connector.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/http/httpcli_security_connector.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/security/transport/security_handshaker.h:37:0,
from src/core/lib/http/httpcli_security_connector.c:43:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:37:0,
from ./src/core/lib/security/transport/security_handshaker.h:39,
from src/core/lib/http/httpcli_security_connector.c:43:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from src/core/lib/http/httpcli_security_connector.c:43:0:
./src/core/lib/security/transport/security_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_security_register_handshaker_factories();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/context/security_context.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/context/security_context.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/context/security_context.c:36:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/context/security_context.c:36:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/security/context/security_context.c:38:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/context/security_context.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/composite/composite_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite/composite_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/composite/composite_credentials.h:37,
from src/core/lib/security/credentials/composite/composite_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/composite/composite_credentials.h:37,
from src/core/lib/security/credentials/composite/composite_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/security/credentials/composite/composite_credentials.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/composite/composite_credentials.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from src/core/lib/security/credentials/credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from src/core/lib/security/credentials/credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_client_filter.h:36,
from src/core/lib/security/credentials/credentials.c:40:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/credentials.c:43:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
In file included from src/core/lib/security/credentials/credentials.c:48:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/credentials_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/credentials_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from src/core/lib/security/credentials/credentials_metadata.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from src/core/lib/security/credentials/credentials_metadata.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/credentials/credentials_metadata.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/fake/fake_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake/fake_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/fake/fake_credentials.h:37,
from src/core/lib/security/credentials/fake/fake_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/fake/fake_credentials.h:37,
from src/core/lib/security/credentials/fake/fake_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/credentials/fake/fake_credentials.c:39:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
In file included from src/core/lib/security/credentials/fake/fake_credentials.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/fake/fake_credentials.c:42:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/google_default/credentials_generic.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default/credentials_generic.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/google_default/google_default_credentials.h:39,
from src/core/lib/security/credentials/google_default/credentials_generic.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/google_default/google_default_credentials.h:39,
from src/core/lib/security/credentials/google_default/credentials_generic.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/credentials/google_default/credentials_generic.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/google_default/credentials_generic.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/google_default/google_default_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default/google_default_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from src/core/lib/security/credentials/google_default/google_default_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from src/core/lib/security/credentials/google_default/google_default_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/credentials/google_default/google_default_credentials.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/google_default/google_default_credentials.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/iam/iam_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam/iam_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/iam/iam_credentials.h:37,
from src/core/lib/security/credentials/iam/iam_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/iam/iam_credentials.h:37,
from src/core/lib/security/credentials/iam/iam_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/security/credentials/iam/iam_credentials.c:38:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/iam/iam_credentials.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/jwt/json_token.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/json_token.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/security/credentials/jwt/json_token.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/jwt/json_token.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/security/credentials/jwt/json_token.c:54:14: warning: function declaration isn't a prototype [-Wstrict-prototypes]
gpr_timespec grpc_max_auth_token_lifetime() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/jwt/jwt_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/jwt_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/jwt/jwt_credentials.h:37,
from src/core/lib/security/credentials/jwt/jwt_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/jwt/jwt_credentials.h:37,
from src/core/lib/security/credentials/jwt/jwt_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/security/credentials/jwt/jwt_credentials.c:38:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/jwt/jwt_credentials.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/jwt/jwt_verifier.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/jwt_verifier.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/security/credentials/jwt/jwt_verifier.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/jwt/jwt_verifier.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/oauth2/oauth2_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2/oauth2_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:38,
from src/core/lib/security/credentials/oauth2/oauth2_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/oauth2/oauth2_credentials.h:38,
from src/core/lib/security/credentials/oauth2/oauth2_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/security/credentials/oauth2/oauth2_credentials.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/oauth2/oauth2_credentials.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/plugin/plugin_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin/plugin_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/plugin/plugin_credentials.h:37,
from src/core/lib/security/credentials/plugin/plugin_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/plugin/plugin_credentials.h:37,
from src/core/lib/security/credentials/plugin/plugin_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/credentials/plugin/plugin_credentials.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/credentials/plugin/plugin_credentials.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/credentials/ssl/ssl_credentials.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl/ssl_credentials.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/credentials/ssl/ssl_credentials.h:36,
from src/core/lib/security/credentials/ssl/ssl_credentials.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/credentials/ssl/ssl_credentials.h:36,
from src/core/lib/security/credentials/ssl/ssl_credentials.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_client_filter.h:36,
from src/core/lib/security/credentials/ssl/ssl_credentials.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/credentials/ssl/ssl_credentials.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/client_auth_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/client_auth_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/security/transport/auth_filters.h:37,
from src/core/lib/security/transport/client_auth_filter.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/transport/client_auth_filter.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/transport/client_auth_filter.c:44:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/transport/client_auth_filter.c:44:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/secure_endpoint.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/secure_endpoint.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/security/transport/secure_endpoint.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/transport/secure_endpoint.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/security_connector.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/security_connector.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/transport/security_connector.h:37:0,
from src/core/lib/security/transport/security_connector.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from src/core/lib/security/transport/security_connector.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/security/transport/security_connector.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/transport/security_connector.c:42:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/transport/security_connector.c:51:0:
./src/core/lib/security/transport/security_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_security_register_handshaker_factories();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/security_handshaker.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/security_handshaker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/transport/security_handshaker.h:37:0,
from src/core/lib/security/transport/security_handshaker.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:37:0,
from ./src/core/lib/security/transport/security_handshaker.h:39,
from src/core/lib/security/transport/security_handshaker.c:34:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from src/core/lib/security/transport/security_handshaker.c:34:0:
./src/core/lib/security/transport/security_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_security_register_handshaker_factories();
^~~~
In file included from src/core/lib/security/transport/security_handshaker.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/transport/security_handshaker.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/transport/security_handshaker.c:45:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
src/core/lib/security/transport/security_handshaker.c:435:25: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static grpc_handshaker *fail_handshaker_create() {
^~~~~~~~~~~~~~~~~~~~~~
src/core/lib/security/transport/security_handshaker.c:496:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_security_register_handshaker_factories() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/server_auth_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/server_auth_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/transport/server_auth_filter.c:36:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/lib/security/transport/server_auth_filter.c:36:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/security/transport/auth_filters.h:37,
from src/core/lib/security/transport/server_auth_filter.c:38:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/security/transport/server_auth_filter.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/transport/tsi_error.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/tsi_error.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/util/b64.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/util/b64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/security/util/b64.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/security/util/b64.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/security/util/json_util.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/security/util/json_util.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/security/util/json_util.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/init_secure.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/init_secure.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from src/core/lib/surface/init_secure.c:40:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from src/core/lib/surface/init_secure.c:40:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/security/transport/auth_filters.h:37,
from src/core/lib/surface/init_secure.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/init_secure.c:44:0:
./src/core/lib/security/transport/security_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_security_register_handshaker_factories();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/tsi/fake_transport_security.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/fake_transport_security.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/tsi/fake_transport_security.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/tsi/fake_transport_security.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/tsi/ssl_transport_security.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/ssl_transport_security.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/tsi/ssl_transport_security.c:50:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/tsi/ssl_transport_security.c:51:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/tsi/transport_security.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/transport_security.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/tsi/transport_security.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/server/chttp2_server.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/chttp2_server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/server/chttp2_server.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/chttp2_server.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/chttp2_server.c:48:0:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/ext/transport/chttp2/server/chttp2_server.c:49:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/client/secure/secure_channel_create.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure/secure_channel_create.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/client/secure/secure_channel_create.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/client_channel.h:37,
from src/core/ext/transport/chttp2/client/secure/secure_channel_create.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/client/secure/secure_channel_create.c:42:0:
./src/core/ext/transport/chttp2/client/chttp2_connector.h:39:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_connector* grpc_chttp2_connector_create();
^~~~~~~~~~~~~~
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from src/core/ext/transport/chttp2/client/secure/secure_channel_create.c:44:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
In file included from ./src/core/lib/security/transport/security_connector.h:39:0,
from ./src/core/lib/security/credentials/credentials.h:45,
from src/core/ext/transport/chttp2/client/secure/secure_channel_create.c:44:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/channel_connectivity.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/channel_connectivity.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/channel.h:37,
from src/core/ext/client_channel/channel_connectivity.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/channel_connectivity.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/client_channel.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/client_channel.h:37,
from src/core/ext/client_channel/client_channel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/client_channel.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/client_channel/client_channel.c:47:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/client_channel_factory.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel_factory.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from src/core/ext/client_channel/client_channel_factory.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/client_channel_plugin.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel_plugin.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/client_channel/client_channel_plugin.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/client_channel.h:37,
from src/core/ext/client_channel/client_channel_plugin.c:40:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/ext/client_channel/http_connect_handshaker.h:37:0,
from src/core/ext/client_channel/client_channel_plugin.c:41:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/ext/client_channel/client_channel_plugin.c:41:0:
./src/core/ext/client_channel/http_connect_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
char* grpc_get_http_proxy_server();
^~~~
./src/core/ext/client_channel/http_connect_handshaker.h:50:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_http_connect_register_handshaker_factory();
^~~~
In file included from src/core/ext/client_channel/client_channel_plugin.c:43:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/connector.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/connector.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from src/core/ext/client_channel/connector.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/default_initial_connect_string.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/default_initial_connect_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/http_connect_handshaker.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/http_connect_handshaker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/ext/client_channel/http_connect_handshaker.h:37:0,
from src/core/ext/client_channel/http_connect_handshaker.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/ext/client_channel/http_connect_handshaker.c:34:0:
./src/core/ext/client_channel/http_connect_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
char* grpc_get_http_proxy_server();
^~~~
./src/core/ext/client_channel/http_connect_handshaker.h:50:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_http_connect_register_handshaker_factory();
^~~~
In file included from src/core/ext/client_channel/http_connect_handshaker.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/client_channel/http_connect_handshaker.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/http_connect_handshaker.c:44:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
In file included from src/core/ext/client_channel/http_connect_handshaker.c:47:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
src/core/ext/client_channel/http_connect_handshaker.c:347:7: warning: function declaration isn't a prototype [-Wstrict-prototypes]
char* grpc_get_http_proxy_server() {
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/client_channel/http_connect_handshaker.c:396:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_http_connect_register_handshaker_factory() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/initial_connect_string.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/initial_connect_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/lb_policy.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/lb_policy.h:37,
from src/core/ext/client_channel/lb_policy.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/lb_policy_factory.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy_factory.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/client_channel/lb_policy_factory.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from src/core/ext/client_channel/lb_policy_factory.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/lb_policy_registry.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy_registry.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from ./src/core/ext/client_channel/lb_policy_registry.h:37,
from src/core/ext/client_channel/lb_policy_registry.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/parse_address.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/parse_address.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/client_channel/parse_address.c:43:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/client_channel/parse_address.c:45:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/resolver.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/resolver.h:37,
from src/core/ext/client_channel/resolver.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/resolver_factory.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver_factory.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/resolver_factory.h:37,
from src/core/ext/client_channel/resolver_factory.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/resolver_registry.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver_registry.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/resolver_factory.h:37,
from ./src/core/ext/client_channel/resolver_registry.h:37,
from src/core/ext/client_channel/resolver_registry.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/resolver_registry.c:34:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
In file included from src/core/ext/client_channel/resolver_registry.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
src/core/ext/client_channel/resolver_registry.c:51:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init() {}
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/subchannel.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/subchannel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from src/core/ext/client_channel/subchannel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/subchannel.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/subchannel_index.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/subchannel_index.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel_index.h:37,
from src/core/ext/client_channel/subchannel_index.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/client_channel/subchannel_index.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
src/core/ext/client_channel/subchannel_index.c:69:23: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static grpc_exec_ctx *current_ctx() {
^~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/client_channel/uri_parser.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/uri_parser.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/client_channel/uri_parser.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/client_channel/uri_parser.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/client/chttp2_connector.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/chttp2_connector.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/transport/chttp2/client/chttp2_connector.h:37,
from src/core/ext/transport/chttp2/client/chttp2_connector.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/client/chttp2_connector.c:34:0:
./src/core/ext/transport/chttp2/client/chttp2_connector.h:39:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_connector* grpc_chttp2_connector_create();
^~~~~~~~~~~~~~
In file included from src/core/ext/transport/chttp2/client/chttp2_connector.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/ext/client_channel/http_connect_handshaker.h:37:0,
from src/core/ext/transport/chttp2/client/chttp2_connector.c:45:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/ext/transport/chttp2/client/chttp2_connector.c:45:0:
./src/core/ext/client_channel/http_connect_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
char* grpc_get_http_proxy_server();
^~~~
./src/core/ext/client_channel/http_connect_handshaker.h:50:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_http_connect_register_handshaker_factory();
^~~~
In file included from src/core/ext/transport/chttp2/client/chttp2_connector.c:50:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
src/core/ext/transport/chttp2/client/chttp2_connector.c:246:17: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_connector *grpc_chttp2_connector_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/server/insecure/server_chttp2.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure/server_chttp2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/server/insecure/server_chttp2.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c:48:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/client/insecure/channel_create.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure/channel_create.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/client/insecure/channel_create.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/client_channel.h:37,
from src/core/ext/transport/chttp2/client/insecure/channel_create.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/client/insecure/channel_create.c:42:0:
./src/core/ext/transport/chttp2/client/chttp2_connector.h:39:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_connector* grpc_chttp2_connector_create();
^~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_client_posix.h:38:0,
from src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c:47:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/lb_policy/grpclb/grpclb.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/grpclb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/lb_policy/grpclb/grpclb.c:104:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/client_channel.h:37,
from src/core/ext/lb_policy/grpclb/grpclb.c:109:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/lb_policy/grpclb/grpclb.c:114:0:
./src/core/ext/lb_policy/grpclb/grpclb.h:42:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_lb_policy_factory *grpc_glb_lb_factory_create();
^~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/grpclb/grpclb.c:1396:25: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_lb_policy_factory *grpc_glb_lb_factory_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/grpclb/grpclb.c:1401:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_grpclb_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/grpclb/grpclb.c:1406:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_grpclb_shutdown() {}
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/lb_policy/grpclb/load_balancer_api.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/load_balancer_api.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from ./src/core/ext/lb_policy/grpclb/load_balancer_api.h:39,
from src/core/ext/lb_policy/grpclb/load_balancer_api.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/lb_policy/grpclb/load_balancer_api.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/nanopb/pb_common.c -o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_common.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/nanopb/pb_decode.c -o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_decode.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/nanopb/pb_encode.c -o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_encode.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/lb_policy/pick_first/pick_first.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first/pick_first.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/lb_policy/pick_first/pick_first.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from ./src/core/ext/client_channel/lb_policy_registry.h:37,
from src/core/ext/lb_policy/pick_first/pick_first.c:38:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/ext/lb_policy/pick_first/pick_first.c:506:32: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static grpc_lb_policy_factory *pick_first_lb_factory_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/pick_first/pick_first.c:512:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_pick_first_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/pick_first/pick_first.c:516:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_pick_first_shutdown() {}
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/lb_policy/round_robin/round_robin.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin/round_robin.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/lb_policy/round_robin/round_robin.c:64:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from ./src/core/ext/client_channel/lb_policy_registry.h:37,
from src/core/ext/lb_policy/round_robin/round_robin.c:66:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/ext/lb_policy/round_robin/round_robin.c:794:32: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static grpc_lb_policy_factory *round_robin_lb_factory_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/round_robin/round_robin.c:800:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_round_robin_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/lb_policy/round_robin/round_robin.c:805:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_lb_policy_round_robin_shutdown() {}
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/resolver/dns/native/dns_resolver.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native/dns_resolver.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/resolver/dns/native/dns_resolver.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/ext/client_channel/http_connect_handshaker.h:37:0,
from src/core/ext/resolver/dns/native/dns_resolver.c:40:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/ext/resolver/dns/native/dns_resolver.c:40:0:
./src/core/ext/client_channel/http_connect_handshaker.h:47:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
char* grpc_get_http_proxy_server();
^~~~
./src/core/ext/client_channel/http_connect_handshaker.h:50:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_http_connect_register_handshaker_factory();
^~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from ./src/core/ext/client_channel/lb_policy_registry.h:37,
from src/core/ext/resolver/dns/native/dns_resolver.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/resolver/dns/native/dns_resolver.c:42:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
src/core/ext/resolver/dns/native/dns_resolver.c:315:31: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static grpc_resolver_factory *dns_resolver_factory_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/resolver/sockaddr/sockaddr_resolver.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr/sockaddr_resolver.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/resolver/sockaddr/sockaddr_resolver.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/client_channel/connector.h:37,
from ./src/core/ext/client_channel/subchannel.h:37,
from ./src/core/ext/client_channel/client_channel_factory.h:39,
from ./src/core/ext/client_channel/lb_policy_factory.h:37,
from src/core/ext/resolver/sockaddr/sockaddr_resolver.c:44:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/resolver/sockaddr/sockaddr_resolver.c:46:0:
./src/core/ext/client_channel/resolver_registry.h:40:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_resolver_registry_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/load_reporting/load_reporting.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting/load_reporting.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/load_reporting/load_reporting.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/load_reporting/load_reporting.h:38,
from src/core/ext/load_reporting/load_reporting.c:40:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/load_reporting/load_reporting.c:40:0:
./src/core/ext/load_reporting/load_reporting.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_arg grpc_load_reporting_enable_arg();
^~~~~~~~
src/core/ext/load_reporting/load_reporting.c:68:10: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_arg grpc_load_reporting_enable_arg() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/ext/load_reporting/load_reporting.c:84:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_load_reporting_plugin_shutdown() {}
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/load_reporting/load_reporting_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting/load_reporting_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/load_reporting/load_reporting_filter.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/load_reporting/load_reporting_filter.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/load_reporting/load_reporting_filter.c:40:0:
./src/core/ext/load_reporting/load_reporting.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_arg grpc_load_reporting_enable_arg();
^~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/base_resources.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/base_resources.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/base_resources.c:33:0:
./src/core/ext/census/base_resources.h:37:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void define_base_resources();
^~~~
In file included from src/core/ext/census/base_resources.c:38:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/base_resources.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/ext/census/base_resources.c:52:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void define_base_resources() {
^~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/context.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/context.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/context.c:34:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/context.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/census/context.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/gen/census.pb.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen/census.pb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/gen/trace_context.pb.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen/trace_context.pb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/grpc_context.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_context.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/grpc_context.c:34:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/ext/census/grpc_context.c:36:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/grpc_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/census/grpc_filter.h:37,
from src/core/ext/census/grpc_filter.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/census/grpc_filter.c:39:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/grpc_filter.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/grpc_plugin.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_plugin.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/grpc_plugin.c:37:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/ext/census/grpc_filter.h:37,
from src/core/ext/census/grpc_plugin.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/initialize.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/initialize.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/initialize.c:34:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/initialize.c:35:0:
./src/core/ext/census/base_resources.h:37:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void define_base_resources();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/mlog.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/mlog.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/mlog.c:92:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/census/mlog.c:95:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/operation.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/operation.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/operation.c:33:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/placeholders.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/placeholders.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/placeholders.c:34:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/placeholders.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/ext/census/placeholders.c:59:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void census_trace_scan_end() { abort(); }
^~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/resource.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/resource.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/resource.c:37:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/resource.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/census/resource.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/trace_context.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/trace_context.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/trace_context.c:36:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
In file included from src/core/ext/census/trace_context.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/census/tracing.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/census/tracing.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/census/tracing.c:36:0:
include/grpc/census.h:432:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
CENSUSAPI void census_trace_scan_end();
^~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/plugin_registry/grpc_plugin_registry.c -o python_build/temp.linux-x86_64-3.6/src/core/plugin_registry/grpc_plugin_registry.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/boringssl/err_data.c -o python_build/temp.linux-x86_64-3.6/src/boringssl/err_data.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/aes/aes.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes/aes.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/aes/mode_wrappers.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes/mode_wrappers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_bitstr.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_bitstr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_bool.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_bool.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_d2i_fp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_d2i_fp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_dup.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_dup.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_enum.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_enum.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_gentm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_gentm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_i2d_fp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_i2d_fp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_int.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_int.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_mbstr.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_mbstr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_object.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_object.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_octet.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_octet.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_print.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_print.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_strnid.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_strnid.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_time.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_time.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_type.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_type.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_utctm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_utctm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/a_utf8.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_utf8.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/asn1_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn1_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/asn1_par.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn1_par.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/asn_pack.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn_pack.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/f_enum.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_enum.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/f_int.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_int.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/f_string.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/t_bitst.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/t_bitst.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_dec.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_dec.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_enc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_enc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_fre.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_fre.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_new.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_new.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_typ.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_typ.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/tasn_utl.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_utl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/x_bignum.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/x_bignum.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/asn1/x_long.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/x_long.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/base64/base64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64/base64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/bio.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/bio.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/bio_mem.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/bio_mem.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/buffer.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/connect.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/connect.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/fd.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/fd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/file.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/file.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/hexdump.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/hexdump.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/pair.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/pair.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/printf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/printf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/socket.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/socket.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bio/socket_helper.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/socket_helper.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/add.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/add.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/asm/x86_64-gcc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm/x86_64-gcc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/bn.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/bn.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/bn_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/bn_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/cmp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/cmp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/convert.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/convert.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/ctx.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/ctx.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/div.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/div.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/exponentiation.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/exponentiation.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/gcd.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/gcd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/generic.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/generic.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/kronecker.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/kronecker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/montgomery.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/montgomery.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/montgomery_inv.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/montgomery_inv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/mul.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/mul.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/prime.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/prime.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/random.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/random.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/rsaz_exp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/rsaz_exp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/shift.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/shift.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bn/sqrt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/sqrt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/buf/buf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf/buf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bytestring/asn1_compat.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/asn1_compat.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bytestring/ber.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/ber.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bytestring/cbb.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/cbb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/bytestring/cbs.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/cbs.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/chacha/chacha.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha/chacha.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/aead.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/aead.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/cipher.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/cipher.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/derive_key.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/derive_key.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_aes.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_aes.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_chacha20poly1305.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_chacha20poly1305.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_des.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_des.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_null.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_null.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_rc2.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_rc2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_rc4.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_rc4.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_ssl3.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_ssl3.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/e_tls.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_tls.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cipher/tls_cbc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/tls_cbc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cmac/cmac.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac/cmac.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/conf/conf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf/conf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cpu-aarch64-linux.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-aarch64-linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cpu-arm-linux.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-arm-linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cpu-arm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-arm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cpu-intel.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-intel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/cpu-ppc64le.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-ppc64le.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/crypto.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/crypto.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/curve25519/curve25519.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/curve25519.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/curve25519/spake25519.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/spake25519.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/curve25519/x25519-x86_64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/x25519-x86_64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/des/des.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des/des.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dh/check.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/check.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dh/dh.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/dh.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dh/dh_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/dh_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dh/params.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/params.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/digest/digest.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest/digest.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/digest/digests.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest/digests.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dsa/dsa.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa/dsa.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/dsa/dsa_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa/dsa_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/ec.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/ec_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/ec_key.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_key.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/ec_montgomery.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_montgomery.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/oct.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/oct.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/p224-64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p224-64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/p256-64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p256-64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/p256-x86_64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p256-x86_64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/simple.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/simple.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/util-64.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/util-64.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ec/wnaf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/wnaf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ecdh/ecdh.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh/ecdh.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ecdsa/ecdsa.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa/ecdsa.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/engine/engine.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine/engine.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/err/err.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err/err.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/digestsign.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/digestsign.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/evp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/evp_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/evp_ctx.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp_ctx.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/p_dsa_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_dsa_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/p_ec.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_ec.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/p_ec_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_ec_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/p_rsa.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_rsa.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/p_rsa_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_rsa_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/pbkdf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/pbkdf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/print.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/print.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/evp/sign.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/sign.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/ex_data.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ex_data.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/hkdf/hkdf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf/hkdf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/hmac/hmac.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac/hmac.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/lhash/lhash.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash/lhash.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/md4/md4.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4/md4.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/md5/md5.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5/md5.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/mem.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/mem.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/modes/cbc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/cbc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/modes/cfb.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/cfb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/modes/ctr.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/ctr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/modes/gcm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/gcm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/modes/ofb.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/ofb.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/error_correction.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/error_correction.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/newhope.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/newhope.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/ntt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/ntt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/poly.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/poly.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/precomp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/precomp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/newhope/reduce.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/reduce.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/obj/obj.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj/obj.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/obj/obj_xref.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj/obj_xref.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_all.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_all.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_info.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_info.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_oth.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_oth.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_pk8.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_pk8.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_pkey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_pkey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_x509.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_x509.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pem/pem_xaux.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_xaux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pkcs8/p5_pbe.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p5_pbe.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pkcs8/p5_pbev2.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p5_pbev2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pkcs8/p8_pkey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p8_pkey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/pkcs8/pkcs8.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/pkcs8.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/poly1305/poly1305.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/poly1305/poly1305_arm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305_arm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/poly1305/poly1305_vec.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305_vec.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rand/deterministic.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/deterministic.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rand/rand.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/rand.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rand/urandom.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/urandom.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rand/windows.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rc4/rc4.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4/rc4.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/refcount_c11.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/refcount_c11.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/refcount_lock.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/refcount_lock.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rsa/blinding.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/blinding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rsa/padding.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/padding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rsa/rsa.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rsa/rsa_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/rsa/rsa_impl.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa_impl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/sha/sha1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/sha/sha256.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha256.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/sha/sha512.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha512.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/stack/stack.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack/stack.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/thread.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/thread_none.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_none.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/thread_pthread.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_pthread.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/thread_win.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_win.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/time_support.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/time_support.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/a_digest.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_digest.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/a_sign.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_sign.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/a_strex.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_strex.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/a_verify.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_verify.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/algorithm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/algorithm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/asn1_gen.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/asn1_gen.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/by_dir.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/by_dir.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/by_file.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/by_file.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/i2d_pr.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/i2d_pr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/pkcs7.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/pkcs7.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/rsa_pss.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/rsa_pss.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/t_crl.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_crl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/t_req.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_req.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/t_x509.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_x509.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/t_x509a.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_x509a.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_att.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_att.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_cmp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_cmp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_d2.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_d2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_def.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_def.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_ext.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_ext.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_lu.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_lu.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_obj.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_obj.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_r2x.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_r2x.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_req.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_req.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_set.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_set.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_trs.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_trs.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_txt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_txt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_v3.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_v3.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_vfy.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_vfy.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509_vpm.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_vpm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509cset.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509cset.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509name.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509name.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509rset.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509rset.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509spki.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509spki.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x509type.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509type.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_algor.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_algor.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_all.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_all.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_attrib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_attrib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_crl.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_crl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_exten.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_exten.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_info.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_info.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_name.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_name.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_pkey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_pkey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_pubkey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_pubkey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_req.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_req.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_sig.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_sig.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_spki.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_spki.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_val.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_val.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_x509.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_x509.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509/x_x509a.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_x509a.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_cache.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_cache.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_data.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_data.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_map.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_map.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_node.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_node.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/pcy_tree.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_tree.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_akey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_akey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_akeya.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_akeya.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_alt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_alt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_bcons.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_bcons.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_bitst.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_bitst.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_conf.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_conf.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_cpols.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_cpols.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_crld.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_crld.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_enum.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_enum.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_extku.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_extku.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_genn.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_genn.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_ia5.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_ia5.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_info.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_info.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_int.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_int.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_ncons.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_ncons.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_pci.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pci.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_pcia.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pcia.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_pcons.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pcons.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_pku.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pku.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_pmaps.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pmaps.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_prn.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_prn.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_purp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_purp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_skey.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_skey.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_sxnet.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_sxnet.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/crypto/x509v3/v3_utl.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_utl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/custom_extensions.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/custom_extensions.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/d1_both.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_both.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/d1_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/d1_pkt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_pkt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/d1_srtp.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_srtp.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/dtls_method.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/dtls_method.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/dtls_record.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/dtls_record.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/handshake_client.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/handshake_client.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/handshake_server.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/handshake_server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/s3_both.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_both.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/s3_enc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_enc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/s3_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/s3_pkt.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_pkt.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_aead_ctx.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_aead_ctx.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_asn1.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_asn1.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_buffer.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_cert.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_cert.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_cipher.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_cipher.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_ecdh.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_ecdh.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_file.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_file.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_rsa.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_rsa.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_session.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_session.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/ssl_stat.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_stat.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/t1_enc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/t1_enc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/t1_lib.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/t1_lib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls13_both.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_both.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls13_client.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_client.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls13_enc.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_enc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls13_server.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls_method.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls_method.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/boringssl/ssl/tls_record.c -o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls_record.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/adler32.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/adler32.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/compress.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/compress.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/crc32.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/crc32.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/deflate.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/deflate.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/gzclose.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzclose.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/gzlib.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzlib.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
third_party/zlib/gzlib.c: In function 'gz_open':
third_party/zlib/gzlib.c:14:17: warning: implicit declaration of function 'lseek' [-Wimplicit-function-declaration]
# define LSEEK lseek
^
third_party/zlib/gzlib.c:256:24: note: in expansion of macro 'LSEEK'
state->start = LSEEK(state->fd, 0, SEEK_CUR);
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/gzread.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzread.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
third_party/zlib/gzread.c: In function 'gz_load':
third_party/zlib/gzread.c:30:15: warning: implicit declaration of function 'read' [-Wimplicit-function-declaration]
ret = read(state->fd, buf + *have, len - *have);
^~~~
third_party/zlib/gzread.c: In function 'gzclose_r':
third_party/zlib/gzread.c:591:11: warning: implicit declaration of function 'close' [-Wimplicit-function-declaration]
ret = close(state->fd);
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/gzwrite.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzwrite.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
third_party/zlib/gzwrite.c: In function 'gz_comp':
third_party/zlib/gzwrite.c:84:15: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
got = write(state->fd, strm->next_in, strm->avail_in);
^~~~~
third_party/zlib/gzwrite.c: In function 'gzclose_w':
third_party/zlib/gzwrite.c:573:9: warning: implicit declaration of function 'close' [-Wimplicit-function-declaration]
if (close(state->fd) == -1)
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/infback.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/infback.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/inffast.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/inffast.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/inflate.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/inflate.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/inftrees.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/inftrees.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/trees.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/trees.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/uncompr.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/uncompr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c third_party/zlib/zutil.c -o python_build/temp.linux-x86_64-3.6/third_party/zlib/zutil.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -shared -Wl,--as-needed -Wl,--as-needed python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython/cygrpc.o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/basic_timers.o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/stap_timers.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/alloc.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/avl.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/backoff.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cmdline.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_iphone.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_linux.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_linux.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/histogram.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/host_port.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_android.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_linux.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/mpscq.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/murmur_hash.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/stack_lockfree.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_util_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_precise.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tls_pthread.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_msys.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/support/wrap_memcpy.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/init.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_args.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack_builder.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/compress_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/connected_channel.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/deadline_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_factory.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_registry.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_client_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_server_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/message_size_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/compression.o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/message_compress.o python_build/temp.linux-x86_64-3.6/src/core/lib/debug/trace.o python_build/temp.linux-x86_64-3.6/src/core/lib/http/format_request.o python_build/temp.linux-x86_64-3.6/src/core/lib/http/httpcli.o python_build/temp.linux-x86_64-3.6/src/core/lib/http/parser.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/closure.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/combiner.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/error.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_epoll_linux.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_poll_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/exec_ctx.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/executor.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iocp_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/load_file.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/network_status_tracker.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/polling_entity.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resource_quota.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/sockaddr_utils.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_mutator.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_common_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_linux.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/time_averaged_stats.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_generic.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_heap.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/udp_server.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix_noop.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_cv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_eventfd.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_nospecial.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_pipe.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_posix.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_uv.o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_windows.o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json.o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_reader.o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_string.o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_writer.o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/percent_encoding.o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice.o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_buffer.o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_string_helpers.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/alarm.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/api_trace.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer_reader.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_details.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_log_batch.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_init.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_ping.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_stack_type.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/completion_queue.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/event_string.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/lame_client.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/metadata_array.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/server.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/validate_metadata.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/version.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/byte_stream.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/connectivity_state.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/mdstr_hash_table.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata_batch.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/pid_controller.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/service_config.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/static_metadata.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/timeout_encoding.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport.o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport_op_string.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_decoder.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_encoder.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_plugin.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_transport.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_data.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_goaway.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_ping.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_rst_stream.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_settings.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_window_update.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_encoder.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_parser.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_table.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/huffsyms.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/incoming_metadata.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/parsing.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/status_conversion.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/stream_lists.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/stream_map.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/varint.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/writing.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn/alpn.o python_build/temp.linux-x86_64-3.6/src/core/lib/http/httpcli_security_connector.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/context/security_context.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite/composite_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/credentials_metadata.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake/fake_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default/credentials_generic.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default/google_default_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam/iam_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/json_token.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/jwt_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt/jwt_verifier.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2/oauth2_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin/plugin_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl/ssl_credentials.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/client_auth_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/secure_endpoint.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/security_connector.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/security_handshaker.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/server_auth_filter.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport/tsi_error.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/util/b64.o python_build/temp.linux-x86_64-3.6/src/core/lib/security/util/json_util.o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/init_secure.o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/fake_transport_security.o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/ssl_transport_security.o python_build/temp.linux-x86_64-3.6/src/core/lib/tsi/transport_security.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/chttp2_server.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure/secure_channel_create.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/channel_connectivity.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel_factory.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/client_channel_plugin.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/connector.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/default_initial_connect_string.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/http_connect_handshaker.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/initial_connect_string.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy_factory.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/lb_policy_registry.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/parse_address.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver_factory.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/resolver_registry.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/subchannel.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/subchannel_index.o python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel/uri_parser.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/chttp2_connector.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure/server_chttp2.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure/channel_create.o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/grpclb.o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/load_balancer_api.o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_common.o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_decode.o python_build/temp.linux-x86_64-3.6/third_party/nanopb/pb_encode.o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first/pick_first.o python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin/round_robin.o python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native/dns_resolver.o python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr/sockaddr_resolver.o python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting/load_reporting.o python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting/load_reporting_filter.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/base_resources.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/context.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen/census.pb.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen/trace_context.pb.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_context.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_filter.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/grpc_plugin.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/initialize.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/mlog.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/operation.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/placeholders.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/resource.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/trace_context.o python_build/temp.linux-x86_64-3.6/src/core/ext/census/tracing.o python_build/temp.linux-x86_64-3.6/src/core/plugin_registry/grpc_plugin_registry.o python_build/temp.linux-x86_64-3.6/src/boringssl/err_data.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes/aes.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes/mode_wrappers.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_bitstr.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_bool.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_d2i_fp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_dup.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_enum.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_gentm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_i2d_fp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_int.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_mbstr.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_object.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_octet.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_print.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_strnid.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_time.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_type.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_utctm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/a_utf8.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn1_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn1_par.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/asn_pack.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_enum.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_int.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/f_string.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/t_bitst.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_dec.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_enc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_fre.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_new.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_typ.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/tasn_utl.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/x_bignum.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1/x_long.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64/base64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/bio.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/bio_mem.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/buffer.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/connect.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/fd.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/file.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/hexdump.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/pair.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/printf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/socket.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio/socket_helper.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/add.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm/x86_64-gcc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/bn.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/bn_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/cmp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/convert.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/ctx.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/div.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/exponentiation.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/gcd.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/generic.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/kronecker.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/montgomery.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/montgomery_inv.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/mul.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/prime.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/random.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/rsaz_exp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/shift.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/sqrt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf/buf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/asn1_compat.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/ber.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/cbb.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring/cbs.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha/chacha.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/aead.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/cipher.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/derive_key.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_aes.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_chacha20poly1305.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_des.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_null.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_rc2.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_rc4.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_ssl3.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/e_tls.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher/tls_cbc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac/cmac.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf/conf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-aarch64-linux.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-arm-linux.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-arm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-intel.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cpu-ppc64le.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/crypto.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/curve25519.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/spake25519.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519/x25519-x86_64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des/des.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/check.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/dh.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/dh_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh/params.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest/digest.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest/digests.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa/dsa.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa/dsa_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_key.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/ec_montgomery.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/oct.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p224-64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p256-64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/p256-x86_64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/simple.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/util-64.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec/wnaf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh/ecdh.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa/ecdsa.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa/ecdsa_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine/engine.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err/err.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/digestsign.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/evp_ctx.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_dsa_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_ec.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_ec_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_rsa.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/p_rsa_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/pbkdf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/print.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp/sign.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ex_data.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf/hkdf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac/hmac.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash/lhash.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4/md4.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5/md5.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/mem.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/cbc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/cfb.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/ctr.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/gcm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes/ofb.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/error_correction.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/newhope.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/ntt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/poly.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/precomp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope/reduce.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj/obj.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj/obj_xref.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_all.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_info.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_oth.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_pk8.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_pkey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_x509.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem/pem_xaux.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p5_pbe.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p5_pbev2.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/p8_pkey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8/pkcs8.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305_arm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305/poly1305_vec.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/deterministic.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/rand.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/urandom.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand/windows.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4/rc4.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/refcount_c11.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/refcount_lock.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/blinding.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/padding.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa/rsa_impl.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha256.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha/sha512.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack/stack.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_none.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_pthread.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/thread_win.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/time_support.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_digest.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_sign.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_strex.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/a_verify.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/algorithm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/asn1_gen.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/by_dir.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/by_file.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/i2d_pr.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/pkcs7.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/rsa_pss.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_crl.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_req.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_x509.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/t_x509a.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_att.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_cmp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_d2.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_def.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_ext.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_lu.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_obj.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_r2x.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_req.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_set.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_trs.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_txt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_v3.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_vfy.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509_vpm.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509cset.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509name.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509rset.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509spki.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x509type.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_algor.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_all.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_attrib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_crl.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_exten.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_info.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_name.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_pkey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_pubkey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_req.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_sig.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_spki.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_val.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_x509.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509/x_x509a.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_cache.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_data.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_map.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_node.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/pcy_tree.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_akey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_akeya.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_alt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_bcons.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_bitst.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_conf.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_cpols.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_crld.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_enum.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_extku.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_genn.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_ia5.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_info.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_int.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_ncons.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pci.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pcia.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pcons.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pku.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_pmaps.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_prn.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_purp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_skey.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_sxnet.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3/v3_utl.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/custom_extensions.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_both.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_pkt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/d1_srtp.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/dtls_method.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/dtls_record.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/handshake_client.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/handshake_server.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_both.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_enc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/s3_pkt.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_aead_ctx.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_asn1.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_buffer.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_cert.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_cipher.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_ecdh.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_file.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_rsa.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_session.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/ssl_stat.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/t1_enc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/t1_lib.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_both.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_client.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_enc.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls13_server.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls_method.o python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl/tls_record.o python_build/temp.linux-x86_64-3.6/third_party/zlib/adler32.o python_build/temp.linux-x86_64-3.6/third_party/zlib/compress.o python_build/temp.linux-x86_64-3.6/third_party/zlib/crc32.o python_build/temp.linux-x86_64-3.6/third_party/zlib/deflate.o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzclose.o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzlib.o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzread.o python_build/temp.linux-x86_64-3.6/third_party/zlib/gzwrite.o python_build/temp.linux-x86_64-3.6/third_party/zlib/infback.o python_build/temp.linux-x86_64-3.6/third_party/zlib/inffast.o python_build/temp.linux-x86_64-3.6/third_party/zlib/inflate.o python_build/temp.linux-x86_64-3.6/third_party/zlib/inftrees.o python_build/temp.linux-x86_64-3.6/third_party/zlib/trees.o python_build/temp.linux-x86_64-3.6/third_party/zlib/uncompr.o python_build/temp.linux-x86_64-3.6/third_party/zlib/zutil.o -L/usr/lib -lrt -lm -lpython3.6m -o python_build/lib.linux-x86_64-3.6/grpc/_cython/cygrpc.cpython-36m-x86_64-linux-gnu.so -lpthread -Wl,-wrap,memcpy
/usr/lib/gcc/x86_64-alpine-linux-musl/6.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: python_build/lib.linux-x86_64-3.6/grpc/_cython/cygrpc.cpython-36m-x86_64-linux-gnu.so: No symbol version section for versioned symbol `memcpy@GLIBC_2.2.5'
/usr/lib/gcc/x86_64-alpine-linux-musl/6.3.0/../../../../x86_64-alpine-linux-musl/bin/ld: final link failed: Nonrepresentable section on output
collect2: error: ld returned 1 exit status
Traceback (most recent call last):
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 196, in link
self.spawn(linker + ld_args)
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/_spawn_patch.py", line 69, in _commandfile_spawn
_classic_spawn(self, command)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 909, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 36, in spawn
_spawn_posix(cmd, search_path, dry_run=dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 159, in _spawn_posix
% (cmd, exit_status))
distutils.errors.DistutilsExecError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/commands.py", line 281, in build_extensions
build_ext.build_ext.build_extensions(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 448, in build_extensions
self._build_extensions_serial()
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 473, in _build_extensions_serial
self.build_extension(ext)
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 196, in build_extension
_build_ext.build_extension(self, ext)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 558, in build_extension
target_lang=language)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 717, in link_shared_object
extra_preargs, extra_postargs, build_temp, target_lang)
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 198, in link
raise LinkError(msg)
distutils.errors.LinkError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/tmp/pip-build-yvgk_4fl/grpcio/setup.py", line 276, in <module>
cmdclass=COMMAND_CLASS,
File "/usr/lib/python3.6/distutils/core.py", line 148, in setup
dist.run_commands()
File "/usr/lib/python3.6/distutils/dist.py", line 955, in run_commands
self.run_command(cmd)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/wheel/bdist_wheel.py", line 179, in run
self.run_command('build')
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/distutils/command/build.py", line 135, in run
self.run_command(cmd_name)
File "/usr/lib/python3.6/distutils/cmd.py", line 313, in run_command
self.distribution.run_command(command)
File "/usr/lib/python3.6/distutils/dist.py", line 974, in run_command
cmd_obj.run()
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 75, in run
_build_ext.run(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 339, in run
self.build_extensions()
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/commands.py", line 284, in build_extensions
support.diagnose_build_ext_error(self, error, formatted_exception)
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/support.py", line 122, in diagnose_build_ext_error
"\n\n{}".format(formatted))
commands.CommandError:
We could not diagnose your build failure. Please file an issue at http://www.github.com/grpc/grpc with `[Python install]` in the title.
Traceback (most recent call last):
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 196, in link
self.spawn(linker + ld_args)
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/_spawn_patch.py", line 69, in _commandfile_spawn
_classic_spawn(self, command)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 909, in spawn
spawn(cmd, dry_run=self.dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 36, in spawn
_spawn_posix(cmd, search_path, dry_run=dry_run)
File "/usr/lib/python3.6/distutils/spawn.py", line 159, in _spawn_posix
% (cmd, exit_status))
distutils.errors.DistutilsExecError: command 'gcc' failed with exit status 1
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/pip-build-yvgk_4fl/grpcio/src/python/grpcio/commands.py", line 281, in build_extensions
build_ext.build_ext.build_extensions(self)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 448, in build_extensions
self._build_extensions_serial()
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 473, in _build_extensions_serial
self.build_extension(ext)
File "/usr/lib/python3.6/site-packages/setuptools/command/build_ext.py", line 196, in build_extension
_build_ext.build_extension(self, ext)
File "/usr/lib/python3.6/distutils/command/build_ext.py", line 558, in build_extension
target_lang=language)
File "/usr/lib/python3.6/distutils/ccompiler.py", line 717, in link_shared_object
extra_preargs, extra_postargs, build_temp, target_lang)
File "/usr/lib/python3.6/distutils/unixccompiler.py", line 198, in link
raise LinkError(msg)
distutils.errors.LinkError: command 'gcc' failed with exit status 1
----------------------------------------
Failed building wheel for grpcio
Running setup.py clean for grpcio
Running setup.py bdist_wheel for grpcio-tools ... done
Stored in directory: /root/.cache/pip/wheels/98/7c/06/47b3ba5d06f8f527244cce42b0c34889a3986fbfb2fd3df546
Successfully built grpcio-tools
Failed to build grpcio
Installing collected packages: six, enum34, protobuf, grpcio, grpcio-tools
Running setup.py install for grpcio ... error
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-yvgk_4fl/grpcio/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-o0y15an_-record/install-record.txt --single-version-externally-managed --compile:
Found cython-generated files...
running install
running build
running build_py
running build_project_metadata
creating python_build
creating python_build/lib.linux-x86_64-3.6
creating python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_grpcio_metadata.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_plugin_wrapping.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_auth.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_utilities.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_credential_composition.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_channel.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_common.py -> python_build/lib.linux-x86_64-3.6/grpc
copying src/python/grpcio/grpc/_server.py -> python_build/lib.linux-x86_64-3.6/grpc
creating python_build/lib.linux-x86_64-3.6/grpc/_cython
copying src/python/grpcio/grpc/_cython/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython
creating python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_client_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_server_adaptations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/_connectivity_channel.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/interfaces.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
copying src/python/grpcio/grpc/beta/implementations.py -> python_build/lib.linux-x86_64-3.6/grpc/beta
creating python_build/lib.linux-x86_64-3.6/grpc/framework
copying src/python/grpcio/grpc/framework/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
copying src/python/grpcio/grpc/_cython/_cygrpc/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_cygrpc
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
copying src/python/grpcio/grpc/framework/interfaces/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces
creating python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/logging_pool.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/stream.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/abandonment.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/callable_util.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
copying src/python/grpcio/grpc/framework/foundation/future.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/foundation
creating python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/style.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
copying src/python/grpcio/grpc/framework/common/cardinality.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/common
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
copying src/python/grpcio/grpc/framework/interfaces/base/base.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/base
creating python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/__init__.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/utilities.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
copying src/python/grpcio/grpc/framework/interfaces/face/face.py -> python_build/lib.linux-x86_64-3.6/grpc/framework/interfaces/face
creating python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
copying src/python/grpcio/grpc/_cython/_credentials/roots.pem -> python_build/lib.linux-x86_64-3.6/grpc/_cython/_credentials
running build_ext
Found cython-generated files...
building 'grpc._cython.cygrpc' extension
creating python_build/temp.linux-x86_64-3.6
creating python_build/temp.linux-x86_64-3.6/src
creating python_build/temp.linux-x86_64-3.6/src/python
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc
creating python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython
creating python_build/temp.linux-x86_64-3.6/src/core
creating python_build/temp.linux-x86_64-3.6/src/core/lib
creating python_build/temp.linux-x86_64-3.6/src/core/lib/profiling
creating python_build/temp.linux-x86_64-3.6/src/core/lib/support
creating python_build/temp.linux-x86_64-3.6/src/core/lib/surface
creating python_build/temp.linux-x86_64-3.6/src/core/lib/channel
creating python_build/temp.linux-x86_64-3.6/src/core/lib/compression
creating python_build/temp.linux-x86_64-3.6/src/core/lib/debug
creating python_build/temp.linux-x86_64-3.6/src/core/lib/http
creating python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr
creating python_build/temp.linux-x86_64-3.6/src/core/lib/json
creating python_build/temp.linux-x86_64-3.6/src/core/lib/slice
creating python_build/temp.linux-x86_64-3.6/src/core/lib/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/alpn
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/context
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/composite
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/fake
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/google_default
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/iam
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/jwt
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/oauth2
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/plugin
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/credentials/ssl
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/transport
creating python_build/temp.linux-x86_64-3.6/src/core/lib/security/util
creating python_build/temp.linux-x86_64-3.6/src/core/lib/tsi
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/secure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/client_channel
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/client/insecure
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1
creating python_build/temp.linux-x86_64-3.6/third_party
creating python_build/temp.linux-x86_64-3.6/third_party/nanopb
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/pick_first
creating python_build/temp.linux-x86_64-3.6/src/core/ext/lb_policy/round_robin
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/dns/native
creating python_build/temp.linux-x86_64-3.6/src/core/ext/resolver/sockaddr
creating python_build/temp.linux-x86_64-3.6/src/core/ext/load_reporting
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census
creating python_build/temp.linux-x86_64-3.6/src/core/ext/census/gen
creating python_build/temp.linux-x86_64-3.6/src/core/plugin_registry
creating python_build/temp.linux-x86_64-3.6/src/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/aes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/asn1
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/base64
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bio
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bn/asm
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/buf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/bytestring
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/chacha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cipher
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/cmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/conf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/curve25519
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/des
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/digest
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/dsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ec
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdh
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/ecdsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/engine
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/err
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/evp
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hkdf
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/hmac
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/lhash
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/md5
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/modes
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/newhope
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/obj
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pem
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/pkcs8
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/poly1305
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rand
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rc4
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/rsa
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/sha
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/stack
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/crypto/x509v3
creating python_build/temp.linux-x86_64-3.6/third_party/boringssl/ssl
creating python_build/temp.linux-x86_64-3.6/third_party/zlib
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/python/grpcio/grpc/_cython/cygrpc.c -o python_build/temp.linux-x86_64-3.6/src/python/grpcio/grpc/_cython/cygrpc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:486:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/python/grpcio/grpc/_cython/cygrpc.c:489:0:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2303:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:2304:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past(); /* proto */
^~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11496:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_4infinite_future() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c:11570:18: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static PyObject *__pyx_pf_4grpc_7_cython_6cygrpc_8Timespec_6infinite_past() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_10ChannelArg___cinit__':
src/python/grpcio/grpc/_cython/cygrpc.c:14570:38: warning: assignment from incompatible pointer type [-Wincompatible-pointer-types]
__pyx_v_self->ptr_vtable.destroy = (&__pyx_f_4grpc_7_cython_6cygrpc_destroy_ptr);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_17_MetadataIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:16017:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
src/python/grpcio/grpc/_cython/cygrpc.c: In function '__pyx_pf_4grpc_7_cython_6cygrpc_19_OperationsIterator_4__next__':
src/python/grpcio/grpc/_cython/cygrpc.c:19650:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
__pyx_t_3 = ((__pyx_v_self->i < __pyx_t_2) != 0);
^
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/profiling/basic_timers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/basic_timers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/profiling/stap_timers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/profiling/stap_timers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/alloc.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/alloc.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/alloc.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/alloc.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/alloc.c:43:26: warning: function declaration isn't a prototype [-Wstrict-prototypes]
gpr_allocation_functions gpr_get_allocation_functions() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/avl.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/avl.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/avl.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/backoff.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/backoff.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cmdline.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cmdline.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/cmdline.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/cmdline.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_iphone.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_iphone.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/cpu_linux.c:48:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/cpu_linux.c:53:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void init_num_cpus() {
^~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/cpu_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/cpu_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/env_linux.c:50:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/env_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/env_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/histogram.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/histogram.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/histogram.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/histogram.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/host_port.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/host_port.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/host_port.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/host_port.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/log.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/log.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/log.c:81:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void gpr_log_verbosity_init() {
^~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_android.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_android.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/log_linux.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/log_linux.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/log_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/log_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/mpscq.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/mpscq.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/mpscq.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/murmur_hash.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/murmur_hash.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/stack_lockfree.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/stack_lockfree.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/stack_lockfree.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/stack_lockfree.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/string.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/string.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/string_posix.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_util_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_util_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/string_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/string_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/subprocess_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/subprocess_posix.c:38:0:
include/grpc/support/subprocess.h:46:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI const char *gpr_subprocess_binary_extension();
^~~~~~
In file included from src/core/lib/support/subprocess_posix.c:51:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/subprocess_posix.c:52:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/support/subprocess_posix.c:59:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *gpr_subprocess_binary_extension() { return ""; }
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/subprocess_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/subprocess_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/sync.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/sync_posix.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/sync_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/sync_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/thd_posix.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/thd_posix.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/thd_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/thd_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time_posix.c:45:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_precise.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_precise.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/time_precise.c:34:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/time_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/time_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tls_pthread.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tls_pthread.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_msys.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_msys.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/support/tmpfile_posix.c:45:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/support/tmpfile_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/tmpfile_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/tmpfile_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/support/wrap_memcpy.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/support/wrap_memcpy.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/init.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/init.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/init.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/init.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from ./src/core/lib/channel/handshaker_registry.h:39,
from src/core/lib/surface/init.c:47:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/surface/init.c:47:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
In file included from src/core/lib/surface/init.c:54:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
src/core/lib/surface/init.c:107:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void register_builtin_channel_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/surface/init.c:158:3: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void (*init)();
^~~~
src/core/lib/surface/init.c:159:3: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void (*destroy)();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_args.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_args.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/channel_args.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/channel_args.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_stack.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from src/core/lib/channel/channel_stack.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/channel_stack.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/channel_stack_builder.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/channel_stack_builder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from src/core/lib/channel/channel_stack_builder.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/channel_stack_builder.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/compress_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/compress_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/compress_filter.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/compress_filter.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/connected_channel.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/connected_channel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from ./src/core/lib/channel/connected_channel.h:37,
from src/core/lib/channel/connected_channel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/connected_channel.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/deadline_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/deadline_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/deadline_filter.h:35,
from src/core/lib/channel/deadline_filter.c:32:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/deadline_filter.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/channel/handshaker.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/channel/handshaker.c:37:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/handshaker.c:40:0:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
src/core/lib/channel/handshaker.c:97:25: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker_factory.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_factory.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from src/core/lib/channel/handshaker_factory.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/channel/handshaker_factory.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/handshaker_registry.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/handshaker_registry.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/handshaker_factory.h:39:0,
from ./src/core/lib/channel/handshaker_registry.h:39,
from src/core/lib/channel/handshaker_registry.c:34:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from src/core/lib/channel/handshaker_registry.c:34:0:
./src/core/lib/channel/handshaker_registry.h:48:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init();
^~~~
In file included from src/core/lib/channel/handshaker_registry.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
src/core/lib/channel/handshaker_registry.c:88:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_handshaker_factory_registry_init() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/http_client_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_client_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_client_filter.h:36,
from src/core/lib/channel/http_client_filter.c:33:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/http_client_filter.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/http_server_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/http_server_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/http_server_filter.h:37,
from src/core/lib/channel/http_server_filter.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/http_server_filter.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/channel/message_size_filter.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/channel/message_size_filter.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/message_size_filter.h:35,
from src/core/lib/channel/message_size_filter.c:32:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/channel/message_size_filter.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/compression/compression.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/compression.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/compression/compression.c:41:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/compression/message_compress.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/compression/message_compress.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/compression/message_compress.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/compression/message_compress.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/debug/trace.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/debug/trace.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/debug/trace.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/debug/trace.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/format_request.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/format_request.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/format_request.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/httpcli.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/httpcli.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/httpcli.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/http/httpcli.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/http/parser.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/http/parser.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/http/parser.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/http/parser.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/closure.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/closure.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/closure.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/combiner.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/combiner.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/combiner.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/combiner.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/endpoint_pair_posix.c:48:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/endpoint_pair_posix.c:49:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/endpoint_pair_posix.c:51:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/endpoint_pair_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/endpoint_pair_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/error.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/error.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/error.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/error.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_epoll_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_epoll_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/ev_epoll_linux.c:2028:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_poll_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_poll_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/ev_poll_posix.h:37:0,
from src/core/lib/iomgr/ev_poll_posix.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/ev_poll_posix.c:47:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/ev_poll_posix.c:48:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/ev_poll_posix.c:1447:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void global_cv_fd_table_init() {
^~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/ev_poll_posix.c:1468:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void global_cv_fd_table_shutdown() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/ev_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/ev_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/ev_posix.c:38:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/ev_posix.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/ev_posix.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/ev_posix.c:113:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name() { return g_poll_strategy_name; }
^~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/exec_ctx.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/exec_ctx.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/exec_ctx.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/executor.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/executor.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/executor.c:34:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
In file included from src/core/lib/iomgr/executor.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/executor.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/executor.c:57:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init() {
^~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/executor.c:97:13: warning: function declaration isn't a prototype [-Wstrict-prototypes]
static void maybe_spawn_locked() {
^~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iocp_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iocp_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/iomgr.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/iomgr.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/iomgr/iomgr.c:48:0:
./src/core/lib/iomgr/network_status_tracker.h:43:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/iomgr_posix.c:39:0:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/iomgr_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/iomgr_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/load_file.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/load_file.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/load_file.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/load_file.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/network_status_tracker.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/network_status_tracker.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/network_status_tracker.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/network_status_tracker.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
src/core/lib/iomgr/network_status_tracker.c:59:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_destroy_network_status_monitor() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
src/core/lib/iomgr/network_status_tracker.c:111:6: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints() {
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/polling_entity.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/polling_entity.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/polling_entity.c:34:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/polling_entity.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_set_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_set_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_set_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/pollset_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/pollset_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/resolve_address_posix.c:44:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/resolve_address_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/iomgr/resolve_address_posix.c:51:0:
./src/core/lib/iomgr/executor.h:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_executor_init();
^~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resolve_address_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resolve_address_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/resource_quota.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/resource_quota.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/resource_quota.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/resource_quota.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/sockaddr_utils.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/sockaddr_utils.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/sockaddr_utils.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/sockaddr_utils.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_mutator.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_mutator.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_common_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_common_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/socket_utils_common_posix.c:53:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/socket_utils_common_posix.c:55:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_linux.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_linux.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/socket_utils_posix.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_utils_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_utils_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/socket_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/socket_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/tcp_client_posix.h:38:0,
from src/core/lib/iomgr/tcp_client_posix.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/tcp_client_posix.c:45:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_client_posix.c:46:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_client_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_client_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/tcp_posix.c:38:0:
./src/core/lib/iomgr/network_status_tracker.h:43:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
void grpc_network_status_shutdown_all_endpoints();
^~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/tcp_posix.c:39:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/tcp_posix.c:50:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_posix.c:51:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/tcp_server_posix.c:57:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/tcp_server_posix.c:58:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from ./src/core/lib/iomgr/tcp_posix.h:48:0,
from src/core/lib/iomgr/tcp_server_posix.c:68:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_server_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_server_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/tcp_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/tcp_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/time_averaged_stats.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/time_averaged_stats.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_generic.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_generic.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/timer_generic.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_heap.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_heap.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/timer_heap.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/timer_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/timer_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/udp_server.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/udp_server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/udp_server.h:38:0,
from src/core/lib/iomgr/udp_server.c:43:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/udp_server.c:57:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/udp_server.c:58:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/unix_sockets_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/unix_sockets_posix.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/unix_sockets_posix.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/unix_sockets_posix_noop.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/unix_sockets_posix_noop.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_cv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_cv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/wakeup_fd_cv.h:53:0,
from src/core/lib/iomgr/wakeup_fd_cv.c:38:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
In file included from src/core/lib/iomgr/wakeup_fd_cv.c:43:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/iomgr/wakeup_fd_cv.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_eventfd.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_eventfd.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_nospecial.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_nospecial.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_pipe.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_pipe.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/iomgr/wakeup_fd_pipe.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/wakeup_fd_posix.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/wakeup_fd_posix.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/iomgr/wakeup_fd_cv.h:53:0,
from src/core/lib/iomgr/wakeup_fd_posix.c:39:
./src/core/lib/iomgr/ev_posix.h:116:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
const char *grpc_get_poll_strategy_name();
^~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/workqueue_uv.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_uv.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/iomgr/workqueue_windows.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/iomgr/workqueue_windows.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_reader.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_reader.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json_reader.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/json/json_string.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/json/json_string.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/json/json_writer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/json/json_writer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/percent_encoding.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/percent_encoding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/percent_encoding.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/slice/slice.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice_buffer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice_buffer.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/slice/slice_buffer.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/slice/slice_string_helpers.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/slice/slice_string_helpers.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/slice/slice_string_helpers.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/alarm.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/alarm.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/alarm.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/api_trace.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/api_trace.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/api_trace.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/byte_buffer.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/byte_buffer.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/byte_buffer.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/byte_buffer_reader.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/byte_buffer_reader.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/byte_buffer_reader.c:41:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/byte_buffer_reader.c:42:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/call.c:43:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/call.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call_details.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_details.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/call_details.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/call_details.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/call_log_batch.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/call_log_batch.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/call.h:37,
from src/core/lib/surface/call_log_batch.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/call_log_batch.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/channel.h:37,
from src/core/lib/surface/channel.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_init.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_init.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/channel/channel_stack_builder.h:40,
from ./src/core/lib/surface/channel_init.h:37,
from src/core/lib/surface/channel_init.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel_init.c:36:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_ping.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_ping.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/channel.h:37,
from src/core/lib/surface/channel_ping.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/channel_ping.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/channel_stack_type.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/channel_stack_type.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/channel_stack_type.c:35:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/completion_queue.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/completion_queue.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/completion_queue.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/surface/completion_queue.c:41:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/event_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/event_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/lame_client.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/lame_client.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/lame_client.h:37,
from src/core/lib/surface/lame_client.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/lame_client.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/metadata_array.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/metadata_array.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/surface/metadata_array.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from ./src/core/lib/surface/api_trace.h:37:0,
from src/core/lib/surface/metadata_array.c:39:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/server.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/server.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from ./src/core/lib/surface/server.h:38,
from src/core/lib/surface/server.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/surface/server.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/validate_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/validate_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/surface/version.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/surface/version.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/byte_stream.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/byte_stream.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/byte_stream.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/connectivity_state.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/connectivity_state.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/connectivity_state.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/connectivity_state.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/mdstr_hash_table.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/mdstr_hash_table.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/mdstr_hash_table.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/mdstr_hash_table.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/metadata.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/metadata.c:44:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/metadata_batch.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/metadata_batch.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/metadata_batch.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/metadata_batch.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/pid_controller.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/pid_controller.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/service_config.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/service_config.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/service_config.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/service_config.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/static_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/static_metadata.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/timeout_encoding.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/timeout_encoding.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/transport.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/lib/transport/transport.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/lib/transport/transport.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/lib/transport/transport_op_string.c -o python_build/temp.linux-x86_64-3.6/src/core/lib/transport/transport_op_string.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from ./src/core/lib/channel/channel_stack.h:54:0,
from src/core/lib/transport/transport_op_string.c:34:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/lib/transport/transport_op_string.c:40:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
In file included from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:46:0:
./src/core/lib/channel/handshaker.h:128:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
grpc_handshake_manager* grpc_handshake_manager_create();
^~~~~~~~~~~~~~~~~~~~~~
In file included from ./src/core/lib/security/credentials/credentials.h:38:0,
from ./src/core/lib/security/context/security_context.h:38,
from src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c:47:
include/grpc/grpc_security.h:203:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GRPCAPI gpr_timespec grpc_max_auth_token_lifetime();
^~~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/bin_decoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_decoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/bin_decoder.c:35:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/bin_decoder.c:36:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/bin_encoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/bin_encoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/bin_encoder.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/chttp2_plugin.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_plugin.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/chttp2_transport.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/chttp2_transport.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/chttp2_transport.c:42:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/chttp2_transport.c:43:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_data.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_data.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_data.c:38:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_data.c:39:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_goaway.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_goaway.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_goaway.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_goaway.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_ping.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_ping.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_ping.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_ping.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_rst_stream.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_rst_stream.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_rst_stream.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_rst_stream.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_settings.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_settings.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_settings.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_settings.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/frame_window_update.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/frame_window_update.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/frame_window_update.c:37:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/frame_window_update.c:38:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_encoder.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_encoder.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_encoder.c:44:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_encoder.c:45:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_parser.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_parser.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_parser.c:46:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_parser.c:47:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/hpack_table.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/hpack_table.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
In file included from src/core/ext/transport/chttp2/transport/hpack_table.c:39:0:
include/grpc/support/alloc.h:72:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI gpr_allocation_functions gpr_get_allocation_functions();
^~~~~~
In file included from src/core/ext/transport/chttp2/transport/hpack_table.c:40:0:
include/grpc/support/log.h:86:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
GPRAPI void gpr_log_verbosity_init();
^~~~~~
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/huffsyms.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/transport/chttp2/transport/huffsyms.o -fvisibility=hidden -fno-wrapv -pthread -std=gnu99
gcc -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Os -fomit-frame-pointer -Os -fomit-frame-pointer -Os -fomit-frame-pointer -fPIC -DOPENSSL_NO_ASM=1 -D_WIN32_WINNT=1536 -DGPR_BACKWARDS_COMPATIBILITY_MODE=1 -DPyMODINIT_FUNC=__attribute__((visibility ("default"))) PyObject* -Isrc/python/grpcio -Iinclude -I. -Ithird_party/boringssl/include -Ithird_party/zlib -I/usr/include/python3.6m -c src/core/ext/transport/chttp2/transport/incoming_metadata.c -o python_build/temp.linux-x86_64-3.6/src/core/ext/tr
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment