Skip to content
Advertisement

Standard C library linker issues while compiling and linking using ARM Compiler 6

I am facing some linker issues in ARM DS IDE, i am trying build code for ARMVv-8 architecture, Cortex A72 processor with ARM Compiler 6.

I think those error are related to standard libraries like stdio.h ,math.h these errors should not come as linker always looks for standard libraries paths on Linux machine.

Am i missing something or making some compiler, linker mistake ?

JavaScript

Advertisement

Answer

It’s necessary to have GCC in order to build Linux application with ARM Compiler 6: the reason is that ARM Compiler 6 does not include Linux libraries so it needs to use glibc from GCC.

Here is the link: https://community.arm.com/developer/tools-software/tools/b/tools-software-ides-blog/posts/building-an-armv8-linux-hello-world-with-arm-compiler-6

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement