emscriptenfastcomp: move wrap magic to own file, use newScope
This commit is contained in:
parent
1b1fc65505
commit
8550e4e520
@ -1,54 +1,22 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, python, ... }:
|
{ newScope, stdenv, wrapCC, wrapCCWith, symlinkJoin }:
|
||||||
|
|
||||||
let
|
let
|
||||||
rev = "1.37.16";
|
callPackage = newScope (self // {inherit stdenv;});
|
||||||
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "emscripten-fastcomp-${rev}";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
self = {
|
||||||
owner = "kripken";
|
emscriptenfastcomp-unwrapped = callPackage ./emscripten-fastcomp.nix {};
|
||||||
repo = "emscripten-fastcomp";
|
emscriptenfastcomp-wrapped = wrapCCWith stdenv.cc.libc ''
|
||||||
sha256 = "0wj9sc0gciaiidcjv6wb0qn6ks06xds7q34351masc7qpvd217by";
|
# hardening flags break WASM support
|
||||||
inherit rev;
|
cat > $out/nix-support/add-hardening.sh
|
||||||
|
'' self.emscriptenfastcomp-unwrapped;
|
||||||
|
emscriptenfastcomp = symlinkJoin {
|
||||||
|
name = "emscriptenfastcomp";
|
||||||
|
paths = [ self.emscriptenfastcomp-wrapped self.emscriptenfastcomp-unwrapped ];
|
||||||
|
preferLocalBuild = false;
|
||||||
|
allowSubstitutes = true;
|
||||||
|
postBuild = ''
|
||||||
|
# replace unwrapped clang-3.9 binary by wrapper
|
||||||
|
ln -sf $out/bin/clang $out/bin/clang-[0-9]*
|
||||||
|
'';
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
in self
|
||||||
srcFL = fetchFromGitHub {
|
|
||||||
owner = "kripken";
|
|
||||||
repo = "emscripten-fastcomp-clang";
|
|
||||||
sha256 = "1akdgxzxhzjbhp4d14ajcrp9jrf39x004a726ly2gynqc185l4j7";
|
|
||||||
inherit rev;
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake python ];
|
|
||||||
preConfigure = ''
|
|
||||||
cp -Lr ${srcFL} tools/clang
|
|
||||||
chmod +w -R tools/clang
|
|
||||||
'';
|
|
||||||
cmakeFlags = [
|
|
||||||
"-DCMAKE_BUILD_TYPE=Release"
|
|
||||||
"-DLLVM_TARGETS_TO_BUILD='X86;JSBackend'"
|
|
||||||
"-DLLVM_INCLUDE_EXAMPLES=OFF"
|
|
||||||
"-DLLVM_INCLUDE_TESTS=OFF"
|
|
||||||
# "-DCLANG_INCLUDE_EXAMPLES=OFF"
|
|
||||||
"-DCLANG_INCLUDE_TESTS=OFF"
|
|
||||||
] ++ (stdenv.lib.optional stdenv.isLinux
|
|
||||||
# necessary for clang to find crtend.o
|
|
||||||
"-DGCC_INSTALL_PREFIX=${gcc}"
|
|
||||||
);
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
passthru = {
|
|
||||||
isClang = true;
|
|
||||||
inherit gcc;
|
|
||||||
};
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
homepage = https://github.com/kripken/emscripten-fastcomp;
|
|
||||||
description = "Emscripten LLVM";
|
|
||||||
platforms = platforms.all;
|
|
||||||
maintainers = with maintainers; [ qknight matthewbauer ];
|
|
||||||
license = stdenv.lib.licenses.ncsa;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
@ -0,0 +1,54 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, python, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
rev = "1.37.16";
|
||||||
|
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "emscripten-fastcomp-${rev}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kripken";
|
||||||
|
repo = "emscripten-fastcomp";
|
||||||
|
sha256 = "0wj9sc0gciaiidcjv6wb0qn6ks06xds7q34351masc7qpvd217by";
|
||||||
|
inherit rev;
|
||||||
|
};
|
||||||
|
|
||||||
|
srcFL = fetchFromGitHub {
|
||||||
|
owner = "kripken";
|
||||||
|
repo = "emscripten-fastcomp-clang";
|
||||||
|
sha256 = "1akdgxzxhzjbhp4d14ajcrp9jrf39x004a726ly2gynqc185l4j7";
|
||||||
|
inherit rev;
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake python ];
|
||||||
|
preConfigure = ''
|
||||||
|
cp -Lr ${srcFL} tools/clang
|
||||||
|
chmod +w -R tools/clang
|
||||||
|
'';
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DCMAKE_BUILD_TYPE=Release"
|
||||||
|
"-DLLVM_TARGETS_TO_BUILD='X86;JSBackend'"
|
||||||
|
"-DLLVM_INCLUDE_EXAMPLES=OFF"
|
||||||
|
"-DLLVM_INCLUDE_TESTS=OFF"
|
||||||
|
# "-DCLANG_INCLUDE_EXAMPLES=OFF"
|
||||||
|
"-DCLANG_INCLUDE_TESTS=OFF"
|
||||||
|
] ++ (stdenv.lib.optional stdenv.isLinux
|
||||||
|
# necessary for clang to find crtend.o
|
||||||
|
"-DGCC_INSTALL_PREFIX=${gcc}"
|
||||||
|
);
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
passthru = {
|
||||||
|
isClang = true;
|
||||||
|
inherit gcc;
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/kripken/emscripten-fastcomp;
|
||||||
|
description = "Emscripten LLVM";
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ qknight matthewbauer ];
|
||||||
|
license = stdenv.lib.licenses.ncsa;
|
||||||
|
};
|
||||||
|
}
|
@ -1816,21 +1816,9 @@ with pkgs;
|
|||||||
|
|
||||||
emscripten = callPackage ../development/compilers/emscripten { };
|
emscripten = callPackage ../development/compilers/emscripten { };
|
||||||
|
|
||||||
emscriptenfastcomp-unwrapped = callPackage ../development/compilers/emscripten-fastcomp { };
|
emscriptenfastcompPackages = callPackage ../development/compilers/emscripten-fastcomp { };
|
||||||
emscriptenfastcomp-wrapped = wrapCCWith stdenv.cc.libc ''
|
|
||||||
# hardening flags break WASM support
|
emscriptenfastcomp = emscriptenfastcompPackages.emscriptenfastcomp;
|
||||||
cat > $out/nix-support/add-hardening.sh
|
|
||||||
'' emscriptenfastcomp-unwrapped;
|
|
||||||
emscriptenfastcomp = symlinkJoin {
|
|
||||||
name = "emscriptenfastcomp";
|
|
||||||
paths = [ emscriptenfastcomp-wrapped emscriptenfastcomp-unwrapped ];
|
|
||||||
preferLocalBuild = false;
|
|
||||||
allowSubstitutes = true;
|
|
||||||
postBuild = ''
|
|
||||||
# replace unwrapped clang-3.9 binary by wrapper
|
|
||||||
ln -sf $out/bin/clang $out/bin/clang-[0-9]*
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
emscriptenPackages = recurseIntoAttrs (callPackage ./emscripten-packages.nix { });
|
emscriptenPackages = recurseIntoAttrs (callPackage ./emscripten-packages.nix { });
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user