ports/lang/julia10/files/check_openblas.c
Li-Wen Hsu af1d8e9886 Copy lang/julia to lang/julia10
This is preparing for turning lang/julia to a meta port

PR:		235872
Submitted by:	Iblis Lin <iblis@hs.ntnu.edu.tw> (maintainer)
2019-05-28 05:59:00 +00:00

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;
}