diff options
author | khodyrev <khodyrev@yandex-team.ru> | 2022-02-10 16:49:29 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:29 +0300 |
commit | 47c1310af4978d726db4670c6828c59fadb89c1b (patch) | |
tree | a9642abe74ef10ddf159eec792f844ddfa39f130 /build/ymake_conf.py | |
parent | b93b3eb857a34bc32cef3c1b0c709e8365253b34 (diff) | |
download | ydb-47c1310af4978d726db4670c6828c59fadb89c1b.tar.gz |
Restoring authorship annotation for <khodyrev@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'build/ymake_conf.py')
-rwxr-xr-x | build/ymake_conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py index 30219eb85e..0474349489 100755 --- a/build/ymake_conf.py +++ b/build/ymake_conf.py @@ -2530,7 +2530,7 @@ class MSVCCompiler(MSVC, Compiler): flags_debug += ['/MTd'] flags_release += ['/MT'] - vc_include = os.path.join(self.tc.vc_root, 'include') if not self.tc.ide_msvs else "$(VC_VC_IncludePath.Split(';')[0].Replace('\\','/'))" + vc_include = os.path.join(self.tc.vc_root, 'include') if not self.tc.ide_msvs else "$(VC_VC_IncludePath.Split(';')[0].Replace('\\','/'))" if not self.tc.ide_msvs: def include_flag(path): @@ -2581,7 +2581,7 @@ class MSVCCompiler(MSVC, Compiler): append('BC_CFLAGS', '$CFLAGS') append('BC_CXXFLAGS', '$BC_CFLAGS', '$CXXFLAGS') - ucrt_include = os.path.join(self.tc.kit_includes, 'ucrt') if not self.tc.ide_msvs else "$(UniversalCRT_IncludePath.Split(';')[0].Replace('\\','/'))" + ucrt_include = os.path.join(self.tc.kit_includes, 'ucrt') if not self.tc.ide_msvs else "$(UniversalCRT_IncludePath.Split(';')[0].Replace('\\','/'))" # clang-cl has '#include_next', and MSVC hasn't. It needs separately specified CRT and VC include directories for libc++ to include second in order standard C and C++ headers. if not self.tc.use_clang: |