X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=bin%2Fblhc;h=5adfca6c13ea2d28d7e3c43c3a61d43c8530e443;hb=8d44f591b7523f7c13d5b32f1d9b130697a4e301;hp=f2e7295f3c79c34dd65f413fa7a0c09a4644692b;hpb=0de8fe5bbd96d47e03fa301d2762eae2f70b4a91;p=blhc%2Fblhc.git diff --git a/bin/blhc b/bin/blhc index f2e7295..5adfca6 100755 --- a/bin/blhc +++ b/bin/blhc @@ -129,14 +129,8 @@ my %extensions_compile_cpp = map { $_ => 1 } ( ); my %extension = map { $_ => 1 } ( @source_no_preprocess, - @source_no_preprocess_compile, - @source_no_preprocess_compile_cpp, - @source_no_preprocess_no_compile, @header_preprocess, @source_preprocess, - @source_preprocess_compile, - @source_preprocess_compile_cpp, - @source_preprocess_no_compile, ); # Regexp to match file extensions. @@ -198,7 +192,7 @@ my @def_ldflags_pic = ( # Renaming rules for the output so the regex parts are not visible. Also # stores string values of flag regexps above, see compile_flag_regexp(). my %flag_renames = ( - '-O(?:2|3)' => '-O2', + '-O(?:2|3)' => '-O2', '-Wl,(?:-z,)?relro' => '-Wl,-z,relro', '-Wl,(?:-z,)?now' => '-Wl,-z,now', );