@@ -567,9 +567,6 @@ def __init__(self, arcadia, build_type, toolchain_params, force_ignore_local_fil
567567 if force_ignore_local_files :
568568 self .ignore_local_files = True
569569
570- if self .is_ide_build_type (self .build_type ):
571- self .ignore_local_files = True
572-
573570 self .pic = not is_positive ('FORCE_NO_PIC' )
574571
575572 @property
@@ -666,10 +663,6 @@ def is_sanitized(self):
666663 def is_valgrind (self ):
667664 return self .build_type == 'valgrind' or self .build_type == 'valgrind-release'
668665
669- @property
670- def is_ide (self ):
671- return self .is_ide_build_type (self .build_type )
672-
673666 @property
674667 def profiler_type (self ):
675668 if self .build_type == 'profile' :
@@ -679,10 +672,6 @@ def profiler_type(self):
679672 else :
680673 return None
681674
682- @staticmethod
683- def is_ide_build_type (build_type ):
684- return build_type == 'nobuild'
685-
686675 def _configure_runtime_versions (self ):
687676 try :
688677 res = subprocess .check_output (['xcrun' , 'simctl' , 'list' , '--json' , 'runtimes' ])
@@ -2108,8 +2097,6 @@ def include_flag(path):
21082097 emit ('CFLAGS_PER_TYPE' , '$CFLAGS_RELEASE' )
21092098 if self .build .is_debug :
21102099 emit ('CFLAGS_PER_TYPE' , '$CFLAGS_DEBUG' )
2111- if self .build .is_ide :
2112- emit ('CFLAGS_PER_TYPE' , '@[debug|$CFLAGS_DEBUG]@[release|$CFLAGS_RELEASE]' )
21132100
21142101 emit ('_STD_CXX_VERSION' , preset ('USER_STD_CXX_VERSION' ) or self .tc .cxx_std )
21152102
0 commit comments