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
path: root/src/tools
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2010-12-06 14:45:22 +0300
committerJason Perkins <starkos@industriousone.com>2010-12-06 14:45:22 +0300
commit90cc47165f5ea21870a425d209c19dc2ed8b6588 (patch)
tree28ef53193f1760248a6e911d37d4fd72a8fcd1a6 /src/tools
parentb1182478a2ac664f89cf66a0c456f32acfc6bf11 (diff)
More SNC changes: fixed location of PCH to match VS, fixed flags
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/snc.lua26
1 files changed, 2 insertions, 24 deletions
diff --git a/src/tools/snc.lua b/src/tools/snc.lua
index 4928aaf..2aa5452 100644
--- a/src/tools/snc.lua
+++ b/src/tools/snc.lua
@@ -26,17 +26,8 @@
local cflags =
{
- EnableSSE = "-msse",
- EnableSSE2 = "-msse2",
- ExtraWarnings = "-Wall",
- FatalWarnings = "-Werror",
- FloatFast = "-ffast-math",
- FloatStrict = "-ffloat-store",
- NoFramePointer = "-fomit-frame-pointer",
- Optimize = "-O2",
- OptimizeSize = "-Os",
- OptimizeSpeed = "-O3",
- Symbols = "-g",
+ ExtraWarnings = "-Xdiag=2",
+ FatalWarnings = "-Xquit=2",
}
local cxxflags =
@@ -52,19 +43,6 @@
premake.snc.platforms =
{
- Native = {
- cppflags = "-MMD -MP",
- },
- x32 = {
- cppflags = "-MMD -MP",
- flags = "-m32",
- ldflags = "-L/usr/lib32",
- },
- x64 = {
- cppflags = "-MMD -MP",
- flags = "-m64",
- ldflags = "-L/usr/lib64",
- },
PS3 = {
cc = "ppu-lv2-g++",
cxx = "ppu-lv2-g++",