search for: r155978

Displaying 3 results from an estimated 3 matches for "r155978".

Did you mean: 155978
2012 Jun 26
0
[LLVMdev] Error compiling llvm/clang with clang+libc++ with -std=cxx0x
...unner.cpp:131:12: error: invalid operands to binary expression ('llvm::raw_ostream' and 'std::ostringstream' >> (aka 'basic_ostringstream<char>')) >> errs() << OS; >> ~~~~~~ ^ ~~ > Hi Ashok, please try applying this diff from r155978 to your 3.1 release tree: --- llvm/trunk/tools/bugpoint/ToolRunner.cpp 2012/05/02 05:31:31 155977 +++ llvm/trunk/tools/bugpoint/ToolRunner.cpp 2012/05/02 05:39:10 155978 @@ -128,7 +128,7 @@ ErrorFile.close(); } - errs() << OS; + errs() << OS.str(); } return...
2012 Jun 26
2
[LLVMdev] Error compiling llvm/clang with clang+libc++ with -std=cxx0x
Hi All, I'm using LLVM/Clang 3.1 release. I first compiled llvm/clang using GCC per the instructions on the web with cmake. I then compiled libc++ per the instructions on the web. I then tried to compile llvm/clang with previously compiled clang and libc++ using "-std=c++0x -stdlib=libc++" flags. But the compilation fails at: > [ 58%] Building CXX object
2012 Jun 26
1
[LLVMdev] Error compiling llvm/clang with clang+libc++ with -std=cxx0x
...valid operands to binary expression ('llvm::raw_ostream' and 'std::ostringstream' >>> (aka 'basic_ostringstream<char>')) >>> errs() << OS; >>> ~~~~~~ ^ ~~ >> > > Hi Ashok, please try applying this diff from r155978 to your 3.1 release tree: > > --- llvm/trunk/tools/bugpoint/ToolRunner.cpp 2012/05/02 05:31:31 155977 > +++ llvm/trunk/tools/bugpoint/ToolRunner.cpp 2012/05/02 05:39:10 155978 > @@ -128,7 +128,7 @@ > ErrorFile.close(); > } > > - errs() << OS; > +...