我正在尝试使用MingW(msys2)在Windows上编译程序,并且使用j0函数失败。在Linux上,它编译没有问题。当我在编译器上使用-std = c ++ 11标志时似乎很讨厌。如何正确编译并使用-std = c ++ 11标志?
示例代码:
#include <cmath>
int main( int argc, char *argv[] )
{
float test = j0( 5 );
}
输出
$ g++ -std=c++11 test.cpp -o test
test.cpp: In function 'int main(int, char**)':
test.cpp:6:21: error: 'j0' was not declared in this scope
float test = j0( 5 );
答案 0 :(得分:5)
显然,MinGW仅在未定义__STRICT_ANSI__
时定义贝塞尔函数,并且在指定-std=c++11
时定义。通过在文件顶部添加#undef __STRICT_ANSI__
,我能够在MinGW中编译代码。见https://sourceforge.net/p/mingw-w64/feature-requests/68/
您也可以尝试使用-std=gnu++11
。见https://stackoverflow.com/a/19667112/10077