I understand that the fastest and the most lightweight binary at windows generate only msvc compiler
Express edition of msvc is free http://www.microsoft.com/express/windows/
but how to use cl.exe instead of g++.exe?
is it possible in common by using GNU make variables produce makefiles which will works with cl.exe and g++?
for example http://msdn.microsoft.com/en-us/library/19z1t1wy(v=VS.80).aspx
export CC = path/to/cl.exe
export COMPILE_WITHOUT_LINKING = /c
export OBJECT_FILE = /Fo
or is conception of cl and g++ very different?