G++中GCC的等效是什么?
我正在使用性能库
在他们的示例中,他们以这种方式编译程序:
gcc code_with_math_routines.c -lamath -lm
但是当我尝试G ++如下:
g++ code_with_math_routines.cpp -lamath -lm
这将产生未定义的参考错误,并且未识别数学功能。
collect2: error: ld returned 1 exit status
GCC和G ++命令有什么区别?
I am compiling a cpp program with math.h using Arm performance library
In their example they compile programs in this way:
gcc code_with_math_routines.c -lamath -lm
But when I try g++ as follow:
g++ code_with_math_routines.cpp -lamath -lm
This will give an undefined reference error and the math function are not recognized.
collect2: error: ld returned 1 exit status
What is the difference between gcc and g++ command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论