diff options
author | AlexSm <alex@ydb.tech> | 2023-12-21 15:05:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 15:05:38 +0100 |
commit | e98bcbc74422492351c51646dba3849a138a8ffc (patch) | |
tree | 38ad7a09b1f9c201ce8a7e3d69f2017388769224 /build/scripts/clang_wrapper.py | |
parent | 559d7083cd8378cb25b9e966dedcca21d413e338 (diff) | |
download | ydb-e98bcbc74422492351c51646dba3849a138a8ffc.tar.gz |
Import libs 1 (#590)
* Import libs 1
* Add new file without extension
* Add file missed in export config
Diffstat (limited to 'build/scripts/clang_wrapper.py')
-rw-r--r-- | build/scripts/clang_wrapper.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/build/scripts/clang_wrapper.py b/build/scripts/clang_wrapper.py index 2fd04ba14c..b865c157cf 100644 --- a/build/scripts/clang_wrapper.py +++ b/build/scripts/clang_wrapper.py @@ -3,12 +3,6 @@ import sys def fix(s): - if s.startswith('-isystem') and s.endswith('/share/include'): - return None - - if s.startswith('-imsvc') and s.endswith('/share/include'): - return None - if s == '/Z7' or s == '/Od' or s == '/Ob0' or s == '/D_DEBUG': return None |