Soundbytes
03-23-2010, 07:18 AM
Hi,
Has anybody suceeded in compiling a 64Bit VST plugin on MAC OS X?
I am getting this error message:
Cast from 'void*' to 'int' looses precision.
The error is caused by the main function in IPlug_include_in_plug_src.h
EXPORT int main(audioMasterCallback hostCallback)
{
return (int) VSTPluginMain(hostCallback);
}
It is obvious that a 64Bit pointer is longer than an (32Bit) int and that's why the compilation fails (and why the 32Bit version compiles fine). Is there any solution or workaround to this problem?
Or should I care at all? Are there any VST hosts that can host 64Bit VST2.4 Plugins?
Thanks for any comments!
Andreas
Has anybody suceeded in compiling a 64Bit VST plugin on MAC OS X?
I am getting this error message:
Cast from 'void*' to 'int' looses precision.
The error is caused by the main function in IPlug_include_in_plug_src.h
EXPORT int main(audioMasterCallback hostCallback)
{
return (int) VSTPluginMain(hostCallback);
}
It is obvious that a 64Bit pointer is longer than an (32Bit) int and that's why the compilation fails (and why the 32Bit version compiles fine). Is there any solution or workaround to this problem?
Or should I care at all? Are there any VST hosts that can host 64Bit VST2.4 Plugins?
Thanks for any comments!
Andreas