X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=bin%2Fblhc;h=7416df6f69e6632263bda34ceff5994cf1dd905f;hb=309aba1b1f578a2824d91b9e1b93c045afe38e8f;hp=835e9e04e344cea2d96ffe44f5a4fc032343eb83;hpb=c2dd74aada8d92258b14727c057e5d02a4c8c7a4;p=blhc%2Fblhc.git diff --git a/bin/blhc b/bin/blhc index 835e9e0..7416df6 100755 --- a/bin/blhc +++ b/bin/blhc @@ -48,7 +48,7 @@ my @source_preprocess_compile_cpp = ( # C++ qw( cc cp cxx cpp CPP c++ C ), # Objective-C++ - qw( mm Mr), + qw( mm M ), ); my @source_preprocess_compile = ( # C @@ -62,7 +62,7 @@ my @source_preprocess_compile = ( ); my @source_preprocess_no_compile = ( # Assembly - qw( s ), + qw( S sx ), ); my @source_preprocess = ( @source_preprocess_compile, @@ -87,7 +87,7 @@ my @source_no_preprocess_compile = ( ); my @source_no_preprocess_no_compile = ( # Assembly - qw( S sx ), + qw( s ), ); my @source_no_preprocess = ( @source_no_preprocess_compile, @@ -623,7 +623,6 @@ FILE: foreach my $file (@ARGV) { next; } - if (not $continuation) { # Use the complete line if a line continuation occurred. if (defined $complete_line) { $line = $complete_line; @@ -656,7 +655,6 @@ FILE: foreach my $file (@ARGV) { $harden_bindnow = 1 if any_flags_used($line, @def_ldflags_bindnow); push @input, $line; - } } }