Displaying 2 results from an estimated 2 matches for "ms173499".
2014 May 02
2
[LLVMdev] clang build (Debug+Asserts) fails with Cygwin and Mingw (ASTContext.o: File too big)
...ue, Microsoft's compiler cl has a flag called
/bigobj that allocates 32 bits in order to store the number of sections
(instead of 16 bits, as this standard specifies:
http://msdn.microsoft.com/en-us/library/gg463119.aspx )
Also check this for /bigobj:
http://msdn.microsoft.com/en-us/library/ms173499.aspx
Anybody else having this problem with Mingw/Cygwin? If yes, how did you
overcome it?
My Cygwin version is this:
$ uname -a
CYGWIN_NT-6.1 livghe-i5 1.7.29(0.272/5/3) 2014-04-07 13:46 x86_64 Cygwin
The only option I currently see is to split the mammoth cpp file
(ASTContext.cpp) in 2 parts...
2014 May 02
2
[LLVMdev] clang build (Debug+Asserts) fails with Cygwin and Mingw (ASTContext.o: File too big)
.../bigobj
>> that allocates 32 bits in order to store the number of sections (instead of
>> 16 bits, as this standard specifies:
>> http://msdn.microsoft.com/en-us/library/gg463119.aspx )
>>
>> Also check this for /bigobj:
>> http://msdn.microsoft.com/en-us/library/ms173499.aspx
>>
>> Anybody else having this problem with Mingw/Cygwin? If yes, how did you
>> overcome it?
>>
>> My Cygwin version is this:
>> $ uname -a
>> CYGWIN_NT-6.1 livghe-i5 1.7.29(0.272/5/3) 2014-04-07 13:46 x86_64 Cygwin
>>
>> The only option I...