Codeblocks' Cygwin compiler isn't working

﹥>﹥吖頭↗ 提交于 2020-01-16 04:46:06

问题


Using the default setup for Cygwin with codeblocks, I get the following error.

"NameScanner - Debug" uses an invalid compiler. Probably the toolchain path within the compiler options is not setup correctly?! Skipping...
Nothing to be done.

I tried their custom installation instructions and that gave me this error on cstdlib, a default file

C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\cwchar|249|error: `::wcstold' has not been declared|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\cwchar|265|error: `__gnu_cxx::wcstold' has not been declared|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\cstdlib|181|error: `::strtold' has not been declared|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\cstdlib|200|error: `__gnu_cxx::strtold' has not been declared|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|44|error: `_UPPER' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|45|error: `_LOWER' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|46|error: `_ALPHA' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|47|error: `_DIGIT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|48|error: `_HEX' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|49|error: `_SPACE' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|50|error: `_BLANK' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|50|error: `_PUNCT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|50|error: `_ALPHA' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|50|error: `_DIGIT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|51|error: `_PUNCT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|51|error: `_ALPHA' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|51|error: `_DIGIT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|52|error: `_CONTROL' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|53|error: `_PUNCT' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|54|error: `_ALPHA' was not declared in this scope|
C:\Dev-Cpp\bin\..\lib\gcc\mingw32\3.4.2\..\..\..\..\include\c++\3.4.2\mingw32\bits\ctype_base.h|54|error: `_DIGIT' was not declared in this scope|
C:\...\NameScanner\name.cpp|3|regex: No such file or directory|
C:\...\NameScanner\name.cpp||In constructor `Name::Name(std::string)':|
C:\...\NameScanner\name.cpp|19|error: `regex_match' undeclared (first use this function)|
C:\...\NameScanner\name.cpp|19|error: (Each undeclared identifier is reported only once for each function it appears in.)|
||=== Build finished: 24 errors, 0 warnings ===|

Any help is appreciated.


回答1:


I suggest you uninstall everything, download this version of codeblocks and install it. It already comes with everything you need (that would be GCC).



来源:https://stackoverflow.com/questions/24112160/codeblocks-cygwin-compiler-isnt-working

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!