What steps will reproduce the problem?
1.
// test.cc
#include <glog/logging.h>
int main(int argc, char **argv)
{
google::InitGoogleLogging(argv[0]);
LOG(ERROR) << "this message should print out";
return 0;
}
2. clang++ test.cc -std=c++11 -stdlib=libc++ -lglog -lc++ -o test && ./test
3.
What is the expected output? What do you see instead?
expected output:
E0705 00:25:24.733587 389 test.cc:8] this message should print out
What I see instead:
E0705 00:25:24.733587 389 test.cc:8]
What version of the product are you using? On what operating system?
Ubuntu 12.04 using glog 0.3.3
Original issue reported on code.google.com by hala...@gmail.com on 5 Jul 2013 at 12:26
Original issue reported on code.google.com by
hala...@gmail.com
on 5 Jul 2013 at 12:26