Skip to content

Commit

Permalink
debug 10
Browse files Browse the repository at this point in the history
  • Loading branch information
nilason committed Aug 30, 2024
1 parent b4a975e commit 9f3323a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_ubuntu-22.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export INSTALL_PREFIX=$1
--with-fftw \
--with-netcdf
cat config.log
nm -g /usr/lib/x86_64-linux-gnu/libblas.so
nm -g /usr/lib/x86_64-linux-gnu/libblas.so.3
ls -l /usr/lib/x86_64-linux-gnu
ls -l /usr/lib
eval $makecmd
Expand Down
8 changes: 4 additions & 4 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -13822,7 +13822,7 @@ printf "%s\n" "$blas_ok" >&6; }
printf %s "checking for linking to BLAS dgemm_... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
char cblas_dgemm();
char dgemm_();
int
main (void)
{
Expand All @@ -13844,8 +13844,8 @@ rm -f core conftest.err conftest.$ac_objext conftest.beam \
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $blas_ok" >&5
printf "%s\n" "$blas_ok" >&6; }

{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for linking to BLAS dgemm" >&5
printf %s "checking for linking to BLAS dgemm... " >&6; }
{ printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for linking to BLAS sgemm" >&5
printf %s "checking for linking to BLAS sgemm... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
char sgemm();
Expand Down Expand Up @@ -13874,7 +13874,7 @@ printf "%s\n" "$blas_ok" >&6; }
printf %s "checking for linking to BLAS dgemm... " >&6; }
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
char sgemm();
char dgemm();
int
main (void)
{
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1638,13 +1638,13 @@ dnl ])

AC_MSG_CHECKING([for linking to BLAS dgemm_])
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[char cblas_dgemm();]], [[return dgemm_();]])],
[[char dgemm_();]], [[return dgemm_();]])],
[blas_ok=yes] , [
[]
])
AC_MSG_RESULT($blas_ok)

AC_MSG_CHECKING([for linking to BLAS dgemm])
AC_MSG_CHECKING([for linking to BLAS sgemm])
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[char sgemm();]], [[return sgemm();]])],
[blas_ok=yes] , [
Expand All @@ -1654,7 +1654,7 @@ dnl ])

AC_MSG_CHECKING([for linking to BLAS dgemm])
AC_LINK_IFELSE([AC_LANG_PROGRAM(
[[char sgemm();]], [[return dgemm();]])],
[[char dgemm();]], [[return dgemm();]])],
[blas_ok=yes] , [
[]
])
Expand Down

0 comments on commit 9f3323a

Please sign in to comment.