How to build Native ARM compiler

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to build Native ARM compiler

515 Views
Raana
Contributor III

Dear All,

Currently, I'm working with i.Mx6 SODIMM custom board. (OS: Linux - Yocto)

There, I want to build the Native ARM compiler to compile my application on my target board itself.

Is it possible?

If it so, can any one share the procedure to build that.

Thanks in Advance.

Best Regards,

J.P.Raja

Labels (3)
0 Kudos
1 Reply

369 Views
Carlos_Musich
NXP Employee
NXP Employee

Hi Raana,

First add the following packet in your <build_dir>/conf/local.conf file

IMAGE_INSTALL_append += "\

packagegroup-sdk-target \

"

The build (bitbake) your image.

Finally, when your image is up and running in your custom board you can use the command below to build.

arm-poky-linux-gnueabi-g++ fileName -o outputFileName


Regards,
Carlos

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 Kudos