@@ -567,9 +567,6 @@ def __init__(self, arcadia, build_type, toolchain_params, force_ignore_local_fil
567
567
if force_ignore_local_files :
568
568
self .ignore_local_files = True
569
569
570
- if self .is_ide_build_type (self .build_type ):
571
- self .ignore_local_files = True
572
-
573
570
self .pic = not is_positive ('FORCE_NO_PIC' )
574
571
575
572
@property
@@ -666,10 +663,6 @@ def is_sanitized(self):
666
663
def is_valgrind (self ):
667
664
return self .build_type == 'valgrind' or self .build_type == 'valgrind-release'
668
665
669
- @property
670
- def is_ide (self ):
671
- return self .is_ide_build_type (self .build_type )
672
-
673
666
@property
674
667
def profiler_type (self ):
675
668
if self .build_type == 'profile' :
@@ -679,10 +672,6 @@ def profiler_type(self):
679
672
else :
680
673
return None
681
674
682
- @staticmethod
683
- def is_ide_build_type (build_type ):
684
- return build_type == 'nobuild'
685
-
686
675
def _configure_runtime_versions (self ):
687
676
try :
688
677
res = subprocess .check_output (['xcrun' , 'simctl' , 'list' , '--json' , 'runtimes' ])
@@ -2108,8 +2097,6 @@ def include_flag(path):
2108
2097
emit ('CFLAGS_PER_TYPE' , '$CFLAGS_RELEASE' )
2109
2098
if self .build .is_debug :
2110
2099
emit ('CFLAGS_PER_TYPE' , '$CFLAGS_DEBUG' )
2111
- if self .build .is_ide :
2112
- emit ('CFLAGS_PER_TYPE' , '@[debug|$CFLAGS_DEBUG]@[release|$CFLAGS_RELEASE]' )
2113
2100
2114
2101
emit ('_STD_CXX_VERSION' , preset ('USER_STD_CXX_VERSION' ) or self .tc .cxx_std )
2115
2102
0 commit comments