dimahardie / google-breakpad

Automatically exported from code.google.com/p/google-breakpad
0 stars 0 forks source link

Compile error due to undefined uint64_t in common/dwarf/bytereader.cc on lucid #390

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. breakpad doesn't compile on lucid

What is the expected output? What do you see instead?

The compiler complains about not knowing uint64_t in common/dwarf/bytereader.cc 
and others. This is reasonable, since stdint.h doesn't seem to be included 
anywhere. Adding an #include <stdint.h> to common/dwarf/types.h helps, but 
converting all instances of uint64_t to uint64 seems the correct fix.

Original issue reported on code.google.com by mniss...@google.com on 22 Jul 2010 at 11:25

GoogleCodeExporter commented 8 years ago
The offending code was probably introduced as of 
http://code.google.com/p/google-breakpad/source/detail?spec=svn628&r=627

Original comment by mniss...@google.com on 22 Jul 2010 at 11:26

GoogleCodeExporter commented 8 years ago
Jim fixed this in r665.

Original comment by ted.mielczarek on 25 Aug 2010 at 11:49