diff options
| author | ruki <[email protected]> | 2018-12-11 22:32:58 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2018-12-11 09:17:50 +0800 |
| commit | e9a6a15b91e979ef855749be60c1ddd50823b9d5 (patch) | |
| tree | 180ab4b1f1e9aa15bf8d4bdfa570785cc3b689da | |
| parent | 2f1a77858c0ef40102228574546db6865309bdeb (diff) | |
filter backtrace option
| -rw-r--r-- | xmake/actions/config/menuconf.lua | 1 | ||||
| -rw-r--r-- | xmake/platforms/linux/xmake.lua | 2 | ||||
| -rw-r--r-- | xmake/platforms/macosx/xmake.lua | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/xmake/actions/config/menuconf.lua b/xmake/actions/config/menuconf.lua index 4d87b3e29..945dbf45a 100644 --- a/xmake/actions/config/menuconf.lua +++ b/xmake/actions/config/menuconf.lua @@ -84,6 +84,7 @@ function app:_filter_option(name) , profile = true , project = true , verbose = true + , backtrace = true , diagnosis = true , require = true , version = true diff --git a/xmake/platforms/linux/xmake.lua b/xmake/platforms/linux/xmake.lua index 33c9f9814..b11d5eb05 100644 --- a/xmake/platforms/linux/xmake.lua +++ b/xmake/platforms/linux/xmake.lua @@ -37,7 +37,7 @@ platform("linux") -- set formats set_formats {static = "lib$(name).a", object = "$(name).o", shared = "lib$(name).so", symbol = "$(name).sym"} - -- set installdir + -- set install directory set_installdir("/usr/local") -- on check diff --git a/xmake/platforms/macosx/xmake.lua b/xmake/platforms/macosx/xmake.lua index 203d551ad..e77057779 100644 --- a/xmake/platforms/macosx/xmake.lua +++ b/xmake/platforms/macosx/xmake.lua @@ -37,7 +37,7 @@ platform("macosx") -- set formats set_formats {static = "lib$(name).a", object = "$(name).o", shared = "lib$(name).dylib", symbol = "$(name).sym"} - -- set installdir + -- set install directory set_installdir("/usr/local") -- on check |
