nixpkgs/pkgs/development/compilers/emscripten/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

137 lines
4.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python3, nodejs, closurecompiler
2020-08-28 18:19:50 +00:00
, jre, binaryen
2021-08-07 07:45:26 +00:00
, llvmPackages
2023-06-02 16:28:40 +00:00
, symlinkJoin, makeWrapper, substituteAll
2022-12-14 02:24:38 +00:00
, buildNpmPackage
, emscripten
}:
2020-08-28 18:19:50 +00:00
stdenv.mkDerivation rec {
pname = "emscripten";
2023-06-28 19:40:17 +00:00
version = "3.1.42";
2020-08-28 18:19:50 +00:00
llvmEnv = symlinkJoin {
name = "emscripten-llvm-${version}";
2021-08-07 07:45:26 +00:00
paths = with llvmPackages; [ clang-unwrapped clang-unwrapped.lib lld llvm ];
2020-08-28 18:19:50 +00:00
};
2022-12-14 02:24:38 +00:00
nodeModules = buildNpmPackage {
name = "emscripten-node-modules-${version}";
2022-12-14 02:24:38 +00:00
inherit pname version src;
2023-06-02 16:28:40 +00:00
npmDepsHash = "sha256-QlKm6UvPUa7+VJ9ZvXdxYZzK+U96Ju/oAHPhZ/hyv/I=";
2022-12-14 02:24:38 +00:00
dontBuild = true;
# Copy node_modules directly.
installPhase = ''
cp -r node_modules $out/
'';
};
src = fetchFromGitHub {
2019-02-25 12:13:55 +00:00
owner = "emscripten-core";
repo = "emscripten";
2023-06-28 19:40:17 +00:00
hash = "sha256-elp/LPd9SAuVZy42Wkgb6pCbPi2GnETTfyRJqU92S0E=";
2020-08-28 18:19:50 +00:00
rev = version;
};
2020-08-28 18:19:50 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ nodejs python3 ];
2021-08-07 07:45:26 +00:00
patches = [
(substituteAll {
src = ./0001-emulate-clang-sysroot-include-logic.patch;
2023-06-02 16:28:40 +00:00
resourceDir = "${llvmEnv}/lib/clang/16/";
})
2021-08-07 07:45:26 +00:00
];
2020-08-28 18:19:50 +00:00
buildPhase = ''
2021-08-07 07:45:26 +00:00
runHook preBuild
2020-08-28 18:19:50 +00:00
patchShebangs .
2020-08-29 10:51:38 +00:00
# fixes cmake support
2020-08-28 18:19:50 +00:00
sed -i -e "s/print \('emcc (Emscript.*\)/sys.stderr.write(\1); sys.stderr.flush()/g" emcc.py
2020-08-29 10:51:38 +00:00
# disables cache in user home, use installation directory instead
2021-08-07 07:45:26 +00:00
sed -i '/^def/!s/root_is_writable()/True/' tools/config.py
2020-08-29 10:51:38 +00:00
sed -i "/^def check_sanity/a\\ return" tools/shared.py
echo "EMSCRIPTEN_ROOT = '$out/share/emscripten'" > .emscripten
2020-08-28 18:19:50 +00:00
echo "LLVM_ROOT = '${llvmEnv}/bin'" >> .emscripten
echo "NODE_JS = '${nodejs}/bin/node'" >> .emscripten
echo "JS_ENGINES = [NODE_JS]" >> .emscripten
2020-08-29 10:51:38 +00:00
echo "CLOSURE_COMPILER = ['${closurecompiler}/bin/closure-compiler']" >> .emscripten
2020-08-28 18:19:50 +00:00
echo "JAVA = '${jre}/bin/java'" >> .emscripten
# to make the test(s) below work
2020-08-29 10:51:38 +00:00
# echo "SPIDERMONKEY_ENGINE = []" >> .emscripten
2020-08-28 18:19:50 +00:00
echo "BINARYEN_ROOT = '${binaryen}'" >> .emscripten
# make emconfigure/emcmake use the correct (wrapped) binaries
sed -i "s|^EMCC =.*|EMCC='$out/bin/emcc'|" tools/shared.py
sed -i "s|^EMXX =.*|EMXX='$out/bin/em++'|" tools/shared.py
sed -i "s|^EMAR =.*|EMAR='$out/bin/emar'|" tools/shared.py
sed -i "s|^EMRANLIB =.*|EMRANLIB='$out/bin/emranlib'|" tools/shared.py
2021-08-07 07:45:26 +00:00
runHook postBuild
2020-08-28 18:19:50 +00:00
'';
installPhase = ''
2021-08-07 07:45:26 +00:00
runHook preInstall
appdir=$out/share/emscripten
mkdir -p $appdir
2020-08-28 18:19:50 +00:00
cp -r . $appdir
chmod -R +w $appdir
mkdir -p $out/bin
2021-08-07 07:45:26 +00:00
for b in em++ em-config emar embuilder.py emcc emcmake emconfigure emmake emranlib emrun emscons emsize; do
2020-08-28 18:19:50 +00:00
makeWrapper $appdir/$b $out/bin/$b \
2022-12-14 02:24:38 +00:00
--set NODE_PATH ${nodeModules} \
2020-08-29 10:51:38 +00:00
--set EM_EXCLUSIVE_CACHE_ACCESS 1 \
2020-08-28 18:19:50 +00:00
--set PYTHON ${python3}/bin/python
done
# precompile libc (etc.) in all variants:
pushd $TMPDIR
2023-06-02 16:28:40 +00:00
echo 'int __main_argc_argv( int a, int b ) { return 42; }' >test.c
for LTO in -flto ""; do
for BIND in "" "--bind"; do
2023-06-02 16:28:40 +00:00
# starting with emscripten 3.1.32+,
# if pthreads and relocatable are both used,
# _emscripten_thread_exit_joinable must be exported
# (see https://github.com/emscripten-core/emscripten/pull/18376)
# TODO: get library cache to build with both enabled and function exported
$out/bin/emcc $LTO $BIND test.c
$out/bin/emcc $LTO $BIND -s RELOCATABLE test.c
$out/bin/emcc $LTO $BIND -s USE_PTHREADS test.c
done
done
popd
2020-08-28 18:19:50 +00:00
export PYTHON=${python3}/bin/python
2022-12-14 02:24:38 +00:00
export NODE_PATH=${nodeModules}
2020-08-29 10:51:38 +00:00
pushd $appdir
2022-12-14 02:24:38 +00:00
python test/runner.py test_hello_world
2020-08-29 10:51:38 +00:00
popd
2021-08-07 07:45:26 +00:00
runHook postInstall
'';
passthru = {
# HACK: Make emscripten look more like a cc-wrapper to GHC
# when building the javascript backend.
targetPrefix = "em";
bintools = emscripten;
};
meta = with lib; {
homepage = "https://github.com/emscripten-core/emscripten";
description = "An LLVM-to-JavaScript Compiler";
platforms = platforms.all;
maintainers = with maintainers; [ qknight matthewbauer raitobezarius ];
license = licenses.ncsa;
};
}