X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=bin%2Fblhc;h=e03ac2889aa039ed04eaad66720dec1ac73fab18;hp=75888b86835469f3de4aa00898670084893f8801;hb=23020a59781f2a07a8d56053972d14c6d3cae2b3;hpb=e703305cc4c2d1717d6b63987d13951910b682ce diff --git a/bin/blhc b/bin/blhc index 75888b8..e03ac28 100755 --- a/bin/blhc +++ b/bin/blhc @@ -81,6 +81,12 @@ my @source_no_preprocess_compile_cpp = ( # Objective-C++ qw( mii ), ); +my @source_no_preprocess_compile_ada = ( + # Ada body + qw( adb ), + # If you add another file, fix use of @source_no_preprocess_compile_ada + # below (search for $compile_ada). +); my @source_no_preprocess_compile = ( # C qw( i ), @@ -90,8 +96,8 @@ my @source_no_preprocess_compile = ( qw( mi ), # Fortran qw( f for ftn f90 f95 f03 f08 ), - # Ada body - qw( adb ), + # Ada + @source_no_preprocess_compile_ada, ); my @source_no_preprocess_no_compile = ( # Assembly @@ -287,6 +293,20 @@ my $option_color; # FUNCTIONS +# Only works for single-level arrays with no undef values. Thanks to perlfaq4. +sub array_equal { + my ($first_ref, $second_ref) = @_; + + return 0 if scalar @{$first_ref} != scalar @{$second_ref}; + + my $length = scalar @{$first_ref}; + for (my $i = 0; $i < $length; $i++) { + return 0 if $first_ref->[$i] ne $second_ref->[$i]; + } + + return 1; +} + sub error_flags { my ($message, $missing_flags_ref, $flag_renames_ref, $line) = @_; @@ -640,6 +660,11 @@ foreach my $file (@ARGV) { my $harden_bindnow = $option_bindnow; # defaults to 0 my $harden_pie = $option_pie; # defaults to 0 + # Does this build log use ada? Ada also uses gcc as compiler but uses + # different CFLAGS. But only perform ada checks if an ada compiler used + # for performance reasons. + my $ada = 0; + while (my $line = <$fh>) { # Detect architecture automatically unless overridden. For buildd logs # only, doesn't use the dpkg-buildpackage header. Necessary to ignore @@ -699,6 +724,11 @@ foreach my $file (@ARGV) { } next FILE; } + + # Ada compiler. + if ($line =~ /\bgnat\b/) { + $ada = 1; + } } # We skip over unimportant lines at the beginning of the log to @@ -905,6 +935,22 @@ foreach my $file (@ARGV) { @ldflags = (@ldflags, @def_ldflags_bindnow); } + # Stores normal CFLAGS when @cflags_ada are temporarily used. + my @cflags_backup; + # Ada CFLAGS. + my @cflags_ada = @cflags; + # Ada doesn't support format hardening flags, see #680117 for more + # information. Filter them out if ada is used. + if ($ada and $harden_format) { + @cflags_ada = grep { + my $ok = 1; + foreach my $flag (@def_cflags_format) { + $ok = 0 if $_ eq $flag; + } + $ok; + } @cflags; + } + # Hack to fix cppflags_fortify_broken() if --ignore-flag # -D_FORTIFY_SOURCE=2 is used to ignore missing fortification. Only works # as long as @def_cppflags_fortify contains only one variable. @@ -1029,13 +1075,22 @@ LINE: } } + my $compile_cpp = 0; + my $compile_ada = 0; # Assume CXXFLAGS are required when a C++ file is specified in the # compiler line. - my $compile_cpp = 0; if ($compile and extension_found(\%extensions_compile_cpp, @extensions)) { $compile = 0; $compile_cpp = 1; + # Ada needs special CFLAGS, use them if only ada files are compiled. + } elsif ($ada + and $compile + and array_equal(\@extensions, + \@source_no_preprocess_compile_ada)) { + $compile_ada = 1; + @cflags_backup = @cflags; + @cflags = @cflags_ada; } if ($option_buildd) { @@ -1100,6 +1155,11 @@ LINE: $statistics{link_missing}++; } } + + # Restore normal CFLAGS. + if ($compile_ada) { + @cflags = @cflags_backup; + } } }