Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
d5fee35f
Commit
d5fee35f
authored
8 years ago
by
Masood Malekghassemi
Browse files
Options
Downloads
Patches
Plain Diff
Build Python3 grpcio-tools on OS X
parent
20caeb18
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/distrib/python/grpcio_tools/setup.py
+13
-0
13 additions, 0 deletions
tools/distrib/python/grpcio_tools/setup.py
with
13 additions
and
0 deletions
tools/distrib/python/grpcio_tools/setup.py
+
13
−
0
View file @
d5fee35f
...
@@ -31,9 +31,11 @@ from distutils import extension
...
@@ -31,9 +31,11 @@ from distutils import extension
import
errno
import
errno
import
os
import
os
import
os.path
import
os.path
import
pkg_resources
import
shlex
import
shlex
import
shutil
import
shutil
import
sys
import
sys
import
sysconfig
import
setuptools
import
setuptools
from
setuptools.command
import
build_ext
from
setuptools.command
import
build_ext
...
@@ -43,6 +45,8 @@ from setuptools.command import build_ext
...
@@ -43,6 +45,8 @@ from setuptools.command import build_ext
os
.
chdir
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
os
.
chdir
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'
.
'
))
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'
.
'
))
PY3
=
sys
.
version_info
.
major
==
3
# There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are
# There are some situations (like on Windows) where CC, CFLAGS, and LDFLAGS are
# entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support.
# entirely ignored/dropped/forgotten by distutils and its Cygwin/MinGW support.
# We use these environment variables to thus get around that without locking
# We use these environment variables to thus get around that without locking
...
@@ -59,6 +63,15 @@ GRPC_PYTHON_PROTO_RESOURCES_NAME = '_proto'
...
@@ -59,6 +63,15 @@ GRPC_PYTHON_PROTO_RESOURCES_NAME = '_proto'
import
protoc_lib_deps
import
protoc_lib_deps
import
grpc_version
import
grpc_version
# By default, Python3 distutils enforces compatibility of
# c plugins (.so files) with the OSX version Python3 was built with.
# For Python3.4, this is OSX 10.6, but we need Thread Local Support (__thread)
if
'
darwin
'
in
sys
.
platform
and
PY3
:
mac_target
=
sysconfig
.
get_config_var
(
'
MACOSX_DEPLOYMENT_TARGET
'
)
if
mac_target
and
(
pkg_resources
.
parse_version
(
mac_target
)
<
pkg_resources
.
parse_version
(
'
10.9.0
'
)):
os
.
environ
[
'
MACOSX_DEPLOYMENT_TARGET
'
]
=
'
10.9
'
def
package_data
():
def
package_data
():
tools_path
=
GRPC_PYTHON_TOOLS_PACKAGE
.
replace
(
'
.
'
,
os
.
path
.
sep
)
tools_path
=
GRPC_PYTHON_TOOLS_PACKAGE
.
replace
(
'
.
'
,
os
.
path
.
sep
)
proto_resources_path
=
os
.
path
.
join
(
tools_path
,
proto_resources_path
=
os
.
path
.
join
(
tools_path
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment