Hello I am trying to use llvm to see if i can compile the following C code to MSIL/CIL but I cant seem to find any instructions on how to select the backend i want to output to. Some direction on this would be much appreciated.
#include <stdio.h>
int main() {
printf(“hello world\n”);
return 0;
}
Thanks
Kevin