我想在 llvm 的 IR 解释器中运行 RxCpp 示例lli
。
不幸的是,在 lli 中运行任何 RxCpp 示例都失败了:
git clone https://github.com/Reactive-Extensions/RxCpp.git --depth 1
cd RxCpp/Rx/v2/examples/pythogerian
clang++ -S -emit-llvm -fno-use-cxa-exit -I../../src main.cpp
lli main.ll
错误信息:
Relocation type not implemented yet!
UNREACHABLE executed at llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp:232!
问题:
这个错误到底是什么意思?- llvm 的 orc-jit 中有哪些不满足的假设?
有解决方法吗?- 我可以应用任何 LLVM-IR 转换来完成这项工作(例如,通过编译器标志)?
RxCpp 使用了哪些特殊功能导致 llvm 的 orcjit 出现此问题?
测试:
clang version 5.0.0 (https://github.com/llvm-mirror/clang.git 6c9e299494de2a5b0425e46bc937f29a05128252)
clang version 4.0.0-+rc1-1 (tags/RELEASE_400/rc1)
clang version 3.9.0-1 (tags/RELEASE_390/final)
clang version 3.8.1-12 (tags/RELEASE_381/final)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin