search for: files_with_lang

Displaying 1 result from an estimated 1 matches for "files_with_lang".

2020 Aug 20
0
[klibc:master] klcc: Treat CC, LD, STRIP as multiple words
...index 43d0984a..7b3b8f3b 100644 --- a/klcc/klcc.in +++ b/klcc/klcc.in @@ -218,7 +218,7 @@ if ( $debugging ) { if ( $operation ne '' ) { # Just run gcc with the appropriate options @outopt = ('-o', $output) if ( defined($output) ); - $rv = mysystem($CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); + $rv = mysystem(@CC, @ccopt, @outopt, files_with_lang(\@files, \%flang)); } else { if ( scalar(@files) == 0 ) { die "$0: No input files!\n"; @@ -241,7 +241,7 @@ if ( $operation ne '' ) { push(@objs, $fo); push(@rmobjs, $fo) unless ( $sav...