We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c09634 commit ff2a6d0Copy full SHA for ff2a6d0
1 file changed
release/setup.py
@@ -70,7 +70,10 @@ def build_extension(self, ext):
70
71
# Build with bazel
72
# Use --compilation_mode=opt for release builds
73
- cmd = ['bazel', 'build', ext.target, '--compilation_mode=opt']
+ cmd = ['bazel']
74
+ if sys.platform == 'win32':
75
+ cmd.append('--output_user_root=C:/tmp')
76
+ cmd.extend(['build', ext.target, '--compilation_mode=opt'])
77
if sys.platform == 'win32':
78
self.platform_config_windows(cmd, python_version)
79
if sys.platform == 'darwin':
0 commit comments