-
Notifications
You must be signed in to change notification settings - Fork 104
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
Allow passing custom environment variables, build deps and data deps to build scripts #287
Comments
actix_web needs this to exclude the |
Encountered a similar issue where Ended up working around the issue by setting the env var in bazelrc It would be preferable to be able to set |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sometimes, crate build scripts need additional environment variables or addition build/data dependencies to run correctly in a given bazel repository.
For example, to use a custom-built openssl, one might want to pass the following to the
cargo_build_script
rule of a crate:We would need a way for the user to express these build script requirements, probably in the
Cargo.toml
file.The text was updated successfully, but these errors were encountered: