diff options
author | 2015-12-12 08:58:57 +0100 | |
---|---|---|
committer | 2015-12-12 08:58:57 +0100 | |
commit | 379581fb3690d92f7e3815534a479823aee8ddcc (patch) | |
tree | 77b4a080ba46ba58bfd8382926580cb2aad5a69d /scripts/genie.lua | |
parent | afe2bbe6481acf518e384509586ada235e106c54 (diff) |
macro removal INLINE -> static inline (nw)
Diffstat (limited to 'scripts/genie.lua')
-rw-r--r-- | scripts/genie.lua | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/scripts/genie.lua b/scripts/genie.lua index 088636a7e5e..5ca87cf7c16 100644 --- a/scripts/genie.lua +++ b/scripts/genie.lua @@ -554,24 +554,6 @@ if (_ACTION == nil) then return false end configuration { "x64" } defines { "PTR64=1" } --- map the INLINE to something digestible by GCC -configuration { "gmake" } - buildoptions_cpp { - "-DINLINE=\"static inline\"", - } - buildoptions_objc { - "-DINLINE=\"static inline\"", - } -configuration { "xcode4*" } - buildoptions { - "-DINLINE=\"static inline\"", - } - -configuration { "vs*" } - defines { - "INLINE=static inline", - } - -- define MAME_DEBUG if we are a debugging build configuration { "Debug" } defines { @@ -1002,7 +984,6 @@ end "-Wno-tautological-compare", "-Wno-dynamic-class-memaccess", "-Wno-unused-value", --- "-Wno-c++11-narrowing", "-Wno-inline-new-delete", "-Wno-constant-logical-operand", "-Wno-deprecated-register", @@ -1026,8 +1007,6 @@ end end buildoptions { "-Wno-unused-result", -- needed for fgets,fread on linux --- "-Wno-narrowing", --- "-Wno-attributes", -- array bounds checking seems to be buggy in 4.8.1 (try it on video/stvvdp1.c and video/model1.c without -Wno-array-bounds) "-Wno-array-bounds", } |