avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-gcc-list] Using Code::blocks with AVR-gcc in Ubuntu


From: Royce Pereira
Subject: [avr-gcc-list] Using Code::blocks with AVR-gcc in Ubuntu
Date: Sat, 2 Aug 2014 13:00:26 +0530

Hi,

I finally decided to dual boot my laptop with Ubuntu 14.04.1 (along side Win 7).

I had been using WinAVR so far.

Inside Ubuntu, I installed:
     - Code Blocks 13.12
     - AVR-gcc 4.8 (with binutils-AVR & AVR-libc packages)

I googled for tips on configuring CBlocks for AVR-gcc, but there are very few tutorials on this, and the latest article on how to do this is dated 2009.

I went through the motions of creating an AVR project, selecting MCU etc.
CB also 'auto detected' the AVR-gcc package.

I tried a simple program:

#include <avr/io.h>

int main(void)
{
    while(1) ;

    return 0;
}

And this is the error I get:


-------------- Build: Release in Test Project (compiler: GNU GCC Compiler for AVR)---------------

avr-gcc -Wall -mmcu=atmega8 -DF_CPU=1000000UL -Os -Os -I/usr/include -c main.c -o obj/Release/main.o
In file included from /usr/include/inttypes.h:25:0,
                 from /usr/lib/avr/include/avr/sfr_defs.h:126,
                 from /usr/lib/avr/include/avr/io.h:99,
                 from main.c:4:
/usr/include/features.h:374:25: fatal error: sys/cdefs.h: No such file or directory
 #  include <sys/cdefs.h>
                         ^
compilation terminated.
Process terminated with status 1 (0 minute(s), 0 second(s))
1 error(s), 0 warning(s) (0 minute(s), 0 second(s))
==================================

Could anyone help in setting up the IDE ?

Thank You.
--
Best Regards,

-- Royce Pereira

reply via email to

[Prev in Thread] Current Thread [Next in Thread]