[Q]: Tailoring the Due to Eclipse..

My program also compiles and downloads "successfully", but it does not run, meaning the LED does not blink. I do not have the undefined reference warnings though.

Here is some information about my development environment:
32 bit eclipse juno cdt
arduino 1.5.1r2 beta
windows 8 64bit

My compile output is too big for this post, I will break it up in the posts below.

Any help would be greatly appreciated.

Program:

#include "Arduino.h"

// Pin 13 has an LED connected on most Arduino boards.
// give it a name:
int led = 13;


// the setup routine runs once when you press reset:
void setup() {
  // initialize the digital pin as an output.
  pinMode(led, OUTPUT);
}

// the loop routine runs over and over again forever:
void loop() {
  digitalWrite(led, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);               // wait for a second
  digitalWrite(led, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);               // wait for a second
}

Download Output:

Status for device COM5:
-----------------------
    Baud:            1200
    Parity:          None
    Data Bits:       8
    Stop Bits:       1
    Timeout:         ON
    XON/XOFF:        OFF
    CTS handshaking: OFF
    DSR handshaking: OFF
    DSR sensitivity: OFF
    DTR circuit:     ON
    RTS circuit:     ON

      1 [main] sleep 7652 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer.  Please report this problem to
the public mailing list cygwin@cygwin.com
Erase flash
Write 27477 bytes to flash

[                              ] 0% (0/108 pages)
[==                            ] 9% (10/108 pages)
[=====                         ] 18% (20/108 pages)
[========                      ] 27% (30/108 pages)
[===========                   ] 37% (40/108 pages)
[=============                 ] 46% (50/108 pages)
[================              ] 55% (60/108 pages)
[===================           ] 64% (70/108 pages)
[======================        ] 74% (80/108 pages)
[=========================     ] 83% (90/108 pages)
[===========================   ] 92% (100/108 pages)
[==============================] 100% (108/108 pages)
Verify 27477 bytes of flash

[                              ] 0% (0/108 pages)
[==                            ] 9% (10/108 pages)
[=====                         ] 18% (20/108 pages)
[========                      ] 27% (30/108 pages)
[===========                   ] 37% (40/108 pages)
[=============                 ] 46% (50/108 pages)
[================              ] 55% (60/108 pages)
[===================           ] 64% (70/108 pages)
[======================        ] 74% (80/108 pages)
[=========================     ] 83% (90/108 pages)
[===========================   ] 92% (100/108 pages)
[==============================] 100% (108/108 pages)
Verify successful
Set boot flash true
CPU reset.

-Madison