On Sat, Oct 17, 2015 at 10:04:34PM +0200, Ricardo Wurmus wrote:
> It’s a bioinfo library, so I don’t think MIPS (or ARM) is officially
> supported, but personally I would like to resist the urge to declare all
> bioinfo tools unsupported on non-Intel.
In this case, they are:
print "checking machine architecture... " unless ($AUTORUN);
println $MARCH unless ($AUTORUN);
unless ($MARCH =~ /x86_64/i || $MARCH =~ /i?86/i) {
println "configure: error: unsupported architecture '$OSTYPE'";
exit 1;
}
in ngs-sdk/setup/konfigure.perl. I will add a supported-system statement.
Andreas