Your code in openprotect-script detecting gcc version omits the .4 in the end of identity string (thus refusing to continue).
$temp =~ /version (\d+\.*\d*)/;
$GCCV = $1;
if ( ! ( $GCCV gt $NGCC) )
{
&pnl("\nYou need GCC version $NGCC or above");
exit(0);
}
Dalimil Gala
