Import source to librtti

Summary:

- Import initial source

Test Plan:
NA
This commit is contained in:
Rongsong Shen 2026-01-29 17:22:53 +08:00
commit c8c1749347
23 changed files with 969 additions and 0 deletions

20
nixSupport/default.nix Normal file
View 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;
}