2023-04-11 03:11:27 +02:00
|
|
|
{ lib
|
|
|
|
, nixpkgsCompatibleLibstdcxx
|
|
|
|
, nvccCompatibleCC
|
2023-03-29 01:39:46 +02:00
|
|
|
, overrideCC
|
2023-04-11 03:11:27 +02:00
|
|
|
, stdenv
|
2023-03-29 01:39:46 +02:00
|
|
|
, wrapCCWith
|
|
|
|
}:
|
|
|
|
|
2023-04-11 03:11:27 +02:00
|
|
|
let
|
|
|
|
cc = wrapCCWith
|
|
|
|
{
|
|
|
|
cc = nvccCompatibleCC;
|
|
|
|
|
|
|
|
# This option is for clang's libcxx, but we (ab)use it for gcc's libstdc++.
|
|
|
|
# Note that libstdc++ maintains forward-compatibility: if we load a newer
|
|
|
|
# libstdc++ into the process, we can still use libraries built against an
|
|
|
|
# older libstdc++. This, in practice, means that we should use libstdc++ from
|
|
|
|
# the same stdenv that the rest of nixpkgs uses.
|
|
|
|
# We currently do not try to support anything other than gcc and linux.
|
|
|
|
libcxx = nixpkgsCompatibleLibstdcxx;
|
|
|
|
};
|
|
|
|
cudaStdenv = overrideCC stdenv cc;
|
|
|
|
passthruExtra = {
|
|
|
|
inherit nixpkgsCompatibleLibstdcxx;
|
|
|
|
# cc already exposed
|
|
|
|
};
|
|
|
|
assertCondition = true;
|
|
|
|
in
|
|
|
|
lib.extendDerivation
|
|
|
|
assertCondition
|
|
|
|
passthruExtra
|
|
|
|
cudaStdenv
|
2023-03-29 01:39:46 +02:00
|
|
|
|