File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 585
585
then "arm"
586
586
else if hostPlatform . isAarch64
587
587
then "aarch64"
588
+ else if hostPlatform . isi686
589
+ then "i386"
588
590
else abort "Don't know which QEMU to use for hostPlatform ${ hostPlatform . config } . Please provide qemuSuffix" ;
589
591
590
592
# How to run ldd when checking for static linking
Original file line number Diff line number Diff line change 31
31
# of nix build envs.
32
32
33
33
# we want this to hold only for arm (32 and 64bit) for now.
34
- isLinuxCross = haskellLib . isCrossHost && hostPlatform . isLinux && ( hostPlatform . isAarch32 || hostPlatform . isAarch64 ) ;
34
+ isLinuxCross = haskellLib . isCrossHost && hostPlatform . isLinux && ( hostPlatform . isAarch32 || hostPlatform . isAarch64 || hostPlatform . isi686 ) ;
35
35
qemuIservWrapperScript = enableProfiling :
36
36
let
37
37
interpreter =
You can’t perform that action at this time.
0 commit comments