I am trying to compile a very simple Hello World C-program to MIPS assembly on a winx64 machine using llvm/clang.
I have searched for this issue and whilst there are a number of threads with similar topics they almost exclusively use linux and more often than not do not provide any form of solution.
I was under the impression that if I get the latest LLVM binaries and install that on my windows machine I would be able to cross compile say C to MIPS assembly right out of the box. Is that not the case or am I missing something?
If I target anything besides windows I get an error for the missing header file stdio.h Isn´t the thing designed to do exactly that? Convert my C code into the given target asm?
Also there seems no Config.h on windows like there is on linux to change certain hardcoded paths.
Maybe I am totally misunderstanding something about llvm/clang. Hope anyone can help point me in a direction to solve this.
Thanks