Skip to content
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

Propagate .cargo/config.toml [env] settings to the process environment #117

Merged
merged 2 commits into from
Aug 22, 2023

Commits on Aug 17, 2023

  1. Propagate .cargo/config.toml [env] settings to the process enviro…

    …nment
    
    Environment variables can be set and optionally override the process
    environment through `.cargo/config.toml`'s `[env]` section:
    https://doc.rust-lang.org/cargo/reference/config.html#env
    
    These config variables have specific precedence rules with regards to
    overriding the environment set in the process, and can optionally
    represent paths relative to the parent of the containing `.cargo/`
    folder.
    
    Besides exposing variables to all other processes called by `xbuild`,
    this also allows `xbuild` itself to be driven by variables set in
    `.cargo/config.toml`, such as `$ANDROID_HOME` needed for #116.
    
    rust-mobile/cargo-subcommand#12
    rust-mobile/cargo-subcommand#16
    MarijnS95 committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    adc955f View commit details
    Browse the repository at this point in the history
  2. cargo/config: Don't canonicalize joined [env] relative paths

    Cargo doesn't do this either, and canonicalization requires the path to
    exist which it does not have to.
    MarijnS95 committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    bc36f20 View commit details
    Browse the repository at this point in the history