bscpkgs/test/compilers/clang-ompss2.nix

21 lines
359 B
Nix
Raw Normal View History

2020-06-17 19:00:49 +08:00
{stdenv, clang-ompss2, nanos6}:
stdenv.mkDerivation rec {
version = "0.0.1";
name = "test-clang-ompss2";
src = ./.;
buildInputs = [ clang-ompss2 nanos6 ];
buildPhase = ''
2020-06-26 03:02:49 +08:00
#export NIX_DEBUG=6
2020-06-17 19:00:49 +08:00
clang -fompss-2 hello.c -o hello
./hello
clang -fompss-2 hello.cc -o hello
./hello
'';
installPhase = ''
mkdir -p $out
'';
}