diff options
| author | ruki <[email protected]> | 2023-09-21 22:53:49 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-09-21 22:53:49 +0800 |
| commit | 10d52f7b594c9a31cde723d34d1c4581933a7cbe (patch) | |
| tree | 7d127c8a9ea6348c65f8adc2b8a1b87b6bcc5364 | |
| parent | a46eb50bda5710a6be361faff204c0f699545c5b (diff) | |
enable debug package for asan
| -rw-r--r-- | xmake/core/package/package.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua index 4df947d66..a51a3404e 100644 --- a/xmake/core/package/package.lua +++ b/xmake/core/package/package.lua @@ -605,7 +605,7 @@ end -- is debug package? function _instance:is_debug() - return self:config("debug") + return self:config("debug") or self:config("asan") end -- is the supported package? |
