File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3232
3333from easybuild .easyblocks .generic .configuremake import ConfigureMake
3434from easybuild .framework .easyconfig import CUSTOM
35- from easybuild .tools .build_log import EasyBuildError
35+ from easybuild .tools .build_log import EasyBuildError , print_warning
3636from easybuild .tools .modules import MODULE_LOAD_ENV_HEADERS
3737from easybuild .tools .systemtools import get_cpu_arch_name , get_shared_lib_ext
3838
@@ -87,7 +87,8 @@ def configure_step(self):
8787 'zen5' : 'zen3' ,
8888 }
8989 if arch_name in fallback_archs :
90- self .log .info (f'{ failed_detect_str } , re-configuring with fallback architecture { arch_name } ' )
90+ print_warning (
91+ f'{ failed_detect_str } , re-configuring with fallback architecture { fallback_archs [arch_name ]} ' )
9192 self .cfg ['configopts' ] = re .sub (r'auto\s*$' , fallback_archs [arch_name ], self .cfg ['configopts' ])
9293 output = super ().configure_step ()
9394 else :
You can’t perform that action at this time.
0 commit comments