From 619404d046541311c5336e02c730d2429f6b2585 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 16 Sep 2008 16:42:16 +0000 Subject: Better autodetection support for the Cell PPU and ppc64 machines generally. --- configure.pl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configure.pl') diff --git a/configure.pl b/configure.pl index ec7fbc609..01b6b5586 100755 --- a/configure.pl +++ b/configure.pl @@ -1816,11 +1816,13 @@ sub guess_cpu_from_this $cpu = 'sparc32-v9' if($cpuinfo =~ /ultrasparc/); # 64-bit PowerPC + $cpu = 'ppc64' if($cpuinfo =~ /ppc64/); $cpu = 'rs64a' if($cpuinfo =~ /rs64-/); $cpu = 'power3' if($cpuinfo =~ /power3/); $cpu = 'power4' if($cpuinfo =~ /power4/); $cpu = 'power5' if($cpuinfo =~ /power5/); $cpu = 'ppc970' if($cpuinfo =~ /ppc970/); + $cpu = 'cellppu' if($cpuinfo = ~/cell broadband engine/); # Ooh, an Alpha. Try to figure out what kind if($cpuinfo =~ /alpha/) -- cgit v1.2.3