Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to develop applications with Eclipse / Linux for Stellaris Launchpad (LM4F120). I am following this guide: http://kernelhacks.blogspot.de/2012/11/the-complete-tutorial-for-stellaris.html

However, I can't compile StellarisWare with make:

adc.c:1: error: bad value (cortex-m4) for -mcpu= switch
adc.c:1: error: invalid floating point option: -mfpu=fpv4-sp-d16

Obviously für compilation 'cc' instead of arm-*-gcc is used. How can I circumvent this problem?

I am using gcc-arm-none-eabi-4_7-2012q4. I did the following things for both a) the full StellarisWare Package (SW-LM3S-9453.exe) and the one for the Stellaris Launchpad (SW-EK-LM4F120XL-9453.exe):

1. Unzip: ../SW-*.zip
2. Try to compile: make

Cheers

share|improve this question
your compiler doesn't support cortex-m4. – auselen Feb 13 at 10:12
gcc-arm-none-eabi-4_7-2012q4 should support it since it is used in various tutorials and by other arm developers creating applications for this processor. – user1192748 Feb 13 at 13:43
then you are invoking the wrong gcc. – auselen Feb 13 at 14:09
Yes, I kind of realized this fact as well. However, my problem is how to get gcc-arm-none-eabi to compile stellaware. – user1192748 Feb 14 at 15:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.