mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
rust: add rust.envVars
This commit is contained in:
parent
aa53f32537
commit
c1df604e9f
@ -1,4 +1,8 @@
|
||||
{ lib }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, buildPackages
|
||||
, targetPackages
|
||||
}:
|
||||
|
||||
rec {
|
||||
# https://doc.rust-lang.org/reference/conditional-compilation.html#target_arch
|
||||
@ -59,8 +63,79 @@ rec {
|
||||
then builtins.toFile (toRustTarget platform + ".json") (builtins.toJSON platform.rustc.platform)
|
||||
else toRustTarget platform;
|
||||
|
||||
# When used as part of an environment variable name, triples are
|
||||
# uppercased and have all hyphens replaced by underscores:
|
||||
#
|
||||
# https://github.com/rust-lang/cargo/pull/9169
|
||||
# https://github.com/rust-lang/cargo/issues/8285#issuecomment-634202431
|
||||
#
|
||||
toRustTargetForUseInEnvVars = platform:
|
||||
lib.strings.replaceStrings ["-"] ["_"]
|
||||
(lib.strings.toUpper
|
||||
(toRustTarget platform));
|
||||
|
||||
# Returns true if the target is no_std
|
||||
# https://github.com/rust-lang/rust/blob/2e44c17c12cec45b6a682b1e53a04ac5b5fcc9d2/src/bootstrap/config.rs#L415-L421
|
||||
IsNoStdTarget = platform: let rustTarget = toRustTarget platform; in
|
||||
builtins.any (t: lib.hasInfix t rustTarget) ["-none" "nvptx" "switch" "-uefi"];
|
||||
|
||||
# These environment variables must be set when using `cargo-c` and
|
||||
# several other tools which do not deal well with cross
|
||||
# compilation. The symptom of the problem they fix is errors due
|
||||
# to buildPlatform CFLAGS being passed to the
|
||||
# hostPlatform-targeted compiler -- for example, `-m64` being
|
||||
# passed on a build=x86_64/host=aarch64 compilation.
|
||||
envVars = let
|
||||
ccForBuild = "${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc";
|
||||
cxxForBuild = "${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}c++";
|
||||
ccForHost = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc";
|
||||
cxxForHost = "${stdenv.cc}/bin/${stdenv.cc.targetPrefix}c++";
|
||||
|
||||
# Unfortunately we must use the dangerous `targetPackages` here
|
||||
# because hooks are artificially phase-shifted one slot earlier
|
||||
# (they go in nativeBuildInputs, so the hostPlatform looks like
|
||||
# a targetPlatform to them).
|
||||
ccForTarget = "${targetPackages.stdenv.cc}/bin/${targetPackages.stdenv.cc.targetPrefix}cc";
|
||||
cxxForTarget = "${targetPackages.stdenv.cc}/bin/${targetPackages.stdenv.cc.targetPrefix}c++";
|
||||
|
||||
rustBuildPlatform = toRustTarget stdenv.buildPlatform;
|
||||
rustBuildPlatformSpec = toRustTargetSpec stdenv.buildPlatform;
|
||||
rustHostPlatform = toRustTarget stdenv.hostPlatform;
|
||||
rustHostPlatformSpec = toRustTargetSpec stdenv.hostPlatform;
|
||||
rustTargetPlatform = toRustTarget stdenv.targetPlatform;
|
||||
rustTargetPlatformSpec = toRustTargetSpec stdenv.targetPlatform;
|
||||
in {
|
||||
inherit
|
||||
ccForBuild cxxForBuild rustBuildPlatform rustBuildPlatformSpec
|
||||
ccForHost cxxForHost rustHostPlatform rustHostPlatformSpec
|
||||
ccForTarget cxxForTarget rustTargetPlatform rustTargetPlatformSpec;
|
||||
|
||||
# Prefix this onto a command invocation in order to set the
|
||||
# variables needed by cargo.
|
||||
#
|
||||
setEnv = ''
|
||||
env \
|
||||
''
|
||||
# Due to a bug in how splicing and targetPackages works, in
|
||||
# situations where targetPackages is irrelevant
|
||||
# targetPackages.stdenv.cc is often simply wrong. We must omit
|
||||
# the following lines when rustTargetPlatform collides with
|
||||
# rustHostPlatform.
|
||||
+ lib.optionalString (rustTargetPlatform != rustHostPlatform) ''
|
||||
"CC_${toRustTargetForUseInEnvVars stdenv.targetPlatform}=${ccForTarget}" \
|
||||
"CXX_${toRustTargetForUseInEnvVars stdenv.targetPlatform}=${cxxForTarget}" \
|
||||
"CARGO_TARGET_${toRustTargetForUseInEnvVars stdenv.targetPlatform}_LINKER=${ccForTarget}" \
|
||||
'' + ''
|
||||
"CC_${toRustTargetForUseInEnvVars stdenv.hostPlatform}=${ccForHost}" \
|
||||
"CXX_${toRustTargetForUseInEnvVars stdenv.hostPlatform}=${cxxForHost}" \
|
||||
"CARGO_TARGET_${toRustTargetForUseInEnvVars stdenv.hostPlatform}_LINKER=${ccForHost}" \
|
||||
'' + ''
|
||||
"CC_${toRustTargetForUseInEnvVars stdenv.buildPlatform}=${ccForBuild}" \
|
||||
"CXX_${toRustTargetForUseInEnvVars stdenv.buildPlatform}=${cxxForBuild}" \
|
||||
"CARGO_TARGET_${toRustTargetForUseInEnvVars stdenv.buildPlatform}_LINKER=${ccForBuild}" \
|
||||
"CARGO_BUILD_TARGET=${rustBuildPlatform}" \
|
||||
"HOST_CC=${buildPackages.stdenv.cc}/bin/cc" \
|
||||
"HOST_CXX=${buildPackages.stdenv.cc}/bin/c++" \
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
@ -11,6 +11,7 @@
|
||||
|
||||
{ stdenv, lib
|
||||
, buildPackages
|
||||
, targetPackages
|
||||
, newScope, callPackage
|
||||
, CoreFoundation, Security, SystemConfiguration
|
||||
, pkgsBuildTarget, pkgsBuildBuild, pkgsBuildHost
|
||||
|
@ -13,6 +13,7 @@
|
||||
}:
|
||||
{ stdenv, lib
|
||||
, buildPackages
|
||||
, targetPackages
|
||||
, newScope, callPackage
|
||||
, CoreFoundation, Security, SystemConfiguration
|
||||
, pkgsBuildBuild
|
||||
@ -21,7 +22,7 @@
|
||||
|
||||
let
|
||||
# Use `import` to make sure no packages sneak in here.
|
||||
lib' = import ../../../build-support/rust/lib { inherit lib; };
|
||||
lib' = import ../../../build-support/rust/lib { inherit lib stdenv buildPackages targetPackages; };
|
||||
# Allow faster cross compiler generation by reusing Build artifacts
|
||||
fastCross = (stdenv.buildPlatform == stdenv.hostPlatform) && (stdenv.hostPlatform != stdenv.targetPlatform);
|
||||
in
|
||||
@ -29,7 +30,7 @@ in
|
||||
lib = lib';
|
||||
|
||||
# Backwards compat before `lib` was factored out.
|
||||
inherit (lib') toTargetArch toTargetOs toRustTarget toRustTargetSpec IsNoStdTarget;
|
||||
inherit (lib') toTargetArch toTargetOs toRustTarget toRustTargetSpec IsNoStdTarget toRustTargetForUseInEnvVars envVars;
|
||||
|
||||
# This just contains tools for now. But it would conceivably contain
|
||||
# libraries too, say if we picked some default/recommended versions to build
|
||||
|
Loading…
Reference in New Issue
Block a user