X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=bin%2Fblhc;h=51fc4e14d62e1849d09ab06e171aaf0544d446ee;hp=c3834fbf07aeaec8757b1c6cc3499fbc47ab5bd0;hb=3e7cbdd4d5a13ed64e957f1c89f106113a8f6a2c;hpb=6ab8b0da4793ac24bcc01834955f0a1852350dbb diff --git a/bin/blhc b/bin/blhc index c3834fb..51fc4e1 100755 --- a/bin/blhc +++ b/bin/blhc @@ -172,6 +172,7 @@ my @def_cxxflags = ( my @def_cppflags = (); my @def_cppflags_fortify = ( '-D_FORTIFY_SOURCE=2', # must be first, see cppflags_fortify_broken() + # If you add another flag fix hack below (search for "Hack to fix"). ); my @def_cppflags_fortify_bad = ( # These flags may overwrite -D_FORTIFY_SOURCE=2. @@ -862,6 +863,13 @@ foreach my $file (@ARGV) { @ldflags = (@ldflags, @def_ldflags_bindnow); } + # 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. + if (scalar @def_cppflags_fortify == 0) { + $harden_fortify = 0; + } + # Ignore flags for this arch if requested. if ($arch and exists $option_ignore_arch_flag{$arch}) { my @flag_refs = (\@cflags, \@cxxflags, \@cppflags, \@ldflags);