Working stdenv with clang+ompss2

This commit is contained in:
Rodrigo Arias
2020-06-17 13:00:49 +02:00
parent a8523c4b4e
commit 19e4e12126
7 changed files with 178 additions and 85 deletions

View File

@@ -0,0 +1,20 @@
{stdenv, clang-ompss2, nanos6}:
stdenv.mkDerivation rec {
version = "0.0.1";
name = "test-clang-ompss2";
src = ./.;
buildInputs = [ clang-ompss2 nanos6 ];
buildPhase = ''
export NIX_DEBUG=6
clang -fompss-2 hello.c -o hello
./hello
clang -fompss-2 hello.cc -o hello
./hello
'';
installPhase = ''
mkdir -p $out
'';
}

7
test/compilers/hello.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}

7
test/compilers/hello.cc Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello world!\n");
return 0;
}