top | item 7867702

(no title)

spatz | 11 years ago

As the blog post says, the linux version has been 64-bit since 2009. So the problem must be windows API, not type sizes.

discuss

order

rsynnott|11 years ago

Linux, MacOS, and nearly all other Unix-y things use LP64 (int is 32bit, long is 64bit). Windows x86_64 uses LLP64 (int is 32bit, long is 32bit). This can make porting a pain.