mirror of
https://github.com/godotengine/godot
synced 2024-11-02 15:10:04 +00:00
Fix MinGW cross-build
This commit is contained in:
parent
6f8b79ea5f
commit
e337eecd17
1 changed files with 3 additions and 2 deletions
|
@ -320,8 +320,9 @@ def configure(env):
|
|||
|
||||
print("Configuring for Windows: target=%s, bits=%s" % (env['target'], env['bits']))
|
||||
|
||||
env['ENV'] = os.environ # this makes build less repeatable, but simplifies some things
|
||||
env['ENV']['TMP'] = os.environ['TMP']
|
||||
if (os.name == "nt"):
|
||||
env['ENV'] = os.environ # this makes build less repeatable, but simplifies some things
|
||||
env['ENV']['TMP'] = os.environ['TMP']
|
||||
|
||||
# First figure out which compiler, version, and target arch we're using
|
||||
if os.getenv("VCINSTALLDIR"):
|
||||
|
|
Loading…
Reference in a new issue