[openssl.org #1597] OpenSSL 0.9.8g on gentoo Alpha Linux

2014-06-30 Thread Rich Salz via RT
Very old release. Unsupported platform. But a cool chip. Nonetheless, closing
the ticket.

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


[openssl.org #1597] OpenSSL 0.9.8g on gentoo Alpha Linux

2007-11-02 Thread Pieter Bowman via RT
The Alpha box on which I'm building OpenSSL has an EV4 CPU, but the
config script doesn't recognize that fact and sets -mcpu to ev6.  Here
is a patch to correct this issue:

--- config~ 2007-08-01 05:21:35.0 -0600
+++ config  2007-11-01 18:41:20.966918840 -0600
@@ -527,6 +527,7 @@
esac
if [ $CC = gcc ]; then
case ${ISA:-generic} in
+   EV4)options=$options -mcpu=ev4;;
EV5|EV45)   options=$options -mcpu=ev5;;
EV56|PCA56) options=$options -mcpu=ev56;;
*)  options=$options -mcpu=ev6;;


Thanks,

Pieter
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]