Browse Source

#463 fixed a compiling bug on AIX.

tags/v0.2.13
Zhang Xianyi 11 years ago
parent
commit
695e0fa649
1 changed files with 8 additions and 1 deletions
  1. +8
    -1
      driver/others/openblas_get_parallel.c

+ 8
- 1
driver/others/openblas_get_parallel.c View File

@@ -40,6 +40,8 @@ static int parallel = 1;
static int parallel = 0;
#endif


#ifdef NEEDBUNDERSCORE
int CNAME() {
return parallel;
}
@@ -48,5 +50,10 @@ int NAME() {
return parallel;
}


#else
//The CNAME and NAME are the same.
int NAME() {
return parallel;
}
#endif


Loading…
Cancel
Save