One way to progress to pure 64-bit clean source code, is to add LFS support to your 32-bit code base.
Large File Specification (LFS) is a way of getting 64-bit file handling into your 32-bit code base.
Basically, you need to rebuild your 32-bit code with the following flags passed to your C and/or C++ compiler :
-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
I've found this to work on every UNIX that I have encountered.
When enabled, all of your 'off_t' variables will be 64-bits wide.
Also you calls to fseek maybe mapped to fseek64 etc.
You should enable this and then work on updating your code base to handle it. You would have to do this anyway for pure 64-bit support.
Links
Wikipedia: LFS