diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python-grpcio')
-rw-r--r-- | meta-python/recipes-devtools/python/python-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/meta-python/recipes-devtools/python/python-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch b/meta-python/recipes-devtools/python/python-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch index 3abbc6d6f1..0c1d964a61 100644 --- a/meta-python/recipes-devtools/python/python-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch +++ b/meta-python/recipes-devtools/python/python-grpcio/0001-setup.py-Do-not-mix-C-and-C-compiler-options.patch | |||
@@ -18,19 +18,16 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
18 | setup.py | 2 +- | 18 | setup.py | 2 +- |
19 | 1 file changed, 1 insertion(+), 1 deletion(-) | 19 | 1 file changed, 1 insertion(+), 1 deletion(-) |
20 | 20 | ||
21 | diff --git a/setup.py b/setup.py | 21 | Index: grpcio-1.8.4/setup.py |
22 | index cb85273..f79878d 100644 | 22 | =================================================================== |
23 | --- a/setup.py | 23 | --- grpcio-1.8.4.orig/setup.py |
24 | +++ b/setup.py | 24 | +++ grpcio-1.8.4/setup.py |
25 | @@ -116,7 +116,7 @@ if EXTRA_ENV_COMPILE_ARGS is None: | 25 | @@ -115,7 +115,7 @@ if EXTRA_ENV_COMPILE_ARGS is None: |
26 | elif 'win32' in sys.platform: | 26 | else: |
27 | EXTRA_ENV_COMPILE_ARGS += ' -D_PYTHON_MSVC' | 27 | EXTRA_ENV_COMPILE_ARGS += ' -D_ftime=_ftime64 -D_timeb=__timeb64' |
28 | elif "linux" in sys.platform: | 28 | elif "linux" in sys.platform: |
29 | - EXTRA_ENV_COMPILE_ARGS += ' -std=c++11 -std=gnu99 -fvisibility=hidden -fno-wrapv -fno-exceptions' | 29 | - EXTRA_ENV_COMPILE_ARGS += ' -std=c++11 -std=gnu99 -fvisibility=hidden -fno-wrapv -fno-exceptions' |
30 | + EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv -fno-exceptions' | 30 | + EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv -fno-exceptions' |
31 | elif "darwin" in sys.platform: | 31 | elif "darwin" in sys.platform: |
32 | EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv' | 32 | EXTRA_ENV_COMPILE_ARGS += ' -fvisibility=hidden -fno-wrapv -fno-exceptions' |
33 | 33 | ||
34 | -- | ||
35 | 2.13.4 | ||
36 | |||