mqpasta
mqpasta

Reputation: 960

Difference between ARM and GCCE build?

What is the difference between ARM and GCCE? I am learning development on Symbian platform. I created a tested simple GUI application. Compiled and run on simulator. But don't know whether to compile in GCCE or ARM in order to run on my phone E61i.

Upvotes: 2

Views: 533

Answers (1)

Yuliya
Yuliya

Reputation: 220

Symbian OS runs on ARM processors. To build code for a phone you need to use a compiler based on the Application Binary Interface for ARM environments. And you have two options here — GNU Compiler Collection for Embedded (GCCE) and ARM's RealView Compiler Tools (RVCT). GCCE comes with your SDK and it's free. RVCT is a commercial compiler, it creates binaries that have more effective performance compared to GCCE builds. Symbian OS is build with the help of the RVCT. For most applications GCCE is all you need. Unless a high performance is a must for your application, go for GCCE. For further reading check this.

Upvotes: 2

Related Questions