[Mspgcc-users] No clue for thsi....

2014-09-15 Thread Kees Schoenmakers
Hi All, I have a software project that builds fine met mspgcc (4.7.0) I installed the toolkit via the T.I. site, modified the Makefile to reflect this compiler and support files, Trying to build gives a long list of messages, Here I snipped from the top.

Re: [Mspgcc-users] No clue for thsi....

2014-09-15 Thread DJ Delorie
-mmcu=msp430f449 -O2 -Wall -Wno-old-style-declaration -std=c99 By specifying -std=c99 you have disabled all the GNU extensions, including asm. Try --std=gnuc99 instead, or replace asm with __asm__ in those headers.

Re: [Mspgcc-users] No clue for thsi....

2014-09-15 Thread Kees Schoenmakers
On 9/15/14, DJ Delorie d...@redhat.com wrote: -mmcu=msp430f449 -O2 -Wall -Wno-old-style-declaration -std=c99 By specifying -std=c99 you have disabled all the GNU extensions, including asm. Try --std=gnuc99 instead, or replace asm with __asm__ in those headers. Thank you, I'll try. Kees

Re: [Mspgcc-users] No clue for thsi....

2014-09-15 Thread Peter Bigot
On Mon, Sep 15, 2014 at 1:57 AM, DJ Delorie d...@redhat.com wrote: -mmcu=msp430f449 -O2 -Wall -Wno-old-style-declaration -std=c99 By specifying -std=c99 you have disabled all the GNU extensions, including asm. Try --std=gnuc99 instead, or replace asm with __asm__ in those headers. DJ is