linux-pcc: make it more robust and recognize KERNEL_BITS variable.

This commit is contained in:
Andy Polyakov
2012-10-21 18:19:41 +00:00
parent 0c832ec5c6
commit 78c3e20579
2 changed files with 20 additions and 6 deletions

View File

@@ -4,6 +4,9 @@
#include <setjmp.h>
#include <signal.h>
#include <unistd.h>
#ifdef __linux
#include <sys/utsname.h>
#endif
#include <crypto.h>
#include <openssl/bn.h>
@@ -102,6 +105,10 @@ void OPENSSL_cpuid_setup(void)
if (sizeof(size_t)==4)
{
#ifdef __linux
struct utsname uts;
if (uname(&uts)==0 && strcmp(uts.machine,"ppc64")==0)
#endif
if (sigsetjmp(ill_jmp,1) == 0)
{
OPENSSL_ppc64_probe();