Reviewed By: thierry, tcberner, Greg V <greg@unrelenting.technology>, Filipe da Silva Santos <contact@shiori.com.br>, arrowd Differential Revision: https://reviews.freebsd.org/D33121
11 lines
164 B
C
11 lines
164 B
C
#include <string.h>
|
|
|
|
char* openblas_get_config(void);
|
|
|
|
int main()
|
|
{
|
|
if (strstr(openblas_get_config(), "USE64BITINT") == NULL)
|
|
return 1;
|
|
return 0;
|
|
}
|