bscpkgs/bsc/llvm-ompss2/clang.nix

88 lines
2.0 KiB
Nix
Raw Normal View History

2020-06-17 13:00:49 +02:00
{
stdenv
2020-11-19 18:50:30 +01:00
, fetchFromGitHub
2020-06-17 13:00:49 +02:00
, cmake
, lld
, bash
, python3
, perl
, which
, elfutils
2020-06-17 13:00:49 +02:00
, libffi
, pkg-config
2020-11-19 18:50:30 +01:00
, enableDebug ? false
2020-06-17 13:00:49 +02:00
}:
stdenv.mkDerivation rec {
2023-03-02 18:33:46 +01:00
version = "2022.11";
2020-06-17 13:00:49 +02:00
pname = "clang-ompss2";
2020-11-19 18:50:30 +01:00
src = fetchFromGitHub {
owner = "bsc-pm";
repo = "llvm";
rev = "refs/tags/github-release-${version}";
2023-03-02 18:33:46 +01:00
sha256 = "i1+ewQ3Xe+27I/s294TGaEQC1McjMtywZ7vO64eGnus=";
2020-11-19 18:50:30 +01:00
};
2020-06-17 13:00:49 +02:00
enableParallelBuilding = true;
2020-07-21 16:31:31 +02:00
isClang = true;
2020-06-17 13:00:49 +02:00
passthru = {
CC = "clang";
CXX = "clang++";
};
2020-06-17 13:00:49 +02:00
isClangWithOmpss = true;
buildInputs = [
which
bash
python3
perl
cmake
lld
elfutils
2020-06-17 13:00:49 +02:00
libffi
pkg-config
];
2020-11-19 18:50:30 +01:00
# Error with -D_FORTIFY_SOURCE=2, see https://bugs.gentoo.org/636604:
# /build/source/compiler-rt/lib/tsan/dd/dd_interceptors.cpp:225:20:
# error: redefinition of 'realpath'
# Requires disabling the "fortify" set of flags, however, for performance we
# disable all:
hardeningDisable = [ "all" ];
2020-06-17 13:00:49 +02:00
cmakeBuildType = if enableDebug then "Debug" else "Release";
dontUseCmakeBuildDir = true;
2020-07-06 11:15:55 +02:00
enableAssertions = if enableDebug then "ON" else "OFF";
2020-06-17 13:00:49 +02:00
preConfigure = ''
mkdir -p build
cd build
cmakeDir="../llvm"
cmakeFlagsArray=(
"-DLLVM_ENABLE_LLD=ON"
"-DCMAKE_CXX_FLAGS_DEBUG=-g -ggnu-pubnames"
"-DCMAKE_EXE_LINKER_FLAGS_DEBUG=-Wl,-gdb-index"
"-DLLVM_LIT_ARGS=-sv --xunit-xml-output=xunit.xml"
2022-11-09 23:39:57 +01:00
"-DLLVM_ENABLE_PROJECTS=clang;openmp;compiler-rt;flang"
2020-07-03 18:34:57 +02:00
"-DLLVM_ENABLE_ASSERTIONS=${enableAssertions}"
2020-06-17 13:00:49 +02:00
"-DLLVM_INSTALL_TOOLCHAIN_ONLY=ON"
"-DCMAKE_INSTALL_BINDIR=bin"
2020-06-17 13:00:49 +02:00
)
'';
2020-07-06 15:58:09 +02:00
# Remove support for GNU and Intel Openmp
postInstall = ''
rm $out/lib/libgomp*
rm $out/lib/libiomp*
'';
2020-06-17 13:00:49 +02:00
# About "-DCLANG_DEFAULT_NANOS6_HOME=${nanos6}", we could specify a default
# nanos6 installation, but this is would require a recompilation of clang each
# time nanos6 is changed. Better to use the environment variable NANOS6_HOME,
# and specify nanos6 at run time.
}