mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-24 10:33:22 +03:00
nix: enable aarch64-linux platform string
This commit is contained in:
parent
efa6477445
commit
a1a2be47fe
@ -56,6 +56,9 @@ let
|
|||||||
crossSystem =
|
crossSystem =
|
||||||
if system == "x86_64-linux" && crossSystem == null && enableStatic then
|
if system == "x86_64-linux" && crossSystem == null && enableStatic then
|
||||||
"x86_64-unknown-linux-musl"
|
"x86_64-unknown-linux-musl"
|
||||||
|
else
|
||||||
|
if system == "aarch64-linux" && crossSystem == null && enableStatic then
|
||||||
|
"aarch64-unknown-linux-musl"
|
||||||
else
|
else
|
||||||
crossSystem;
|
crossSystem;
|
||||||
};
|
};
|
||||||
|
@ -25,6 +25,7 @@ let
|
|||||||
(import ./overlays/native.nix)
|
(import ./overlays/native.nix)
|
||||||
# Specific overrides guarded by the host platform.
|
# Specific overrides guarded by the host platform.
|
||||||
(import ./overlays/musl.nix)
|
(import ./overlays/musl.nix)
|
||||||
|
(import ./overlays/arm.nix)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ let
|
|||||||
|
|
||||||
in prev.lib.optionalAttrs isAarch64 {
|
in prev.lib.optionalAttrs isAarch64 {
|
||||||
libsigsegv = prev.libsigsegv.overrideAttrs (attrs: {
|
libsigsegv = prev.libsigsegv.overrideAttrs (attrs: {
|
||||||
preConfigure = (old.preConfigure or "") + ''
|
preConfigure = (prev.preConfigure or "") + ''
|
||||||
sed -i 's/^CFG_FAULT=$/CFG_FAULT=fault-linux-arm.h/' configure
|
sed -i 's/^CFG_FAULT=$/CFG_FAULT=fault-linux-arm.h/' configure
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
@ -113,8 +113,7 @@
|
|||||||
# if defined(U3_OS_linux)
|
# if defined(U3_OS_linux)
|
||||||
# ifdef __LP64__
|
# ifdef __LP64__
|
||||||
# ifdef U3_CPU_aarch64
|
# ifdef U3_CPU_aarch64
|
||||||
// XX not yet
|
# define U3_OS_ARCH "aarch64-linux"
|
||||||
//# define U3_OS_ARCH "aarch64-linux"
|
|
||||||
# else
|
# else
|
||||||
# define U3_OS_ARCH "x86_64-linux"
|
# define U3_OS_ARCH "x86_64-linux"
|
||||||
# endif
|
# endif
|
||||||
|
Loading…
Reference in New Issue
Block a user