Closed Curculigo closed 3 months ago
where did you get the compiler and linker please ?
where did you get the compiler and linker please ?
I think llvm-mingw is a fairly well known project that Google search will bring you immediately to the repository?
ok, so set the compiler and linker with env.CC and env.LD like that muon setup -Denv.CC= -Denv.LD= builddir
you can do the same with CC and LD environment variables
I use the same toolchains with MSYS2, easy to install. And they are supported, as I've tested them.
your problem is that muon is selecting by default some compilers/linkers. In you case, muon uses ld
by default, which is a UNIX linker, not a Windows one.
muon setup -Denv.CC=clang -Denv.LD=ld.lld build
worked. Thank you.
Bootstrap is fine. But
muon setup
failed.