diff options
author | Craig Tiller <ctiller@google.com> | 2016-02-04 15:06:41 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-02-04 15:06:41 -0800 |
commit | 71ea4a19550d96c4b4dfee0f56d45d5627e45672 (patch) | |
tree | 4a23cf93691ea3e525e90a9e1eaff7bffa75dacd /tools | |
parent | e4fdcd924263edca885b22122e9e7cf148c236fd (diff) |
Make binary compatibility not the default
Diffstat (limited to 'tools')
-rw-r--r-- | tools/run_tests/artifact_targets.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/artifact_targets.py b/tools/run_tests/artifact_targets.py index b37f968c06..159d803db3 100644 --- a/tools/run_tests/artifact_targets.py +++ b/tools/run_tests/artifact_targets.py @@ -175,7 +175,8 @@ class CSharpExtArtifact: else: environ = {'CONFIG': 'opt', 'EMBED_OPENSSL': 'true', - 'EMBED_ZLIB': 'true'} + 'EMBED_ZLIB': 'true', + 'CFLAGS': '-DGPR_BACKWARDS_COMPATIBILITY_MODE'} if self.platform == 'linux': return create_docker_jobspec(self.name, 'tools/dockerfile/grpc_artifact_linux_%s' % self.arch, |