mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 03:15:56 +03:00
wasilibc: 20190712 -> unstable-2021-09-23
This commit is contained in:
parent
5cd57cc7c0
commit
47ca51cba9
@ -1,14 +1,27 @@
|
||||
{ stdenv, fetchFromGitHub, lib }:
|
||||
{ stdenv, buildPackages, fetchFromGitHub, lib }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "wasilibc";
|
||||
version = "20190712";
|
||||
src = fetchFromGitHub {
|
||||
owner = "CraneStation";
|
||||
version = "unstable-2021-09-23";
|
||||
|
||||
src = buildPackages.fetchFromGitHub {
|
||||
owner = "WebAssembly";
|
||||
repo = "wasi-libc";
|
||||
rev = "8df0d4cd6a559b58d4a34b738a5a766b567448cf";
|
||||
sha256 = "1n4gvgzacpagar2mx8g9950q0brnhwz7jg2q44sa5mnjmlnkiqhh";
|
||||
rev = "ad5133410f66b93a2381db5b542aad5e0964db96";
|
||||
hash = "sha256-RiIClVXrb18jF9qCt+5iALHPCZKYcnad7JsILHBV0pA=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
# clang-13: error: argument unused during compilation: '-rtlib=compiler-rt' [-Werror,-Wunused-command-line-argument]
|
||||
postPatch = ''
|
||||
substituteInPlace Makefile \
|
||||
--replace "-Werror" ""
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
export NIX_CFLAGS_COMPILE="-I$(pwd)/sysroot/include $NIX_CFLAGS_COMPILE"
|
||||
'';
|
||||
|
||||
makeFlags = [
|
||||
"WASM_CC=${stdenv.cc.targetPrefix}cc"
|
||||
"WASM_NM=${stdenv.cc.targetPrefix}nm"
|
||||
@ -16,6 +29,8 @@ stdenv.mkDerivation {
|
||||
"INSTALL_DIR=${placeholder "out"}"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postInstall = ''
|
||||
mv $out/lib/*/* $out/lib
|
||||
ln -s $out/share/wasm32-wasi/undefined-symbols.txt $out/lib/wasi.imports
|
||||
@ -25,7 +40,7 @@ stdenv.mkDerivation {
|
||||
description = "WASI libc implementation for WebAssembly";
|
||||
homepage = "https://wasi.dev";
|
||||
platforms = platforms.wasi;
|
||||
maintainers = [ maintainers.matthewbauer ];
|
||||
maintainers = with maintainers; [ matthewbauer ];
|
||||
license = with licenses; [ asl20 mit llvm-exception ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user