diff options
author | spreis <spreis@yandex-team.com> | 2024-10-01 08:45:58 +0300 |
---|---|---|
committer | spreis <spreis@yandex-team.com> | 2024-10-01 08:56:27 +0300 |
commit | e75334eb7b67cfe3dff2ce854ef3c4a28451411b (patch) | |
tree | 02332ad3018239cd1f06bc538af9648d1c0b32c3 | |
parent | 1a1b74c055503cb8dddd20634485ff785e7c9d04 (diff) | |
download | ydb-e75334eb7b67cfe3dff2ce854ef3c4a28451411b.tar.gz |
Remove code already moved to gnu_compiler.conf
Correct code is here: https://a.yandex-team.ru/arcadia/build/conf/compilers/gnu_compiler.conf?rev=rXXXXXX#L26-29
commit_hash:84c11898cbd35e7547eb284a59b0d025b30301b5
-rwxr-xr-x | build/ymake_conf.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py index 6e53ddf856..238ef5172f 100755 --- a/build/ymake_conf.py +++ b/build/ymake_conf.py @@ -1527,10 +1527,6 @@ class GnuCompiler(Compiler): '-fwasm-exceptions', ] - self.debug_info_flags = ['-g'] - if self.target.is_linux: - self.debug_info_flags.append('-ggnu-pubnames') - self.cross_suffix = '' if is_positive('FORCE_NO_PIC') else '.pic' self.optimize = None @@ -1619,7 +1615,6 @@ class GnuCompiler(Compiler): emit('CXX_COMPILER_OLD', '${quo:CXX_COMPILER_OLD_UNQUOTED}') # TODO(somov): Убрать чтение настройки из os.environ emit('USE_ARC_PROFILE', 'yes' if preset('USE_ARC_PROFILE') or os.environ.get('USE_ARC_PROFILE') else 'no') - emit('DEBUG_INFO_FLAGS', self.debug_info_flags) if self.build.is_coverage: emit('_IS_COVERAGE', 'yes') |