• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版1c0ec065b95abd5d9abbf9bf187e1a3e01f98e60 (tree)
时间2013-01-02 01:26:52
作者Katsuhiko Nishimra <ktns.87@gmai...>
CommiterKatsuhiko Nishimra

Log Message

Fix bug in detection of C interface functions for BLAS. #28588

git-svn-id: https://svn.sourceforge.jp/svnroot/molds/branches/automake@1222 1136aad2-a195-0410-b898-f5ea1d11b9d8

更改概述

差异

--- a/src/configure.ac
+++ b/src/configure.ac
@@ -98,12 +98,12 @@ AC_CHECK_FUNCS([dcopy daxpy ddot dgemv dgemm dsymv dsyr],
9898 [molds_blas_cinterface_found=yes],
9999 [molds_blas_cinterface_found=no;break])
100100
101-AS_IF([test x$molds_lapack_cinterface_found != xyes],
101+AS_IF([test x$molds_blas_cinterface_found != xyes],
102102 [AC_CHECK_FUNCS([cblas_dcopy cblas_daxpy cblas_ddot cblas_dgemv cblas_dgemm cblas_dsymv cblas_dsyr],
103- [molds_lapack_cinterface_found=yes],
104- [molds_lapack_cinterface_found=no;break])])
103+ [molds_blas_cinterface_found=yes],
104+ [molds_blas_cinterface_found=no;break])])
105105
106-AS_IF([test x$molds_lapack_cinterface_found != xyes],
106+AS_IF([test x$molds_blas_cinterface_found != xyes],
107107 [AC_MSG_FAILURE([Cannot find C interface functions of BLAS!])])
108108
109109 dnl Check for LAPACK