diff options
author | pg <pg@yandex-team.com> | 2023-09-08 04:51:36 +0300 |
---|---|---|
committer | pg <pg@yandex-team.com> | 2023-09-08 05:12:22 +0300 |
commit | 563e21fcd7280e84fb359d0a8de2403a5924a3d8 (patch) | |
tree | 7f5b5198a5519acbfc53156895fe78e8804c0ae0 /build/scripts/clang_wrapper.py | |
parent | c80275ddb4a1c7935248eb260d3ffea47ed0f5e1 (diff) | |
download | ydb-563e21fcd7280e84fb359d0a8de2403a5924a3d8.tar.gz |
Diffstat (limited to 'build/scripts/clang_wrapper.py')
-rw-r--r-- | build/scripts/clang_wrapper.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/scripts/clang_wrapper.py b/build/scripts/clang_wrapper.py index d840b70cfa..c40f097d69 100644 --- a/build/scripts/clang_wrapper.py +++ b/build/scripts/clang_wrapper.py @@ -3,6 +3,9 @@ import sys def fix(s): + if s.startswith('-isystem') and s.endswith('/share/include'): + return None + if s == '/Z7' or s == '/Od' or s == '/Ob0' or s == '/D_DEBUG': return None |