+Sada.
Thanks.
On Wed, Dec 30, 2015 at 8:38 PM, Ard Biesheuvel ard.biesheuvel@linaro.org wrote:
On 30 December 2015 at 16:02, Leif Lindholm leif.lindholm@linaro.org wrote:
Hi Daniel,
Sorry, your email got stuck in my SPAM folder for some reason.
On Wed, Dec 23, 2015 at 05:25:21PM -0500, Daniel Samuelraj wrote:
We are able to compile CPP files for X64 using UDK2014 by using Visual Studio.
How do we compile the same source for AARCH64?
Do you mean C++? That is completely unsupported, and is going to be quite a challenge to implement. Note that you cannot rely on the C++ runtime for various reasons (including, but not limited to, the fact that it uses small model relocations, and is built against libc on Linux) I wonder how that even works on Visual Studio for X64, since the code you build will try to call libc functions from the VC runtime library.
There has been some discussion about this recently on the list. If you disable exceptions and RTTI, and reimplement your new and delete operators, you may be able to build code that does not rely on advanced C++ runtime features.
-- Ard.