lli Questions
2
1
The following code is currently does not work in lli:
//main.cpp
extern thread_local int tls;
int main() {
tls = 42;
return 0;
}
//clang++ -S -emit-llvm main.cpp && lli main.ll
llvm-...
Prewar asked 7/2, 2017 at 16:59
1
I have been trying to build and execute LLVM modules. My code for generating the modules is quite long, so I won't post it here. Instead my question is about how Clang and LLVM work together to ach...
0
To provide TLS support to orcjit, I'm like to transforom llvm::Modules without TLS emulation to ones that emulateTLS and depend on a Runtime.
Similar functionality is already implemented in Target...
1
I would like to run RxCpp example in llvm's IR interpreter lli.
Unfortunately, running any of the RxCpp examples fails in lli:
git clone https://github.com/Reactive-Extensions/RxCpp.git --depth 1...
2
Running the following code with clang++ -S -emit-llvm main.cpp && lli main.ll on Linux(Debian)
#include <future>
int main () {
return std::async([]{return 1;}).get();
}
fails to ...
1
© 2022 - 2025 — McMap. All rights reserved.