Displaying 3 results from an estimated 3 matches for "r185676".
2013 Jul 04
4
[LLVMdev] llvm (hence Clang) not compiling with Visual Studio 2008
Hello,
I have just updated my svn copy of the llvm/clang repositories after quite
a long time of inactivity, and found it not compiling on Windows with
Visual Studio 2008.
The incriminated file is:
llvm/lib/MC/MCModule.cpp
Where several calls to "std::lower_bound" are made, like:
atom_iterator I = std::lower_bound(atom_begin(), atom_end(),
2013 Jul 04
0
[LLVMdev] [cfe-dev] llvm (hence Clang) not compiling with Visual Studio 2008
...disable the aforementioned
> check;
>
> 3. modify the code in MCModule.cpp to cope with the implementation of
> "lower_bound" in VS 2008.
>
> Personally I just went for (1), i.e. switching to Visual Studio 2010, as
> it was the most straightforward.
>
(3) Fixed in r185676.
Requiring VS 2010 for a minor problem like this (even though there are more
like it) isn’t warranted I think.
Doing so, I also had to add "#include <string>" to the file
> "lib/CodeGen/CGBlocks.cpp" so that llvm/clang can compile with said
> compiler, because of s...
2013 Jul 06
0
[LLVMdev] [cfe-dev] llvm (hence Clang) not compiling withVisual Studio 2008
...Clang) not compiling
>withVisual Studio 2008
>On Thu, Jul 4, 2013 at 12:48 AM, Benoit Perrot
><benoit.noe.perrot at gmail.com> wrote:
>>3. modify the code in MCModule.cpp to cope with the implementation of
>>"lower_bound" in VS 2008.
>>
>(3) Fixed in r185676.
>Requiring VS 2010 for a minor problem like this (even though there are more
>like it) isn’t warranted I think.