Sterling Peet

Results 27 comments of Sterling Peet

I just realized that I was not targeting the correct AVR MCU instruction set, no idea what the default is. Here is the snippet: ``` [100%] Linking CXX executable ../../../bin/avr-gcc/ArduinoBlink...

@LeStarch: Excellent resource, and I certainly expect to have things to add. I'm currently targeting the Arduino Mega 2560. It has 256k of program memory, so that matches up with...

OK, I got all the Arduino core stuff to compile and get added to the other targets. Its currently struggling with the Arduino serial ComLogger component.

@timcanham and @LeStarch: I got the the Arduino SDK based build all the way down to the end of the compiler step, and it still fails to link with the...

I will say that the linker line [in cmake] in @LeStarch's branch also has a "fixme" note on it, I'm wondering if I need to look into that

The specific problem seems to be that ``operator delete(void*, unsigned int)`` is not provided for my platform, but ``operator delete(void*)`` is provided [via added source, not built-in to the compiler].

Oh guess what, it links with ``-std=gnu++11``, but not with ``-std=gnu++14``

What does the ``unsigned int`` do? I would need to know, in order to implement something sane. Otherwise I could just assume that calling these destructors means we are about...

@LeStarch: I went through and (somewhat blindly) adjusted the values in your linked wiki page. Here is the current status: ``` [ 99%] Linking CXX executable ../../../bin/ArduinoMega/ArduinoBlink text data bss...

So its been a year, and I have just worked around this bug. Since its not a bug in _your_ repo, the issue can be closed.