2017-02-07 17:25:01 +00:00
|
|
|
/* This file defines some basic smoke tests for cross compilation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
{ # The platforms *from* which we cross compile.
|
2018-09-11 19:18:24 +01:00
|
|
|
supportedSystems ? [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" ]
|
2017-01-14 19:25:01 +00:00
|
|
|
, # Strip most of attributes when evaluating to spare memory usage
|
|
|
|
scrubJobs ? true
|
2020-09-11 17:20:35 +01:00
|
|
|
, # Attributes passed to nixpkgs. Don't build packages marked as unfree.
|
|
|
|
nixpkgsArgs ? { config = { allowUnfree = false; inHydra = true; }; }
|
2017-01-14 19:25:01 +00:00
|
|
|
}:
|
|
|
|
|
2020-09-11 17:20:35 +01:00
|
|
|
with import ./release-lib.nix { inherit supportedSystems scrubJobs nixpkgsArgs; };
|
2017-01-14 19:25:01 +00:00
|
|
|
|
2010-03-09 14:14:30 +00:00
|
|
|
let
|
2018-09-11 19:18:24 +01:00
|
|
|
nativePlatforms = all;
|
2010-03-09 14:14:30 +00:00
|
|
|
|
2018-10-17 04:31:22 +01:00
|
|
|
embedded = {
|
|
|
|
buildPackages.binutils = nativePlatforms;
|
|
|
|
buildPackages.gcc = nativePlatforms;
|
|
|
|
libcCross = nativePlatforms;
|
|
|
|
};
|
2010-03-09 14:14:30 +00:00
|
|
|
|
2017-05-17 21:07:04 +01:00
|
|
|
common = {
|
|
|
|
buildPackages.binutils = nativePlatforms;
|
|
|
|
gmp = nativePlatforms;
|
2017-05-18 11:55:08 +01:00
|
|
|
libcCross = nativePlatforms;
|
2018-02-22 14:45:32 +00:00
|
|
|
nix = nativePlatforms;
|
|
|
|
nixUnstable = nativePlatforms;
|
2019-05-03 02:00:05 +01:00
|
|
|
mesa = nativePlatforms;
|
2010-03-09 14:14:30 +00:00
|
|
|
};
|
2010-03-09 10:33:31 +00:00
|
|
|
|
2017-05-18 15:41:58 +01:00
|
|
|
gnuCommon = lib.recursiveUpdate common {
|
2017-09-20 20:31:07 +01:00
|
|
|
buildPackages.gcc = nativePlatforms;
|
2017-05-17 21:07:04 +01:00
|
|
|
coreutils = nativePlatforms;
|
2018-01-22 16:29:15 +00:00
|
|
|
haskell.packages.ghcHEAD.hello = nativePlatforms;
|
2019-05-12 05:17:40 +01:00
|
|
|
haskellPackages.hello = nativePlatforms;
|
2010-03-09 14:14:30 +00:00
|
|
|
};
|
|
|
|
|
2017-05-18 15:41:58 +01:00
|
|
|
linuxCommon = lib.recursiveUpdate gnuCommon {
|
2017-05-22 21:36:59 +01:00
|
|
|
buildPackages.gdb = nativePlatforms;
|
2010-03-09 14:14:30 +00:00
|
|
|
|
2017-05-17 21:07:04 +01:00
|
|
|
bison = nativePlatforms;
|
|
|
|
busybox = nativePlatforms;
|
|
|
|
dropbear = nativePlatforms;
|
|
|
|
ed = nativePlatforms;
|
|
|
|
ncurses = nativePlatforms;
|
|
|
|
patch = nativePlatforms;
|
|
|
|
};
|
2017-05-17 16:04:27 +01:00
|
|
|
|
2017-05-18 15:41:58 +01:00
|
|
|
windowsCommon = lib.recursiveUpdate gnuCommon {
|
2017-05-17 16:04:27 +01:00
|
|
|
boehmgc = nativePlatforms;
|
|
|
|
guile_1_8 = nativePlatforms;
|
|
|
|
libffi = nativePlatforms;
|
|
|
|
libtool = nativePlatforms;
|
|
|
|
libunistring = nativePlatforms;
|
|
|
|
windows.wxMSW = nativePlatforms;
|
2018-01-02 22:37:12 +00:00
|
|
|
windows.mingw_w64_pthreads = nativePlatforms;
|
2017-05-17 16:04:27 +01:00
|
|
|
};
|
|
|
|
|
2019-04-24 02:51:30 +01:00
|
|
|
wasiCommon = {
|
|
|
|
gmp = nativePlatforms;
|
|
|
|
boehmgc = nativePlatforms;
|
|
|
|
hello = nativePlatforms;
|
|
|
|
zlib = nativePlatforms;
|
|
|
|
};
|
|
|
|
|
2017-05-17 21:07:04 +01:00
|
|
|
darwinCommon = {
|
|
|
|
buildPackages.binutils = darwin;
|
|
|
|
};
|
|
|
|
|
2018-02-22 14:33:27 +00:00
|
|
|
rpiCommon = linuxCommon // {
|
|
|
|
vim = nativePlatforms;
|
|
|
|
unzip = nativePlatforms;
|
|
|
|
ddrescue = nativePlatforms;
|
|
|
|
lynx = nativePlatforms;
|
|
|
|
patchelf = nativePlatforms;
|
|
|
|
buildPackages.binutils = nativePlatforms;
|
|
|
|
mpg123 = nativePlatforms;
|
|
|
|
};
|
2010-03-09 14:14:30 +00:00
|
|
|
in
|
2010-03-09 10:33:31 +00:00
|
|
|
|
2016-12-25 16:11:12 +00:00
|
|
|
{
|
top-level: Introduce `buildPackages` for resolving build-time deps
[N.B., this package also applies to the commits that follow it in the same
PR.]
In most cases, buildPackages = pkgs so things work just as before. For
cross compiling, however, buildPackages is resolved as the previous
bootstrapping stage. This allows us to avoid the mkDerivation hacks cross
compiling currently uses today.
To avoid a massive refactor, callPackage will splice together both package
sets. Again to avoid churn, it uses the old `nativeDrv` vs `crossDrv` to do
so. So now, whether cross compiling or not, packages with get a `nativeDrv`
and `crossDrv`---in the non-cross-compiling case they are simply the same
derivation. This is good because it reduces the divergence between the
cross and non-cross dataflow. See `pkgs/top-level/splice.nix` for a comment
along the lines of the preceding paragraph, and the code that does this
splicing.
Also, `forceNativeDrv` is replaced with `forceNativePackages`. The latter
resolves `pkgs` unless the host platform is different from the build
platform, in which case it resolves to `buildPackages`. Note that the
target platform is not important here---it will not prevent
`forcedNativePackages` from resolving to `pkgs`.
--------
Temporarily, we make preserve some dubious decisions in the name of preserving
hashes:
Most importantly, we don't distinguish between "host" and "target" in the
autoconf sense. This leads to the proliferation of *Cross derivations
currently used. What we ought to is resolve native deps of the cross "build
packages" (build = host != target) package set against the "vanilla
packages" (build = host = target) package set. Instead, "build packages"
uses itself, with (informally) target != build in all cases.
This is wrong because it violates the "sliding window" principle of
bootstrapping stages that shifting the platform triple of one stage to the
left coincides with the next stage's platform triple. Only because we don't
explicitly distinguish between "host" and "target" does it appear that the
"sliding window" principle is preserved--indeed it is over the reductionary
"platform double" of just "build" and "host/target".
Additionally, we build libc, libgcc, etc in the same stage as the compilers
themselves, which is wrong because they are used at runtime, not build
time. Fixing this is somewhat subtle, and the solution and problem will be
better explained in the commit that does fix it.
Commits after this will solve both these issues, at the expense of breaking
cross hashes. Native hashes won't be broken, thankfully.
--------
Did the temporary ugliness pan out? Of the packages that currently build in
`release-cross.nix`, the only ones that have their hash changed are
`*.gcc.crossDrv` and `bootstrapTools.*.coreutilsMinimal`. In both cases I
think it doesn't matter.
1. GCC when doing a `build = host = target = foreign` build (maximally
cross), still defines environment variables like `CPATH`[1] with
packages. This seems assuredly wrong because whether gcc dynamically
links those, or the programs built by gcc dynamically link those---I
have no idea which case is reality---they should be foreign. Therefore,
in all likelihood, I just made the gcc less broken.
2. Coreutils (ab)used the old cross-compiling infrastructure to depend on
a native version of itself. When coreutils was overwritten to be built
with fewer features, the native version it used would also be
overwritten because the binding was tight. Now it uses the much looser
`BuildPackages.coreutils` which is just fine as a richer build dep
doesn't cause any problems and avoids a rebuild.
So, in conclusion I'd say the conservatism payed off. Onward to actually
raking the muck in the next PR!
[1]: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
2016-12-18 07:51:18 +00:00
|
|
|
# These derivations from a cross package set's `buildPackages` should be
|
|
|
|
# identical to their vanilla equivalents --- none of these package should
|
|
|
|
# observe the target platform which is the only difference between those
|
|
|
|
# package sets.
|
2016-12-25 18:50:53 +00:00
|
|
|
ensureUnaffected = let
|
|
|
|
# Absurd values are fine here, as we are not building anything. In fact,
|
|
|
|
# there probably a good idea to try to be "more parametric" --- i.e. avoid
|
|
|
|
# any special casing.
|
|
|
|
crossSystem = {
|
2017-05-23 06:44:27 +01:00
|
|
|
config = "mips64el-apple-windows-gnu";
|
|
|
|
libc = "glibc";
|
2016-12-25 18:50:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Converting to a string (drv path) before checking equality is probably a
|
|
|
|
# good idea lest there be some irrelevant pass-through debug attrs that
|
|
|
|
# cause false negatives.
|
|
|
|
testEqualOne = path: system: let
|
2018-09-06 19:28:44 +01:00
|
|
|
f = path: crossSystem: system: builtins.toString (lib.getAttrFromPath path (pkgsForCross crossSystem system));
|
2017-02-09 21:09:47 +00:00
|
|
|
in assertTrue (
|
2018-09-06 19:28:44 +01:00
|
|
|
f path null system
|
top-level: Introduce `buildPackages` for resolving build-time deps
[N.B., this package also applies to the commits that follow it in the same
PR.]
In most cases, buildPackages = pkgs so things work just as before. For
cross compiling, however, buildPackages is resolved as the previous
bootstrapping stage. This allows us to avoid the mkDerivation hacks cross
compiling currently uses today.
To avoid a massive refactor, callPackage will splice together both package
sets. Again to avoid churn, it uses the old `nativeDrv` vs `crossDrv` to do
so. So now, whether cross compiling or not, packages with get a `nativeDrv`
and `crossDrv`---in the non-cross-compiling case they are simply the same
derivation. This is good because it reduces the divergence between the
cross and non-cross dataflow. See `pkgs/top-level/splice.nix` for a comment
along the lines of the preceding paragraph, and the code that does this
splicing.
Also, `forceNativeDrv` is replaced with `forceNativePackages`. The latter
resolves `pkgs` unless the host platform is different from the build
platform, in which case it resolves to `buildPackages`. Note that the
target platform is not important here---it will not prevent
`forcedNativePackages` from resolving to `pkgs`.
--------
Temporarily, we make preserve some dubious decisions in the name of preserving
hashes:
Most importantly, we don't distinguish between "host" and "target" in the
autoconf sense. This leads to the proliferation of *Cross derivations
currently used. What we ought to is resolve native deps of the cross "build
packages" (build = host != target) package set against the "vanilla
packages" (build = host = target) package set. Instead, "build packages"
uses itself, with (informally) target != build in all cases.
This is wrong because it violates the "sliding window" principle of
bootstrapping stages that shifting the platform triple of one stage to the
left coincides with the next stage's platform triple. Only because we don't
explicitly distinguish between "host" and "target" does it appear that the
"sliding window" principle is preserved--indeed it is over the reductionary
"platform double" of just "build" and "host/target".
Additionally, we build libc, libgcc, etc in the same stage as the compilers
themselves, which is wrong because they are used at runtime, not build
time. Fixing this is somewhat subtle, and the solution and problem will be
better explained in the commit that does fix it.
Commits after this will solve both these issues, at the expense of breaking
cross hashes. Native hashes won't be broken, thankfully.
--------
Did the temporary ugliness pan out? Of the packages that currently build in
`release-cross.nix`, the only ones that have their hash changed are
`*.gcc.crossDrv` and `bootstrapTools.*.coreutilsMinimal`. In both cases I
think it doesn't matter.
1. GCC when doing a `build = host = target = foreign` build (maximally
cross), still defines environment variables like `CPATH`[1] with
packages. This seems assuredly wrong because whether gcc dynamically
links those, or the programs built by gcc dynamically link those---I
have no idea which case is reality---they should be foreign. Therefore,
in all likelihood, I just made the gcc less broken.
2. Coreutils (ab)used the old cross-compiling infrastructure to depend on
a native version of itself. When coreutils was overwritten to be built
with fewer features, the native version it used would also be
overwritten because the binding was tight. Now it uses the much looser
`BuildPackages.coreutils` which is just fine as a richer build dep
doesn't cause any problems and avoids a rebuild.
So, in conclusion I'd say the conservatism payed off. Onward to actually
raking the muck in the next PR!
[1]: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
2016-12-18 07:51:18 +00:00
|
|
|
==
|
2018-09-06 19:28:44 +01:00
|
|
|
f (["buildPackages"] ++ path) crossSystem system
|
2017-02-09 21:09:47 +00:00
|
|
|
);
|
2016-12-25 18:50:53 +00:00
|
|
|
|
2018-03-20 01:29:48 +00:00
|
|
|
testEqual = path: systems: forMatchingSystems systems (testEqualOne path);
|
2016-12-25 18:50:53 +00:00
|
|
|
|
|
|
|
mapTestEqual = lib.mapAttrsRecursive testEqual;
|
|
|
|
|
|
|
|
in mapTestEqual {
|
|
|
|
boehmgc = nativePlatforms;
|
|
|
|
libffi = nativePlatforms;
|
|
|
|
libiconv = nativePlatforms;
|
|
|
|
libtool = nativePlatforms;
|
|
|
|
zlib = nativePlatforms;
|
|
|
|
readline = nativePlatforms;
|
|
|
|
libxml2 = nativePlatforms;
|
|
|
|
guile = nativePlatforms;
|
|
|
|
};
|
|
|
|
|
2017-05-23 23:04:15 +01:00
|
|
|
crossIphone64 = mapTestOnCross lib.systems.examples.iphone64 darwinCommon;
|
2017-02-07 17:25:01 +00:00
|
|
|
|
2017-05-23 23:04:15 +01:00
|
|
|
crossIphone32 = mapTestOnCross lib.systems.examples.iphone32 darwinCommon;
|
2016-12-25 18:50:53 +00:00
|
|
|
|
2016-12-25 16:11:12 +00:00
|
|
|
/* Test some cross builds to the Sheevaplug */
|
2017-05-23 23:04:15 +01:00
|
|
|
crossSheevaplugLinux = mapTestOnCross lib.systems.examples.sheevaplug (linuxCommon // {
|
2016-12-26 22:42:48 +00:00
|
|
|
ubootSheevaplug = nativePlatforms;
|
2016-12-25 16:11:12 +00:00
|
|
|
});
|
2010-03-09 14:14:30 +00:00
|
|
|
|
2016-12-25 16:11:12 +00:00
|
|
|
/* Test some cross builds on 32 bit mingw-w64 */
|
2017-05-23 23:04:15 +01:00
|
|
|
crossMingw32 = mapTestOnCross lib.systems.examples.mingw32 windowsCommon;
|
2016-12-25 16:11:12 +00:00
|
|
|
|
|
|
|
/* Test some cross builds on 64 bit mingw-w64 */
|
2017-05-23 23:04:15 +01:00
|
|
|
crossMingwW64 = mapTestOnCross lib.systems.examples.mingwW64 windowsCommon;
|
2010-09-02 19:41:48 +01:00
|
|
|
|
2021-11-27 15:35:55 +00:00
|
|
|
/* Linux on mipsel */
|
2017-05-23 23:04:15 +01:00
|
|
|
fuloongminipc = mapTestOnCross lib.systems.examples.fuloongminipc linuxCommon;
|
2021-11-27 15:35:55 +00:00
|
|
|
ben-nanonote = mapTestOnCross lib.systems.examples.ben-nanonote linuxCommon;
|
2016-12-25 16:11:12 +00:00
|
|
|
|
2019-12-24 22:54:04 +00:00
|
|
|
/* Javacript */
|
|
|
|
ghcjs = mapTestOnCross lib.systems.examples.ghcjs {
|
|
|
|
haskell.packages.ghcjs.hello = nativePlatforms;
|
|
|
|
};
|
|
|
|
|
2016-12-25 16:11:12 +00:00
|
|
|
/* Linux on Raspberrypi */
|
2018-02-22 14:33:27 +00:00
|
|
|
rpi = mapTestOnCross lib.systems.examples.raspberryPi rpiCommon;
|
|
|
|
rpi-musl = mapTestOnCross lib.systems.examples.muslpi rpiCommon;
|
2016-07-17 22:04:51 +01:00
|
|
|
|
2021-11-27 15:35:55 +00:00
|
|
|
/* Linux on the Remarkable */
|
|
|
|
remarkable1 = mapTestOnCross lib.systems.examples.remarkable1 linuxCommon;
|
|
|
|
remarkable2 = mapTestOnCross lib.systems.examples.remarkable2 linuxCommon;
|
|
|
|
|
|
|
|
/* Linux on armv7l-hf */
|
|
|
|
armv7l-hf = mapTestOnCross lib.systems.examples.armv7l-hf-multiplatform linuxCommon;
|
|
|
|
scaleway-c1 = mapTestOnCross lib.systems.examples.scaleway-c1 linuxCommon;
|
|
|
|
|
|
|
|
pogoplug4 = mapTestOnCross lib.systems.examples.pogoplug4 linuxCommon;
|
|
|
|
|
|
|
|
/* Linux on aarch64 */
|
|
|
|
aarch64 = mapTestOnCross lib.systems.examples.aarch64-multiplatform linuxCommon;
|
2018-02-22 14:33:27 +00:00
|
|
|
aarch64-musl = mapTestOnCross lib.systems.examples.aarch64-multiplatform-musl linuxCommon;
|
2016-12-25 16:11:12 +00:00
|
|
|
|
2021-11-27 15:35:55 +00:00
|
|
|
/* Linux on RISCV */
|
|
|
|
riscv64 = mapTestOnCross lib.systems.examples.riscv64 linuxCommon;
|
|
|
|
riscv32 = mapTestOnCross lib.systems.examples.riscv32 linuxCommon;
|
|
|
|
|
|
|
|
m68k = mapTestOnCross lib.systems.examples.m68k linuxCommon;
|
|
|
|
s390x = mapTestOnCross lib.systems.examples.s390x linuxCommon;
|
|
|
|
|
|
|
|
/* (Cross-compiled) Linux on x86 */
|
2018-01-15 17:20:33 +00:00
|
|
|
x86_64-musl = mapTestOnCross lib.systems.examples.musl64 linuxCommon;
|
2021-11-27 15:35:55 +00:00
|
|
|
x86_64-gnu = mapTestOnCross lib.systems.examples.gnu64 linuxCommon;
|
|
|
|
i686-musl = mapTestOnCross lib.systems.examples.musl32 linuxCommon;
|
|
|
|
i686-gnu = mapTestOnCross lib.systems.examples.gnu32 linuxCommon;
|
2018-01-04 00:17:52 +00:00
|
|
|
|
2021-01-29 03:20:19 +00:00
|
|
|
ppc64le = mapTestOnCross lib.systems.examples.powernv linuxCommon;
|
|
|
|
ppc64le-musl = mapTestOnCross lib.systems.examples.musl-power linuxCommon;
|
|
|
|
|
2019-10-01 18:05:10 +01:00
|
|
|
android64 = mapTestOnCross lib.systems.examples.aarch64-android-prebuilt linuxCommon;
|
|
|
|
android32 = mapTestOnCross lib.systems.examples.armv7a-android-prebuilt linuxCommon;
|
2017-02-17 05:36:10 +00:00
|
|
|
|
2019-04-24 02:51:30 +01:00
|
|
|
wasi32 = mapTestOnCross lib.systems.examples.wasi32 wasiCommon;
|
|
|
|
|
2019-03-26 02:17:37 +00:00
|
|
|
msp430 = mapTestOnCross lib.systems.examples.msp430 embedded;
|
2021-11-27 15:35:55 +00:00
|
|
|
mmix = mapTestOnCross lib.systems.examples.mmix embedded;
|
|
|
|
vc4 = mapTestOnCross lib.systems.examples.vc4 embedded;
|
|
|
|
or1k = mapTestOnCross lib.systems.examples.or1k embedded;
|
2018-10-17 04:31:22 +01:00
|
|
|
avr = mapTestOnCross lib.systems.examples.avr embedded;
|
|
|
|
arm-embedded = mapTestOnCross lib.systems.examples.arm-embedded embedded;
|
2021-11-27 15:35:55 +00:00
|
|
|
armhf-embedded = mapTestOnCross lib.systems.examples.armhf-embedded embedded;
|
2018-10-17 04:31:22 +01:00
|
|
|
aarch64-embedded = mapTestOnCross lib.systems.examples.aarch64-embedded embedded;
|
2021-11-27 15:35:55 +00:00
|
|
|
aarch64be-embedded = mapTestOnCross lib.systems.examples.aarch64be-embedded embedded;
|
|
|
|
powerpc-embedded = mapTestOnCross lib.systems.examples.ppc-embedded embedded;
|
|
|
|
powerpcle-embedded = mapTestOnCross lib.systems.examples.ppcle-embedded embedded;
|
2018-10-30 18:46:01 +00:00
|
|
|
i686-embedded = mapTestOnCross lib.systems.examples.i686-embedded embedded;
|
|
|
|
x86_64-embedded = mapTestOnCross lib.systems.examples.x86_64-embedded embedded;
|
2021-11-27 15:35:55 +00:00
|
|
|
riscv64-embedded = mapTestOnCross lib.systems.examples.riscv64 embedded;
|
|
|
|
riscv32-embedded = mapTestOnCross lib.systems.examples.riscv32 embedded;
|
2018-10-17 04:31:22 +01:00
|
|
|
|
2021-12-02 10:22:44 +00:00
|
|
|
x86_64-netbsd = mapTestOnCross lib.systems.examples.x86_64-netbsd common;
|
2021-09-20 15:18:44 +01:00
|
|
|
|
2020-07-26 12:46:22 +01:00
|
|
|
# we test `embedded` instead of `linuxCommon` because very few packages
|
|
|
|
# successfully cross-compile to Redox so far
|
|
|
|
x86_64-redox = mapTestOnCross lib.systems.examples.x86_64-unknown-redox embedded;
|
|
|
|
|
2016-12-25 16:11:12 +00:00
|
|
|
/* Cross-built bootstrap tools for every supported platform */
|
|
|
|
bootstrapTools = let
|
|
|
|
tools = import ../stdenv/linux/make-bootstrap-tools-cross.nix { system = "x86_64-linux"; };
|
2017-01-15 19:06:35 +00:00
|
|
|
maintainers = [ lib.maintainers.dezgeg ];
|
2017-06-26 21:56:03 +01:00
|
|
|
mkBootstrapToolsJob = drv:
|
2018-11-01 20:47:42 +00:00
|
|
|
assert lib.elem drv.system supportedSystems;
|
2017-06-26 21:56:03 +01:00
|
|
|
hydraJob' (lib.addMetaAttrs { inherit maintainers; } drv);
|
2017-01-15 19:06:35 +00:00
|
|
|
in lib.mapAttrsRecursiveCond (as: !lib.isDerivation as) (name: mkBootstrapToolsJob) tools;
|
2016-12-25 16:11:12 +00:00
|
|
|
}
|