release-cross: add wasi targets

Add a few working cross targets to make sure things keep working.
wip/yesman
Matthew Bauer 5 years ago
parent e2a1dc6a44
commit 008c9a70a5
  1. 9
      pkgs/top-level/release-cross.nix

@ -54,6 +54,13 @@ let
windows.mingw_w64_pthreads = nativePlatforms;
};
wasiCommon = {
gmp = nativePlatforms;
boehmgc = nativePlatforms;
hello = nativePlatforms;
zlib = nativePlatforms;
};
darwinCommon = {
buildPackages.binutils = darwin;
};
@ -140,6 +147,8 @@ in
android64 = mapTestOnCross lib.systems.examples.aarch64-android-prebuilt (linuxCommon // {
});
wasi32 = mapTestOnCross lib.systems.examples.wasi32 wasiCommon;
msp430 = mapTestOnCross lib.systems.examples.msp430 embedded;
avr = mapTestOnCross lib.systems.examples.avr embedded;
arm-embedded = mapTestOnCross lib.systems.examples.arm-embedded embedded;

Loading…
Cancel
Save