Use jemalloc/hmalloc for cross builds

Signed-off-by: morguldir <morguldir@protonmail.com>
This commit is contained in:
morguldir 2024-04-20 04:18:23 +02:00 committed by June
parent 056c9d6920
commit 6c0d527b90

View file

@ -394,7 +394,7 @@
name = "oci-image-${crossSystem}-jemalloc"; name = "oci-image-${crossSystem}-jemalloc";
value = mkOciImage value = mkOciImage
pkgsCrossStatic pkgsCrossStatic
self.packages.${system}.${binaryName}; self.packages.${system}."${binaryName}-jemalloc";
} }
# An output for an OCI image based on that binary with hardened_malloc # An output for an OCI image based on that binary with hardened_malloc
@ -402,7 +402,7 @@
name = "oci-image-${crossSystem}-hmalloc"; name = "oci-image-${crossSystem}-hmalloc";
value = mkOciImage value = mkOciImage
pkgsCrossStatic pkgsCrossStatic
self.packages.${system}.${binaryName}; self.packages.${system}."${binaryName}-hmalloc";
} }
] ]
) )