Is it necessaryto sync Configure with config on -Wa,--noexecstack?
+diff --git a/Configure b/Configure +index 3232cfe..df84922 100644 +=================================================================== +--- a/Configure ++++ b/Configure +@@ -1256,6 +1256,30 @@ $libdir="lib$multilib" if $libdir eq ""; + + $cflags = "$cflags$exp_cflags"; + ++if ($no_asm) ++ { ++ } ++ else ++ { ++ my $retvalue; ++ if ($cross_compile_prefix) ++ { ++ $retvalue =system("$cross_compile_prefix -Wa,--help -c -o /tmp/null.o -x assembler /dev/null | grep noexecstack > /dev/null "); ++ } ++ else ++ { ++ $retvalue =system("$cc -Wa,--help -c -o /tmp/null.o -x assembler /dev/null | grep noexecstack > /dev/null "); ++ } ++ if ($retvalue) ++ { ++ #noting to add ++ } ++ else ++ { ++ $cflags = " -Wa,--noexecstack $cflags"; ++ } ++ }