Thanks for the reply, we actually managed to find the solution.
Like you said, it was caused by linking to the dynamic library, particularly by the use of “@executable_path”.
It turns out that for plugins, “@executable_path” points to the Host’s binary instead of the plugin’s.
To point to the plugin’s binary, we needed to use “@loader_path” instead.
So, using “@executable_path” for Standalone version and “@loader_path” for the Plugins, everything now works.