Refs #163. Obtain the build configure on runtime.
authorZhang Xianyi <traits.zhang@gmail.com>
Mon, 10 Dec 2012 07:49:01 +0000 (15:49 +0800)
committerZhang Xianyi <traits.zhang@gmail.com>
Mon, 10 Dec 2012 07:52:51 +0000 (15:52 +0800)
commitbdf8d9411e2e3698c7462a46e813c148c0e8aa98
tree7cbc7f508d0c8a55e5f614a2b1d8e916573497eb
parentbb10cb8442f84e76d1140f58b37fa1edc3393972
Refs #163. Obtain the build configure on runtime.
openblas_get_config function returns the configure string.
So far, it supports USE64BITINT, NO_CBLAS, NO_LAPACK, NO_LAPACKE,
DYNAMIC_ARCH, NO_AFFINITY.

Example:
 #include <stdio.h>
extern char * openblas_get_config();
void main()
{
  printf("%s\n",openblas_get_config());
  return;
}
cblas.h
driver/others/Makefile
driver/others/openblas_get_config.c [new file with mode: 0644]
exports/gensymbol