File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -294,9 +294,9 @@ def print_default_values_warning() -> None:
294294 self .print_options ('' , build_core_options [None ])
295295 self .print_options ('Backend options' , {k : v for k , v in self .coredata .optstore .items () if self .coredata .optstore .is_backend_option (k )})
296296 self .print_options ('Base options' , {k : v for k , v in self .coredata .optstore .items () if self .coredata .optstore .is_base_option (k )})
297- self .print_options ('Compiler options' , host_compiler_options .get ('' , {}))
297+ self .print_options ('Compiler options' , host_compiler_options .get (None , {}))
298298 if show_build_options :
299- self .print_options ('' , build_compiler_options .get ('' , {}))
299+ self .print_options ('' , build_compiler_options .get (None , {}))
300300 for mod , mod_options in module_options .items ():
301301 self .print_options (f'{ mod } module options' , mod_options )
302302 self .print_options ('Directories' , dir_options )
You can’t perform that action at this time.
0 commit comments