-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bazel: 3.3.1 -> 3.7.2 #105439
Merged
Merged
bazel: 3.3.1 -> 3.7.2 #105439
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
00fdb28
pythonPackages36.{dm-sonnet, tensorflow-probability}: Use bazel 0.26 …
avdv 71cda4f
bazel: 3.3.1 -> 3.7.1
avdv 6d8c431
bazel: 3.7.1 -> 3.7.2
avdv e22cf98
bazel: Use jdk11_headless to build bazel
avdv 5f71a0f
bazel: Fix build on darwin
avdv a6e18b4
bazel: Reword comment that memory leaks are acceptable
avdv a42d59b
bazel-remote: Mark as broken on Darwin
avdv File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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
34 changes: 34 additions & 0 deletions
34
pkgs/development/tools/build-managers/bazel/bazel_3/no-arc.patch
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,34 @@ | ||
--- a/tools/osx/xcode_locator.m 2020-12-10 13:27:29.000000000 +0100 | ||
+++ b/tools/osx/xcode_locator.m 2021-02-01 09:09:32.159557051 +0100 | ||
@@ -21,10 +21,6 @@ | ||
// 6,6.4,6.4.1 = 6.4.1 | ||
// 6.3,6.3.0 = 6.3 | ||
|
||
-#if !defined(__has_feature) || !__has_feature(objc_arc) | ||
-#error "This file requires ARC support." | ||
-#endif | ||
- | ||
#import <CoreServices/CoreServices.h> | ||
#import <Foundation/Foundation.h> | ||
|
||
--- a/tools/osx/xcode_configure.bzl 1980-01-01 01:00:00.000000000 +0100 | ||
+++ b/tools/osx/xcode_configure.bzl 2021-02-01 09:36:57.773418444 +0100 | ||
@@ -123,7 +123,6 @@ | ||
"macosx", | ||
"clang", | ||
"-mmacosx-version-min=10.9", | ||
- "-fobjc-arc", | ||
"-framework", | ||
"CoreServices", | ||
"-framework", | ||
--- a/tools/osx/BUILD 2021-02-01 11:01:02.191659553 +0100 | ||
+++ b/tools/osx/BUILD 2021-02-01 11:04:29.735071019 +0100 | ||
@@ -27,7 +27,7 @@ | ||
]) | ||
|
||
DARWIN_XCODE_LOCATOR_COMPILE_COMMAND = """ | ||
- /usr/bin/xcrun --sdk macosx clang -mmacosx-version-min=10.9 -fobjc-arc -framework CoreServices \ | ||
+ /usr/bin/xcrun --sdk macosx clang -mmacosx-version-min=10.9 -framework CoreServices \ | ||
-framework Foundation -o $@ $< | ||
""" | ||
|
20 changes: 0 additions & 20 deletions
20
pkgs/development/tools/build-managers/bazel/bazel_3/python-shebang.patch
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you making these changes? They appear unrelated / unnecessary to the upgrade of Bazel?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I think I see your justification above in the description.