diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-12-15 09:21:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-15 09:21:35 +0100 |
commit | e75da0a4402e53373c66f9bf99e8e8ba6f0ee5b2 (patch) | |
tree | bf1eac165a8c2e6c488a0bbdc1724c666a38e168 /modules | |
parent | c0beab6c5b85d4327b6da4870cd686cbb9920b04 (diff) | |
parent | f55162ac1d8457a806b61880dc9ce424ec47fefb (diff) |
Merge pull request #14690 from bruvzg/thekla-mingw-build-fix
Fixes thekla atlas mingw-w64 build.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/thekla_unwrap/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/thekla_unwrap/SCsub b/modules/thekla_unwrap/SCsub index b489fcc9e7..c57bf326ea 100644 --- a/modules/thekla_unwrap/SCsub +++ b/modules/thekla_unwrap/SCsub @@ -67,7 +67,7 @@ if env['builtin_thekla_atlas']: if env.msvc: env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_WIN32", "-DNV_CC_MSVC", "-DPOSH_COMPILER_MSVC" ]) else: - env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_MINGW", "-DNV_CC_GNUC", "-DPOSH_COMPILER_GCC"]) + env_thekla_unwrap.Append(CCFLAGS=["-DNV_OS_MINGW", "-DNV_CC_GNUC", "-DPOSH_COMPILER_GCC", "-U__STRICT_ANSI__"]) env.Append(LIBS=["dbghelp"]) # Godot source files |