Import source to librtti
Summary: - Import initial source Test Plan: NA
This commit is contained in:
commit
c8c1749347
23 changed files with 969 additions and 0 deletions
20
nixSupport/default.nix
Normal file
20
nixSupport/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
librtti = pkgs.callPackage ./librtti.nix {
|
||||
inherit pkgs;
|
||||
withDebug = false;
|
||||
withAsan = false;
|
||||
};
|
||||
librtti_debug = pkgs.callPackage ./librtti.nix {
|
||||
inherit pkgs;
|
||||
withDebug = true;
|
||||
withAsan = true;
|
||||
};
|
||||
in
|
||||
{
|
||||
librtti = librtti;
|
||||
librtti_debug = librtti_debug;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue