Re: [Boost-users] Boost binary serialization & AMD64
There might be differences in size of certain types like std::size_t or others. Robert Ramey Leon Mergen wrote:
Hello,
I'm currently having problems using serializations that were stored binary on an x86 and loading them on an amd64. Anyone knows whether there are any compatibility issues between those architectures and storing things binary ?
Thanks in advance.
Regards,
Leon Mergen
Robert Ramey wrote:
There might be differences in size of certain types like std::size_t or others.
Robert Ramey
std::size_t, std::ptrdiff_t, void* of course, and if you compile with GCC, long. As well as all typedefs of these (e.g. std::basic_string<T>::size_type). Sebastian Redl
On Thu, 2005-12-15 at 18:12 -0800, Robert Ramey wrote:
There might be differences in size of certain types like std::size_t or others.
Ok, and I assume if I would want to make the x86 data files readable on an amd64 architecture, I would have to write my own conversion utility, or simply start switching over to textual storage ? As in, there's no such thing provided by Boost.org ? Regards, Leon Mergen
participants (4)
-
Leon Mergen
-
Martin
-
Robert Ramey
-
Sebastian Redl