mirror of
https://git.freebsd.org/ports.git
synced 2025-06-10 15:20:32 -04:00
This is preparing for turning lang/julia to a meta port PR: 235872 Submitted by: Iblis Lin <iblis@hs.ntnu.edu.tw> (maintainer)
10 lines
164 B
C
10 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;
|
|
}
|