Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2009-01-13 22:33:21 +0300
committerstarkos <none@none>2009-01-13 22:33:21 +0300
commit456bb6e640e39009c9bd2b3fa430b82960ba028d (patch)
tree788cc8490e7158f98d8ecde36e57e90622e10ee0
parent0f9756378c93fcd869e312b1c4b251fd806a7645 (diff)
Bug: Windows release builds of Premake4 made with GCC crash on script syntax errors
-rw-r--r--CHANGES.txt1
-rw-r--r--premake4.lua2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 4003da9..e898201 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,6 +13,7 @@ This version is a complete rewrite of Premake.
RC2 -> RC3
+- Bug: GCC Windows release builds of Premake4 crash on script errors
- Patched Lua to load precompiled bytecodes on PPC architectures.
- Display paths of generated files
diff --git a/premake4.lua b/premake4.lua
index 1fb3f40..ea69ef4 100644
--- a/premake4.lua
+++ b/premake4.lua
@@ -66,7 +66,7 @@ end
configuration "Release"
targetdir "bin/release"
defines "NDEBUG"
- flags { "OptimizeSize", "NoFramePointer" }
+ flags { "OptimizeSize" }
configuration "vs*"
defines { "_CRT_SECURE_NO_WARNINGS" }