0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00
construct/modules/llvm.cc
2020-02-18 16:06:21 -08:00

64 lines
1.1 KiB
C++

// The Construct
//
// Copyright (C) The Construct Developers
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#include <llvm/Config/llvm-config.h>
#include <llvm/Object/Wasm.h>
namespace ircd::llvm
{
extern log::log log;
extern info::versions version_api, version_abi;
static void init(), fini();
}
ircd::mapi::header
IRCD_MODULE
{
"LLVM Compiler Infrastructure",
ircd::llvm::init,
ircd::llvm::fini,
};
decltype(ircd::llvm::version_api)
ircd::llvm::version_api
{
"llvm", info::versions::API, 0,
{
LLVM_VERSION_MAJOR,
LLVM_VERSION_MINOR,
LLVM_VERSION_PATCH,
},
LLVM_VERSION_STRING,
};
decltype(ircd::llvm::version_abi)
ircd::llvm::version_abi
{
"llvm", info::versions::ABI, 0
};
decltype(ircd::llvm::log)
ircd::llvm::log
{
"llvm"
};
void
ircd::llvm::init()
{
}
void
ircd::llvm::fini()
{
}