Using MinGW 4.7.0, MSYS-compiled Clang 3.2.
I got MinGW via the automatic installer/downloader, and built Clang following these instructions: http://bencode.net/clangonwindows
Calling "g++ --version" on PowerShell returns: enter code here
Calling "clang -v" on PowerShell returns: clang version 3.2 (trunk 167353)
Target: i686-pc-mingw32
Thread model: posix
I created a little test file to check if clang was working, "test.cpp":
#include <iostream>
class clangIsCool
{
public:
int x;
int y;
};
int main()
{
clangIsCool *c;
std::cout << c->x * 10;
return 0;
}
Calling "clang++ test.cpp" gives me no errors.
I then got SublimeClang for SublimeText2 using Package Control.
SublimeClang can be found here: https://github.com/quarnster/SublimeClang
Loading "test.cpp" in SublimeText2 and trying to compile gives me these errors:
C:/MinGW/include\wctype.h:99,33 - Error - definition of variable with array type needs an explicit size or an initializer
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:145,11 - Error - no member named 'fgetws' in the global namespace
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:147,11 - Error - no member named 'fputws' in the global namespace
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:151,11 - Error - no member named 'getwc' in the global namespace
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:152,11 - Error - no member named 'getwchar' in the global namespace
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:157,11 - Error - no member named 'putwc' in the global namespace
C:/MinGW/lib/gcc/mingw32/4.7.0/include/c++\cwchar:158,11 - Error - no member named 'putwchar' in the global namespace
C:/MinGW/include\ctype.h:112,33 - Error - redefinition of '_ctype'
C:/MinGW/include\ctype.h:112,33 - Error - definition of variable with array type needs an explicit size or an initializer
C:/MinGW/include\ctype.h:117,34 - Error - redefinition of '_pctype_dll'
I checked SublimeClang's settings, and this is the options clang is using:
"options":
[
"-isystem", "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/",
"-isystem", "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/usr/include/c++/4.2.1",
"-F/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk/System/Library/Frameworks/",
"-isystem", "C:\\MinGW\\lib\\gcc\\mingw32\\4.7.0\\include",
"-isystem", "C:\\MinGW\\lib\\gcc\\mingw32\\4.7.0\\include\\c++",
"-isystem", "C:\\MinGW\\lib\\gcc\\mingw32\\4.7.0\\include\\c++\\mingw32",
"-isystem", "C:\\MinGW\\include",
"-Wall"
],
I tried messing around with the include paths (even though they look correct to me as they are), but the errors still remain.
Is there any other path I should include in SublimeClang's options?
Is there a way to see what paths clang uses by default (because it works from the command line), so that I can compare them to the one SublimeClang is defaulted to?