Show
Ignore:
Timestamp:
08/13/08 12:28:33 (16 months ago)
Author:
mspiegel
Message:

[blas] Initial attempt at linking against Sun Performance Library on Solaris. Doesn't work, but doesn't break other platform configurations.

Location:
trunk/ProjectFortress/c
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ProjectFortress/c/blas.c

    r2602 r2624  
    22 
    33#include <jni.h> 
    4 #ifdef _OSX 
     4 
     5#if defined(OSX) 
    56#include <Accelerate/Accelerate.h> 
     7 
     8#elif defined(SUNOS) 
     9#include <sunperf.h>  
     10 
    611#else 
    712#include <cblas.h> 
     13 
    814#endif 
    915