这是我第一次尝试使用ATLAS。我无法正确链接它。这是一个非常简单的sgemm程序:...#includeconstintM=10;constintN=8;constintK=5;intmain(){float*A=newfloat[M*K];float*B=newfloat[K*N];float*C=newfloat[M*N];//InitializeAandBcblas_sgemm(CblasRowMajor,CblasNoTrans,CblasNoTrans,M,N,K,1.0,A,K,B,N,0.0,C,N);...}当我在带有标准ATLAS安装的linux平台上编译它时,出现