Zax
Zax

Reputation: 491

Linking C Obj Files in FireMonkey

I'm evaluating a project to determine whether it is practical to port to FireMonkey.

It links a lot of c obj files. I cannot find any information regarding C obj linking support in FireMonkey. Can anyone advise whether it works?

Thanks

Upvotes: 0

Views: 130

Answers (1)

David Heffernan
David Heffernan

Reputation: 612784

Your question is not actually related to FireMonkey. Your question is whether or not the Delphi compiler supports linking objects. That is a question at the compiler level rather than the library level.

And the answer is that external objects can be linked for all the various compiler targets: Windows, Mac, iOS, Android and Linux.

You will of course need to recompile each of your external objects for each target that you wish to support.

Upvotes: 2

Related Questions