My cpp code:
int main(int argc, char** argv) {}
I use the following command to compile and link it:
// I want to read the result ir
clang -S -emit-llvm main.cpp
// I want to compile directly from ir
llc -filetype=obj main.ll
lld -flavor link main.obj // <root>: undefined symbol: mainCRTStartup Link failed
Did I miss something?