File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
utils/swift_build_support/swift_build_support/products Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -185,10 +185,12 @@ def copy_embedded_compiler_rt_builtins_from_darwin_host_toolchain(
185185 elif self .args .verbose_build :
186186 print ('no file exists at {}' , host_sim_lib_path )
187187
188- os .makedirs (os .path .join (dest_builtins_dir , 'macho_embedded' ), exist_ok = True )
188+ os .makedirs (os .path .join (dest_builtins_dir , 'macho_embedded' ),
189+ exist_ok = True )
189190 for _flavor in ['hard_pic' , 'hard_static' , 'soft_pic' , 'soft_static' ]:
190191 # Copy over the macho_embedded .a when necessary
191- lib_name = os .path .join ('macho_embedded' , 'libclang_rt.{}.a' .format (_flavor ))
192+ lib_name = os .path .join ('macho_embedded' , 'libclang_rt.{}.a' .format (
193+ _flavor ))
192194 host_lib_path = os .path .join (host_cxx_builtins_dir , lib_name )
193195 dest_lib_path = os .path .join (dest_builtins_dir , lib_name )
194196 if not os .path .isfile (dest_lib_path ):
You can’t perform that action at this time.
0 commit comments