R
Rob Fitzpatrick
Guest
Sounds like it may have been unintended but the compiler versions in the r-code were different in v10 for 32-bit vs. 64-bit r-code. As Gilles said, 17391 is a 64-bit .r. With a hex editor or xxd you can see the two-byte compiler version in a .r, starting at byte 15 (little-endian in this case). 10.2B08: 0000000: 09d3 ce56 2729 3e5b 2000 0000 38ff ef43 ...V')>[ ...8..C 11.6.3: 0000000: 09d3 ce56 6929 3e5b 0000 0000 0080 4c04 ...Vi)>[......L. 0x43ef = 17391 0x044c = 1100
Continue reading...
Continue reading...