wasm-micro-runtime
wasm-micro-runtime copied to clipboard
build_llvm.py inconsistencies on Windows
A few notes that I had while attempting to compile JIT/AoT on Windows:
- build_llvm.py creates "win32build" folder in LLVM to hold solution (even when x64), but the paths to find LLVM's cmake projects are hardcoded to look for "build".
- there's no easy way without editing the .py file to spit out an x86 version of the cmake files. Being able to pass
-A Win32
into the file would be nice. (I was testing a project that required x86 compatibility, hence why I ran into this one)