diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2017-12-15 09:04:51 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2017-12-15 09:04:51 +0200 |
commit | f55162ac1d8457a806b61880dc9ce424ec47fefb (patch) | |
tree | 78a349cac2814ed3e3efa527bdeffe99c5f5f783 /modules/thekla_unwrap | |
parent | e3fd61b63860cd82dee12bf77550c1a5cf1373f5 (diff) |
Fixes thekla atlas mingw-w64 build
Diffstat (limited to 'modules/thekla_unwrap')
-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 |