目前我正在使用distutils进行构建和ctypes接口,但我碰到了这个,看起来很不错
import ROOT
cppFunctionCode = '''
void f() {
std::cout << "Hi jitted C. world!" « std::endl;
}'''
ROOT.gInterpreter.Declare(cppFunctionCode)
ROOT.f() # Hello!
https://root.cern.ch/code-snippet/interpreted-cpp-python
问题在于ROOT是一个非常大的框架,拥有一个只能处理C ++ JIT而不是其他工具的工具会很好。
有人知道python中是否有一个简单的C ++ JIT库吗?
由于