-
Notifications
You must be signed in to change notification settings - Fork 4.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
Steps towards getting Bazel compiling on Darwin #5
Conversation
With these changes I can compile and run blaze info: $ ./compile.sh $ /Users/danielwh/wcs/bazel/output/bazel --host_javabase=$(/usr/libexec/java_home) info |
And, creating a fake tools/genrule/genrule-setup.sh I can run genrules :) $ /Users/danielwh/wcs/bazel/output/bazel --host_javabase=$(/usr/libexec/java_home) build //p:gr Jun 27, 2014 9:01:38 PM com.google.devtools.build.lib.actions.ParallelBuilder buildArtifactsHook |
@hanwen merged these changes in manually |
https://jira.sc-corp.net/browse/APP-56636 (option bazelbuild#5) By default Bazel always performs a manifest merge action for every android_library with resources. This involves overriding the manifests package attribute with either a package inferred from the java{,tests} source root relative to the BUILD file or from the override specified in the custom_package attribute. This option disables the automatic stamping for users who would be happy to accept the package specified in the manifest and do not wish to override it. Saves 270 Actions Before: ManifestMerger 271 398 kb 74 kb 64176 s After: ManifestMerger 1 302 kb 0 b 489 s Will mostly affect clean builds. --- Automatic squash commit from https://github.sc-corp.net/Snapchat/bazel/pull/37 Cooled by jgerrish
https://jira.sc-corp.net/browse/APP-56636 (option bazelbuild#5) By default Bazel always performs a manifest merge action for every android_library with resources. This involves overriding the manifests package attribute with either a package inferred from the java{,tests} source root relative to the BUILD file or from the override specified in the custom_package attribute. This option disables the automatic stamping for users who would be happy to accept the package specified in the manifest and do not wish to override it. Saves 270 Actions Before: ManifestMerger 271 398 kb 74 kb 64176 s After: ManifestMerger 1 302 kb 0 b 489 s Will mostly affect clean builds. --- Automatic squash commit from https://github.sc-corp.net/Snapchat/bazel/pull/37 Cooled by jgerrish
No description provided.