Forums › TWAIN Mac/OSX › PPC & Intel Problem › Re: Re: PPC & Intel Problem
@amila123 wrote:
…When I build it and on a PPC machine its running fine,can select source and acquire image.When I run Same project in a Intel Mac book it doesnt show select source entries…
Are you building a universal binary (i.e. Both Intel and PowerPC code in the object code)? If your app is PowerPC-only, it will not load Intel-only DS’s. The more likely scenario is that your app is running natively on Intel but the DS’s are PowerPC-only so it cannot load them.
If your app is a universal binary, you can test if you have PowerPC-only DS’s on your Intel machine as follows:
– Open the Finder’s Get Info window for your app.
– Enable the “Open using Rosetta” option.
– Close the Get Info window.
– Run your app.
This forces your universal binary to run under the PowerPC emulator. If the DS’s show up, you probably have PowerPC-only DS’s on your Intel Mac.
–