Closed GoogleCodeExporter closed 9 years ago
I further removed strstream usage from logging.h.in. This is just a quick fix,
it's probably not optimal as binary sizes increases by a factor of at least 2
(due to the inclusion of stringstream.h in logging.h.)
- h
Original comment by heinrich...@gmail.com
on 2 Apr 2012 at 9:42
Attachments:
As far as I can see this compilation error is still present in the latest SVN
version, with the. I've applied the first patch above, and it fixes the
compilation errors using clang++ based on LLVM version 4.2 (this appears to be
the default for Mountain Lion 10.8.2 / latest XCode command line tools). There
are no warnings during compilation. However, `make check` fails as follows:
$ make check
make logging_striplog_test_sh demangle_unittest_sh signalhandler_unittest_sh
./src/logging_striplog_test.sh
In DBG mode; not checking strings
./src/logging_striplog_test.sh: line 76: 59433 Abort trap: 6
./logging_striptest2 2> /dev/null
PASS
./demangle_unittest # force to create lt-demangle_unittest
make[1]: *** [demangle_unittest_sh] Segmentation fault: 11
make: *** [check-am] Error 2
Is there something I've missed? I'm starting a new project and extremely keen
to use Glog if possible but I also want to use clang++ with C++11 features. Is
it possible to do both?
Cheers,
Malcolm
Original comment by malcolm....@gmail.com
on 4 Feb 2013 at 4:55
The trunk version almost compiles in libc++ thanks to r119 and r134. I've
attached a very minor patch that makes it fully compile and pass all unit tests
with clang and libc++.
Original comment by bobrober...@gmail.com
on 28 Jul 2013 at 3:31
Attachments:
It would be great to have this patch in trunk. The current HEAD does not
compile under OS X 10.9. (Apple LLVM version 5.0 (clang-500.2.79) (based on
LLVM 3.3svn))
Original comment by hannessc...@gmail.com
on 24 Oct 2013 at 9:09
Does this patch (libc++.diff 737 bytes) help compilation on OS X 10.9? Thanks!
Original comment by zhangyun...@gmail.com
on 24 Oct 2013 at 9:12
Yes, it does. Patch the awesomeness into trunk!
Original comment by zhangyun...@gmail.com
on 24 Oct 2013 at 9:20
I can confirm that this patch fixes it.
Original comment by hannessc...@gmail.com
on 24 Oct 2013 at 9:23
[deleted comment]
It worked for me too. Please apply it to r139
Original comment by carles.f...@gmail.com
on 8 Nov 2013 at 7:36
This patch works for me too.
It'd be nice to fix this - particularly since you need to build the unit test
for make install to work...!
Original comment by tom.ritc...@gmail.com
on 18 Nov 2013 at 7:40
Fixed: https://code.google.com/p/google-glog/source/detail?r=142
Sorry for the latency and thanks for suggestions.
Original comment by shinichi...@gmail.com
on 5 Mar 2014 at 5:22
Did not work for me. I'm still getting an error.
Original comment by Antma...@gmail.com
on 2 Feb 2015 at 2:00
It doesn't work for me either. I get:
In file included from src/stl_logging_unittest.cc:55:
./src/glog/stl_logging.h:56:11: fatal error: 'ext/slist' file not found
# include <ext/slist>
My compiler:
$ g++ --version
Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr
--with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacO
SX.platform/Developer/SDKs/MacOSX10.10.sdk/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.3.0
Thread model: posix
Original comment by drirr.g...@gmail.com
on 6 Feb 2015 at 12:30
I can confirm that this is still an issue on OSX 10.10 with the latest version
of Xcode command line tools.
Original comment by lgtorre...@gmail.com
on 12 Mar 2015 at 12:04
Original issue reported on code.google.com by
heinrich...@gmail.com
on 2 Apr 2012 at 8:35Attachments: