File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -311,8 +311,16 @@ def get_env(self):
311
311
print ('prefix, version' , toolchain_prefix , toolchain_version )
312
312
print ('looking for {toolchain_prefix}-gcc' .format (toolchain_prefix = toolchain_prefix ))
313
313
print ('in the path' , environ ['PATH' ])
314
+
315
+ print ('toolchain_prefix is' , toolchain_prefix )
316
+ print ('path is' , environ ['PATH' ])
317
+ print ('command is' , '''
318
+ cc = find_executable('{toolchain_prefix}-gcc'.format(
319
+ toolchain_prefix=toolchain_prefix), path=environ['PATH'])
320
+ ''' )
314
321
cc = find_executable ('{toolchain_prefix}-gcc' .format (
315
322
toolchain_prefix = toolchain_prefix ), path = environ ['PATH' ])
323
+ print ('cc is' , cc )
316
324
if cc is None :
317
325
warning ('Couldn\' t find executable for CC. Exiting.' )
318
326
exit (1 )
You can’t perform that action at this time.
0 commit comments