What steps will reproduce the problem?
1. ./configure --host=arm-linux --target=arm-linux
--prefix=/usr/local/arm-linux/
2. make
What is the expected output? What do you see instead?
Expected output: no errors during make
output for glog-0.3.0 :
src/symbolize.cc: In function `ssize_t google::ReadPersistent(int, void*,
unsigned int)':
src/symbolize.cc:124: error: `SSIZE_MAX' undeclared (first use this function)
src/symbolize.cc:124: error: (Each undeclared identifier is reported only once
for each function it appears in.)
make: *** [libglog_la-symbolize.lo] Error 1
What version of the product are you using? On what operating system?
Fedora 11 64 bit
tool-chain arm-linux-g++ 3.2.2
Please provide any additional information below.
As workaround I added this code to symbolize.cc :
#ifndef SSIZE_MAX
#define SSIZE_MAX 0x7fffffff
#endif
Original issue reported on code.google.com by jher...@gmail.com on 30 Oct 2009 at 6:53
Original issue reported on code.google.com by
jher...@gmail.com
on 30 Oct 2009 at 6:53