Skip to content

Commit

Permalink
Merge pull request #12 from bruvzg/fix_clang_mingw
Browse files Browse the repository at this point in the history
Fix LLVM/MinGW build.
  • Loading branch information
akien-mga authored Jun 19, 2024
2 parents 0af9607 + c4211d1 commit 7546e0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions godot-tools/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ def generate(env):
prefix = "i686"

if env["use_llvm"]:
env["CXX"] = prefix + "-w64-mingw32-clang"
env["CC"] = prefix + "-w64-mingw32-clang++"
env["CXX"] = prefix + "-w64-mingw32-clang++"
env["CC"] = prefix + "-w64-mingw32-clang"
env["AR"] = prefix + "-w64-mingw32-ar"
env["RANLIB"] = prefix + "-w64-mingw32-ranlib"
env["LINK"] = prefix + "-w64-mingw32-clang"
Expand Down

0 comments on commit 7546e0b

Please sign in to comment.