summaryrefslogtreecommitdiff
path: root/xmake/modules/core/tools/cparser.lua
diff options
context:
space:
mode:
authorOpportunityLiu <[email protected]>2019-05-21 09:47:51 +0800
committerOpportunityLiu <[email protected]>2019-05-21 09:54:01 +0800
commitb9a9de043eccb54e6be4cf8a0108f96d856f2b43 (patch)
tree3638e595e9acb54c09deb776975ca72f3de202f2 /xmake/modules/core/tools/cparser.lua
parenta4dfd8fd27eed47d760c78db4672fd50d0f2fbac (diff)
add more support
Diffstat (limited to 'xmake/modules/core/tools/cparser.lua')
-rw-r--r--xmake/modules/core/tools/cparser.lua22
1 files changed, 13 insertions, 9 deletions
diff --git a/xmake/modules/core/tools/cparser.lua b/xmake/modules/core/tools/cparser.lua
index 967714c37..6e2541c32 100644
--- a/xmake/modules/core/tools/cparser.lua
+++ b/xmake/modules/core/tools/cparser.lua
@@ -46,9 +46,11 @@ function init(self)
self:set("mapflags",
{
-- warnings
- ["-W1"] = "-Wall"
- , ["-W2"] = "-Wall"
- , ["-W3"] = "-Wall"
+ ["-W1"] = "-Wall"
+ , ["-W2"] = "-Wall"
+ , ["-W3"] = "-Wall"
+ , ["-W4"] = "-Wall -Wextra"
+ , ["-Weverything"] = "-Wall -Wextra"
-- strip
, ["-s"] = "-s"
@@ -95,12 +97,14 @@ function nf_warning(self, level)
-- the maps
local maps =
- {
- none = "-w"
- , less = "-W1"
- , more = "-W3"
- , all = "-Wall"
- , error = "-Werror"
+ {
+ none = "-w"
+ , less = "-Wall"
+ , more = "-Wall"
+ , all = "-Wall"
+ , extra = "-Wextra"
+ , everything = "-Wextra -Wall"
+ , error = "-Werror"
}
-- make it