msys/mingw32 llvm-gcc build errors

Thank you

  1. As for error - try to disable threads during llvm/llvm-gcc builds.

This resolved the build errors for llvm-gcc, however the llvm-gcc.exe, llvm-g++.exe, llvm-gcov.exe were not built only the llc.exe, llvm-as.exe … tools from the llvm build bin directory are in the llvm-gcc install bin directory.

  1. Why do you need build llvm-gcc by yourself?

I would like to write an llvm backend and I wasn’t sure if it would work with the pre-built binaries.

-Charles

Hello, Charles

2. As for error - try to disable threads during llvm/llvm-gcc builds.

This resolved the build errors for llvm-gcc, however the llvm-gcc.exe,
llvm-g++.exe, llvm-gcov.exe were not built only the llc.exe, llvm-as.exe ...
tools from the llvm build bin directory are in the llvm-gcc install bin
directory.

Then something is completely broken on your side (misconfiguration?)

I would like to write an llvm backend and I wasn't sure if it would work
with the pre-built binaries.

You don't need llvm-gcc for working on new backend. The generated IR
from C source is not target-neutral.

Thank you again, I will abandon my efforts to build llvm-gcc on mingw and start working on the backend.

-Charles