-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gregory Shimansky <gregory.shimansky@intel.com>
- Loading branch information
1 parent
f230b8a
commit f38a87e
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/python/setup.py b/python/setup.py | ||
index 54a0e40f3..0d89044c5 100644 | ||
--- a/python/setup.py | ||
+++ b/python/setup.py | ||
@@ -332,7 +332,7 @@ def build(build_python, build_java): | ||
bazel_targets += ["//java:ray_java_pkg"] if build_java else [] | ||
return bazel_invoke( | ||
subprocess.check_call, | ||
- ["--output_user_root=" + root_dir, "--output_base=" + out_dir, "build", "--verbose_failures", "--"] + bazel_targets, | ||
+ ["--output_user_root=" + root_dir, "--output_base=" + out_dir, "build", "--verbose_failures", "--nobuild_runfile_links", "--nolegacy_external_runfiles", "--"] + bazel_targets, | ||
env=bazel_env) | ||
|
||
|