IDE-Éclipse sur ubuntu

ça ne fonctionne pas, mais ça avance !

En fait c'est l'assemblage (le "link") qui foire. Le message t'indique que la bibliothèque core est introuvable.

As-tu bien fait ces étapes :
- copie du fichier core.a crée avec l'IDE Arduino vers le projet Eclipse

Each Ardiuno project needs to include the Ardunio core library. This file is compiled automatically by the Arduino IDE. While you could compile it yourself in Eclipse, the easiest way to get it is to build a simple sketch in the Arduino IDE, then copy the “core.a” file into your Eclipse project.

core.a fileStart the Arduino IDE
Open the Blink sketch (File > Examples > Digital > Blink)
Click the “Verify” button to compile the sketch
Select Sketch > Show Sketch Folder
Drag core.a into your Eclipse Hello_Blink project to copy it in.
Right-click on core.a, select Rename and change it to “libcore.a”

- configuration des chemins des bibliothèques

Select AVR C Linker > Libraries

Add a library named “core”
Add a library path. If libcore.a is in the Hello_Blink project folder, the path will be “${workspace_loc:/Hello_Blink}”