Thank you for OpenSSL.

I tried to make OpenSSL ver.1.0.0 on MacOSX.
But I failed to 'make test', it said 'Bad cpu type'

Maybe, It is occurred by 'crypto/perlasm/ppc-xlate.pl' .
In 61 lines
        $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");

In my environment, $flavour is 'osx32', so $arch becomes 'ppc970'.
But G4 is the cpu on my computer, not ppc970(G5).

I changed that line to
        $arch = ($flavour=~/64/) ? "ppc970-64" : "ppc970" if ($arch eq "any");
Then I can built it up normaly.

I'm not a native speaker of English, so my English is bad.
I'm sorry.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       [email protected]
Automated List Manager                           [email protected]

Reply via email to