0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 08:12:37 +01:00

modules/llvm: Add logger.

This commit is contained in:
Jason Volk 2020-02-18 16:06:21 -08:00
parent fd382d88a0
commit e17ce00f96

View file

@ -13,6 +13,7 @@
namespace ircd::llvm
{
extern log::log log;
extern info::versions version_api, version_abi;
static void init(), fini();
@ -44,6 +45,12 @@ ircd::llvm::version_abi
"llvm", info::versions::ABI, 0
};
decltype(ircd::llvm::log)
ircd::llvm::log
{
"llvm"
};
void
ircd::llvm::init()
{