即使设置了“-lm”,也找不到 Math.h

发布于 2024-12-09 04:51:05 字数 1114 浏览 0 评论 0原文

即使我设置了标志 -lm,gcc 也不会链接到 math.h,这可能是什么原因造成的?

me@mycomputer$ g++ template_gold.cpp -o template_gold -lm
template_gold.cpp: In function ‘void computeGold(valpoint*, centroid*, int)’:
template_gold.cpp:68: error: ‘max’ was not declared in this scope
template_gold.cpp:70: error: ‘abs’ was not declared in this scope

我很抱歉,如果这是一个骗局,但是搜索谷歌,所以我发现只有帖子建议设置-lm

违规代码

#include <math.h>
#include "kmeans.h"
extern "C" 
void computeGold( valpoint* h_idata, centroid* h_centroids, int numClusters);
...
for (long valindex = 0; valindex<1024*1024; valindex++)
    {
        minDistance = 0xFFFFFFFF;
        for (k = 0; k<numClusters; k++)
            if (max((long)(h_idata[valindex].value - h_centroids[k].value))<minDistance)
            {
                minDistance = abs((long)(h_idata[valindex].value - h_centroids[k].value));
                myCentroid = k;
            }

        h_idata[valindex].centroid = h_centroids[myCentroid].value;

    }
}

What causes could there be, that gcc does not link to math.h even though I set the flag -lm?

me@mycomputer$ g++ template_gold.cpp -o template_gold -lm
template_gold.cpp: In function ‘void computeGold(valpoint*, centroid*, int)’:
template_gold.cpp:68: error: ‘max’ was not declared in this scope
template_gold.cpp:70: error: ‘abs’ was not declared in this scope

I am sorry, if this is a dupe, but searching the googles and SO I found only post suggesting to set the -lm.

Offending Code

#include <math.h>
#include "kmeans.h"
extern "C" 
void computeGold( valpoint* h_idata, centroid* h_centroids, int numClusters);
...
for (long valindex = 0; valindex<1024*1024; valindex++)
    {
        minDistance = 0xFFFFFFFF;
        for (k = 0; k<numClusters; k++)
            if (max((long)(h_idata[valindex].value - h_centroids[k].value))<minDistance)
            {
                minDistance = abs((long)(h_idata[valindex].value - h_centroids[k].value));
                myCentroid = k;
            }

        h_idata[valindex].centroid = h_centroids[myCentroid].value;

    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隱形的亼 2024-12-16 04:51:05

您可能忘记使用 std::max,或者忘记添加 using namespace std。尝试

void void computeGold(valpoint* ..., centroid* ..., int ...)
{
    using namespace std; /* or using std::max etc. */
}

You probably forgot to use std::max, or you forgot adding using namespace std. Try

void void computeGold(valpoint* ..., centroid* ..., int ...)
{
    using namespace std; /* or using std::max etc. */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文