Error while detecting libraries included by ардуино

Bug Description I have a lot of "Error while detecting libraries included by [sketch temp path]/[filename.cpp]" messages during the first phase ("Detecting libraries used") of c...

Bug Description

I have a lot of «Error while detecting libraries included by [sketch temp path]/[filename.cpp]»
messages during the first phase («Detecting libraries used») of compiling Mariln on Arduino platform when «verbose» output is set on.

My Configurations

Arduino-1.8.13,
bare bone Marlin 2.0.7 with default config’s.

Steps to Reproduce

Start Arduino. Open ‘Marlin.ino’ . Do test compile with «verbose output at Compiling» checkbox ON in Settings,

A lot of messages like
Detecting libraries used...
Error while detecting libraries included by C:Users[Username]AppDataLocalTemparduino_build_[build No]sketchsrcMarlinCore.cpp
Error while detecting libraries included by C:Users[Username]AppDataLocalTemparduino_build_[build No]sketchsrcgcodecalibrateG28.cpp
...
would be present.

Additional Information

Further investigation reveals that is due to erroneous macro’ behavior due to unexpected values of some #define:

All such «bugged» files includes ‘Configuration.h’ or ‘Configuration_adv.h’, which in turn contain a set of «flag» empty #defines with a comment at the end of line like
#define ARC_SUPPORT // Disable this feature to save ~3226 bytes
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn't like keepalive messages

The problem it that at «Detecting libraries» phase Arduino calls gcc preprocessor with ‘-CC’ («keep the comments») option.
So, the ‘ARC_SUPPORT’ takes not empty value, but a ‘/* Disable this feature to save ~3226 bytes*/’ one.

When onwards that flag is checked by ‘ENABLED()’ macro like
... #if ENABLED(ARC_SUPPORT) ...
that unexpected value fall through the guts of tons of nested macros, ending with preprocessing error with message like
c:users[username]appdatalocaltemparduino_build_[build No]sketchsrccoremacros.h:185:48: error: pasting "ENA_" and "/* Disable this feature to save ~3226 bytes*/" does not give a valid preprocessing token
#define _ENA_1(O) _ISENA(CAT(_IS,CAT(ENA_, O)))
(the macro wrongly identify this «empty» flag as single-argument variable but can’t process it «value»)

At main, sketch compiling phase -CC option is absent and preprocessing goes smoothly.

The severity of that bug is low, but potentially it will hinder third-part library identification if it #include-s stay lower than config #includes
Also, similar problems can occur not only with ENABLED() but similar macros like BOTH(), ANY(), ALL(), etc.

Possible ways to solve:

  • Move all //comments after empty #define-s to other lines
  • Turn back from #if ENABLED(… to #ifdef varname
  • Rework guts of checking macros to handle such problem

Содержание

  1. [BUG] (2.0.x «Error while detecting libraries included by . » at «Detecting libraries» Arduino compilation phase) #19720
  2. Comments
  3. Bug Description
  4. My Configurations
  5. Steps to Reproduce
  6. Additional Information
  7. [BUG] endstop interrupt issue #15700
  8. Comments
  9. Error while detecting libraries Sd2Card.cpp
  10. marlin 2.0 compilation problems #13156
  11. Comments
  12. Description
  13. ESP32-CAM compiling error #3151
  14. Comments
  15. Hardware:
  16. Code (sorry but i don’t know how to put correctly all the code between inserts):
  17. Description:

[BUG] (2.0.x «Error while detecting libraries included by . » at «Detecting libraries» Arduino compilation phase) #19720

Bug Description

I have a lot of «Error while detecting libraries included by [sketch temp path]/[filename.cpp]»
messages during the first phase («Detecting libraries used») of compiling Mariln on Arduino platform when «verbose» output is set on.

My Configurations

Arduino-1.8.13,
bare bone Marlin 2.0.7 with default config’s.

Steps to Reproduce

Start Arduino. Open ‘Marlin.ino’ . Do test compile with «verbose output at Compiling» checkbox ON in Settings,

A lot of messages like
Detecting libraries used.
Error while detecting libraries included by C:Users[Username]AppDataLocalTemparduino_build_[build No]sketchsrcMarlinCore.cpp
Error while detecting libraries included by C:Users[Username]AppDataLocalTemparduino_build_[build No]sketchsrcgcodecalibrateG28.cpp
.
would be present.

Additional Information

Further investigation reveals that is due to erroneous macro’ behavior due to unexpected values of some #define:

All such «bugged» files includes ‘Configuration.h’ or ‘Configuration_adv.h’, which in turn contain a set of «flag» empty #defines with a comment at the end of line like
#define ARC_SUPPORT // Disable this feature to save

3226 bytes
#define HOST_KEEPALIVE_FEATURE // Disable this if your host doesn’t like keepalive messages

The problem it that at «Detecting libraries» phase Arduino calls gcc preprocessor with ‘-CC’ («keep the comments») option.
So, the ‘ARC_SUPPORT’ takes not empty value, but a ‘/* Disable this feature to save

When onwards that flag is checked by ‘ENABLED()’ macro like
. #if ENABLED(ARC_SUPPORT) .
that unexpected value fall through the guts of tons of nested macros, ending with preprocessing error with message like
c:users[username]appdatalocaltemparduino_build_[build No]sketchsrccoremacros.h:185:48: error: pasting «ENA_» and «/* Disable this feature to save

3226 bytes*/» does not give a valid preprocessing token
#define _ENA_1(O) _ISENA(CAT(_IS,CAT(ENA_, O)))
(the macro wrongly identify this «empty» flag as single-argument variable but can’t process it «value»)

At main, sketch compiling phase -CC option is absent and preprocessing goes smoothly.

The severity of that bug is low, but potentially it will hinder third-part library identification if it #include-s stay lower than config #includes
Also, similar problems can occur not only with ENABLED() but similar macros like BOTH(), ANY(), ALL(), etc.

Possible ways to solve:

  • Move all //comments after empty #define-s to other lines
  • Turn back from #if ENABLED(. to #ifdef varname
  • Rework guts of checking macros to handle such problem

The text was updated successfully, but these errors were encountered:

Источник

[BUG] endstop interrupt issue #15700

ver bugfix-2.0.x
build 9e8021d
I have #define ENDSTOP_INTERRUPTS_FEATURE enabled

when I compile I get this error
Arduino: 1.8.10 Hourly Build 2019/05/07 05:33 (Windows 10), Board: «Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)»

In file included from sketchsrcmoduleendstops.cpp:36:0:

c:usersbillappdatalocaltemparduino_build_168374sketchsrchalhal_avrendstop_interrupts.h: In function ‘void setup_endstop_interrupts()’:

c:usersbillappdatalocaltemparduino_build_168374sketchsrchalhal_avrendstop_interrupts.h:135:7: error: non-constant condition for static assertion

c:usersbillappdatalocaltemparduino_build_168374sketchsrchalhal_avrendstop_interrupts.h:57:57: error: reinterpret_cast from integer to pointer

c:usersbillappdatalocaltemparduino_build_168374sketchsrchalhal_avrendstop_interrupts.h:135:21: note: in expansion of macro ‘digitalPinToPCICR’

exit status 1
Error compiling for board Arduino/Genuino Mega or Mega 2560.

With interrupts disabled it compiles OK. It worked in my last ver bugfix-2.0.x build 9a515cb.
configs.zip

The text was updated successfully, but these errors were encountered:

Got same error messages with Arduino.
No issue compiling with PlatformIO.
So you could try an older version of Arduino or use PlatformIO.

What was the change in Marlin that is now causing this error? It appears that maybe the Y interrupt was not working in Marlin and the fix is now showing an issue with Arduino if it compiles with PlatformIO.

this is what I got from Arduino = it actually does not make total sense, because v1.8.10 worked, then it did not. Their indication is that older versions worked, newer are more complaint. +

In 1.8.10, the compiler (gcc) version was upgraded. The new version is a lot more strict (that is, more standards-compliant) regarding what can be used as a constant expression (i.e. in a static_assert statement). Apparently the Marlin firmware uses an expression that is not a valid constant expression. Looking at the code, this is something that should be fixed either in Marlin (by changing the assert to use something that is constant), or the library that exposes digitalPinToPCICR (which I think is not the Arduino IDE or core itself).

In any case, this is not something that the Arduino IDE can fix — the problem is in code that has always been illegal, it’s just that in older versions gcc did not produce an error and made it work but no longer does so.

Thus I’m closing this issue, I would suggest you report this at the Marlin firmware (pointing to this issue). They might want to take this up with the PCINT library used, but it is probably good to track this at Marlin too.

when viewed in verbose mode, I also get these 2 errors early on:

Error while detecting libraries included by C:UsersBillAppDataLocalTemparduino_build_13146sketchsrcMarlin.cpp

Error while detecting libraries included by C:UsersBillAppDataLocalTemparduino_build_13146sketchsrcfeatureledstempstat.cpp

What is the significance of that?

OK, whatever it is, it has to do with pin 14. If I change X_MIN_PIN to 14 and Y_MIN_PIN to 3, the error changes to X_MIN not an interrupt.

Your original hypothesis is correct. It is a code compliance issue. We should be using something else instead of static_assert or create a special condition.

It isn’t the issue with the pin — all that did was switch the uninterruptible and interrupterable pins.

Your two errors above just indicate that the libraries being included cannot be found, has a different name, or they contain errors.

everything else is defined exactly the same with the static_asserts. Why doesn’t that cause errors on the other pins also?

The diff between the previous build that worked and the last one in the endstop.h file appears to be the use of shortcuts or maybe macros. One part of the error was a failure in expanding a macro.

pin 14 was not a problem in the previous build so why is it a problem now?

The previous build compiled with 1.8.10, which Arduino says was the version that changed the compliance. What is happening does not follow that logic. the previous build should have also failed.

Obviously, pin 14 was capable of being an interrupt pin, so why is it now not capable?

As far as I can tell all the libraries are there. If there is an error in one, I have no clue how to find which one.

Источник

Error while detecting libraries Sd2Card.cpp

Error while detecting libraries Sd2Card.cpp
March 04, 2019 01:04AM
Registered: 3 years ago
Posts: 4

When I compile my marlin I get this

Is this normal? It still compiles. It just seems odd.

Re: Error while detecting libraries Sd2Card.cpp
March 04, 2019 01:41AM
Admin
Registered: 12 years ago
Posts: 6,703

so A your paranoid about people finding out your user name

and B, Yes I get that too, never noticed it before. Doesn’t seem to cause any issues.

«Error while detecting libraries included by /tmp/arduino_build_883237/sketch/Sd2Card.cpp»

Re: Error while detecting libraries Sd2Card.cpp
May 06, 2019 06:13PM
Registered: 4 years ago
Posts: 5

Re: Error while detecting libraries Sd2Card.cpp
November 04, 2019 03:05PM
Registered: 6 years ago
Posts: 3

I would like to add that i am trying to compile the same exact marlin sketch and libs (synchronized directory on my network) on two different machines. Strangely enough, one lists the error described above and the other one does not (both arduino IDE v1.8.10).

Edited 1 time(s). Last edit at 11/04/2019 03:06PM by reaping miner.

Источник

marlin 2.0 compilation problems #13156

Description

can not compile marlin 2.0 some time ago i tested that marlin at early stage and i was able to compile it for 8 bit mks gen l board with arduino 1.9 now i downloaded new arduino beta and new marlin 2.0
and when i try to compile it i get this :

even if i will try to compile it with default configs i get same errors 🙁

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: array subscript out of bound exit status 1 In file included from c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincmarlinconfig.h:41:0, from c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcgcodegcode.h:266, from sketchsrcgcodehostM110.cpp:23: c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: non-constant condition for static assertion static_assert(sanity_arr_3[0] > 0 && sanity_arr_3[1] > 0 && sanity_arr_3[2] > 0 ^ c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: array subscript out of bound In file included from c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincmarlinconfig.h:41:0, from sketchsrcgcodecontrolM280.cpp:23: c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: non-constant condition for static assertion static_assert(sanity_arr_3[0] > 0 && sanity_arr_3[1] > 0 && sanity_arr_3[2] > 0 ^ c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: array subscript out of bound In file included from c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincmarlinconfig.h:41:0, from sketchsrcgcodetemperatureM155.cpp:23: c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: non-constant condition for static assertion static_assert(sanity_arr_3[0] > 0 && sanity_arr_3[1] > 0 && sanity_arr_3[2] > 0 ^ c:usersbogas

1.desappdatalocaltemparduino_build_131356sketchsrcincSanityCheck.h:1972:1: error: array subscript out of bound Błąd kompilacji dla płytki Arduino/Genuino Mega or Mega 2560. Ten raport powinien zawierać więcej informacji jeśli w File -> Preferencje zostanie włączona opcja «Pokaż szczegółowe informacje podczas kompilacji»»>

Can any one point me what to double check ?
i didn’t try platformio ide yet

The text was updated successfully, but these errors were encountered:

Источник

ESP32-CAM compiling error #3151

Hello, i’m trying to test the ESP32-CAM with the Arduino IDE example ESP32 — Camera — CameraWebServer.

Describe your system( Hardware, computer, O/S, core version, environment).
Describe what is failing.
Show the shortest possible code that will duplicate the error.
Show the EXACT error message(it doesn’t work is not enough).
All of this work on your part shows us that you have worked to solve YOUR problem. The more complete your issue posting is, the more likely someone will volunteer their time to help you.

Hardware:

Board: ESP32-CAM
Core Installation version: 1.0.2
IDE name: Arduino IDE 1.8.9
Flash Frequency: 80MHz
PSRAM enabled: —
Upload Speed: ?115200?
Computer OS: Mac OSX

Code (sorry but i don’t know how to put correctly all the code between inserts):

#include «esp_camera.h»
#include

//
// WARNING. Make sure that you have either selected ESP32 Wrover Module,
// or another board which has PSRAM enabled
//

// Select camera model
//#define CAMERA_MODEL_WROVER_KIT
//#define CAMERA_MODEL_ESP_EYE
//#define CAMERA_MODEL_M5STACK_PSRAM
//#define CAMERA_MODEL_M5STACK_WIDE
#define CAMERA_MODEL_AI_THINKER

const char* ssid = «»;
const char password = «*»;

void setup() <
Serial.begin(115200);
Serial.setDebugOutput(true);
Serial.println();

camera_config_t config;
config.ledc_channel = LEDC_CHANNEL_0;
config.ledc_timer = LEDC_TIMER_0;
config.pin_d0 = Y2_GPIO_NUM;
config.pin_d1 = Y3_GPIO_NUM;
config.pin_d2 = Y4_GPIO_NUM;
config.pin_d3 = Y5_GPIO_NUM;
config.pin_d4 = Y6_GPIO_NUM;
config.pin_d5 = Y7_GPIO_NUM;
config.pin_d6 = Y8_GPIO_NUM;
config.pin_d7 = Y9_GPIO_NUM;
config.pin_xclk = XCLK_GPIO_NUM;
config.pin_pclk = PCLK_GPIO_NUM;
config.pin_vsync = VSYNC_GPIO_NUM;
config.pin_href = HREF_GPIO_NUM;
config.pin_sscb_sda = SIOD_GPIO_NUM;
config.pin_sscb_scl = SIOC_GPIO_NUM;
config.pin_pwdn = PWDN_GPIO_NUM;
config.pin_reset = RESET_GPIO_NUM;
config.xclk_freq_hz = 20000000;
config.pixel_format = PIXFORMAT_JPEG;
//init with high specs to pre-allocate larger buffers
if(psramFound()) <
config.frame_size = FRAMESIZE_UXGA;
config.jpeg_quality = 10;
config.fb_count = 2;
> else <
config.frame_size = FRAMESIZE_SVGA;
config.jpeg_quality = 12;
config.fb_count = 1;
>

#if defined(CAMERA_MODEL_ESP_EYE)
pinMode(13, INPUT_PULLUP);
pinMode(14, INPUT_PULLUP);
#endif

// camera init
esp_err_t err = esp_camera_init(&config);
if (err != ESP_OK) <
Serial.printf(«Camera init failed with error 0x%x», err);
return;
>

sensor_t * s = esp_camera_sensor_get();
//initial sensors are flipped vertically and colors are a bit saturated
if (s->id.PID == OV3660_PID) <
s->set_vflip(s, 1);//flip it back
s->set_brightness(s, 1);//up the blightness just a bit
s->set_saturation(s, -2);//lower the saturation
>
//drop down frame size for higher initial frame rate
s->set_framesize(s, FRAMESIZE_QVGA);

#if defined(CAMERA_MODEL_M5STACK_WIDE)
s->set_vflip(s, 1);
s->set_hmirror(s, 1);
#endif

while (WiFi.status() != WL_CONNECTED) <
delay(500);
Serial.print(«.»);
>
Serial.println(«»);
Serial.println(«WiFi connected»);

Serial.print(«Camera Ready! Use ‘http://»);
Serial.print(WiFi.localIP());
Serial.println(«‘ to connect»);
>

void loop() <
// put your main code here, to run repeatedly:
delay(10000);
>

Description:

In board I select ESP32 Wrover Module (tested too with AI Thinker ESP32-CAM)
In code tested too with option:

When i try to compile i get this error:

.
Error while detecting libraries included by /var/folders/np/lkh4j9553yv6n0zmk4y___c40000gn/T/arduino_build_924566/sketch/ESP32-CameraWebServer.ino.cpp
.
Error while detecting libraries included by /var/folders/np/lkh4j9553yv6n0zmk4y___c40000gn/T/arduino_build_924566/sketch/app_httpd.cpp
.
cc1plus: internal compiler error: Illegal instruction: 4
libbacktrace could not find executable to open
Please submit a full bug report,
with preprocessed source if appropriate.
See http://gcc.gnu.org/bugs.html for instructions.
exit status 1
Error compiling for board ESP32 Wrover Module.

I read something about old Computer CPU and toolchain but i have not idea.

I apreciate some help.

The text was updated successfully, but these errors were encountered:

Источник

Arduino: 1.8.10 (Windows 10), Плата:»Arduino/Genuino Mega or Mega 2560, ATmega2560 (Mega 2560)»

C:arduino-1.8.10arduino-builder -dump-prefs -logger=machine -hardware C:arduino-1.8.10hardware -tools C:arduino-1.8.10tools-builder -tools C:arduino-1.8.10hardwaretoolsavr -built-in-libraries C:arduino-1.8.10libraries -libraries C:UsersUserDocumentsArduinolibraries -fqbn=arduino:avr:mega:cpu=atmega2560 -vid-pid=1A86_7523 -ide-version=10810 -build-path C:UsersUserAppDataLocalTemparduino_build_433240 -warnings=none -build-cache C:UsersUserAppDataLocalTemparduino_cache_770244 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avrdude.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.arduinoOTA.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:arduino-1.8.10hardwaretoolsavr -verbose C:buildlog-lasercutter-marlin-masterMarlinMarlin.ino

C:arduino-1.8.10arduino-builder -compile -logger=machine -hardware C:arduino-1.8.10hardware -tools C:arduino-1.8.10tools-builder -tools C:arduino-1.8.10hardwaretoolsavr -built-in-libraries C:arduino-1.8.10libraries -libraries C:UsersUserDocumentsArduinolibraries -fqbn=arduino:avr:mega:cpu=atmega2560 -vid-pid=1A86_7523 -ide-version=10810 -build-path C:UsersUserAppDataLocalTemparduino_build_433240 -warnings=none -build-cache C:UsersUserAppDataLocalTemparduino_cache_770244 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.avr-gcc.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avr-gcc-7.3.0-atmel3.6.1-arduino5.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avrdude.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.avrdude-6.3.0-arduino17.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.arduinoOTA.path=C:arduino-1.8.10hardwaretoolsavr -prefs=runtime.tools.arduinoOTA-1.3.0.path=C:arduino-1.8.10hardwaretoolsavr -verbose C:buildlog-lasercutter-marlin-masterMarlinMarlin.ino

Using board ‘mega’ from platform in folder: C:arduino-1.8.10hardwarearduinoavr

Using core ‘arduino’ from platform in folder: C:arduino-1.8.10hardwarearduinoavr

Detecting libraries used…

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin.ino.cpp» -o nul

Alternatives for U8glib.h: [U8glib]

ResolveLibrary(U8glib.h)

  -> candidates: [U8glib]

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin.ino.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Base64.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\ConfigurationStore.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\LiquidCrystalRus.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\MarlinSerial.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin_main.cpp» -o nul

Error while detecting libraries included by C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin_main.cpp

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Sd2Card.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdBaseFile.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFatUtil.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFile.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdVolume.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Servo.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\cardreader.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\laser.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\motion_control.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\planner.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\stepper.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\temperature.cpp» -o nul

Error while detecting libraries included by C:UsersUserAppDataLocalTemparduino_build_433240sketchtemperature.cpp

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\ultralcd.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\watchdog.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\U8glib.cpp» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\chessengine.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_bitmap.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_circle.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_clip.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_api.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_api_16gr.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_common.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_fast_parallel.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_hw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_no_en_parallel.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_parallel.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_port_d_wr.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_ssd_i2c.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_st7920_hw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_st7920_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_std_sw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_sw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_arduino_t6963.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_atmega_hw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_atmega_parallel.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_atmega_st7920_hw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_atmega_st7920_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_atmega_sw_spi.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_i2c.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_io.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_com_null.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_cursor.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_delay.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_flipdisc_2x7.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_gprof.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ili9325d_320x240.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ks0108_128x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_lc7981_160x80.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_lc7981_240x128.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_lc7981_240x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_lc7981_320x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_null.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_pcd8544_84x48.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_pcf8812_96x65.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_sbn1661_122x32.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1306_128x32.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1306_128x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1309_128x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1322_nhd31oled_bw.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1322_nhd31oled_gr.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1325_nhd27oled_bw.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1325_nhd27oled_bw_new.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1325_nhd27oled_gr.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1325_nhd27oled_gr_new.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_ssd1327_96x96_gr.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_64128n.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_dogm128.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_dogm132.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_lm6059.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_lm6063.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_nhd_c12832.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7565_nhd_c12864.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7687_c144mvgd.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7920_128x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7920_192x32.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_st7920_202x32.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_t6963_128x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_t6963_240x128.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_t6963_240x64.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_tls8204_84x48.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_uc1610_dogxl160.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_uc1701_dogs102.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_dev_uc1701_mini12864.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_ellipse.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_font.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_font_data.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_line.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_ll_api.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_page.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb14v1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb16h1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb16h2.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb16v1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb16v2.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb32h1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8h1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8h1f.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8h2.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8h8.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8v1.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_pb8v2.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_rect.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_rot.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_scale.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_state.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_u16toa.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_u8toa.c» -o nul

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «-IC:\arduino-1.8.10\libraries\U8glib\utility» «C:\arduino-1.8.10\libraries\U8glib\utility\u8g_virtual_screen.c» -o nul

Generating function prototypes…

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin.ino.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\preproc\ctags_target_for_gcc_minus_e.cpp»

«C:\arduino-1.8.10\tools-builder\ctags\5.8-arduino11/ctags» -u —language-force=c++ -f — —c++-kinds=svpf —fields=KSTtzns —line-directives «C:\Users\User\AppData\Local\Temp\arduino_build_433240\preproc\ctags_target_for_gcc_minus_e.cpp»

Компиляция скетча…

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Base64.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Base64.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin.ino.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin.ino.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\ConfigurationStore.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\ConfigurationStore.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\LiquidCrystalRus.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\LiquidCrystalRus.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\MarlinSerial.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\MarlinSerial.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin_main.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Marlin_main.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Sd2Card.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\Sd2Card.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdBaseFile.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdBaseFile.cpp.o»

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdBaseFile.cpp:24:0:

SdBaseFile.h:38:8: error: using typedef-name ‘fpos_t’ after ‘struct’

 struct fpos_t {

        ^~~~~~

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin.h:10:0,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdBaseFile.cpp:21:

c:arduino-1.8.10hardwaretoolsavravrincludestdio.h:950:33: note: ‘fpos_t’ has a previous declaration here

 __extension__ typedef long long fpos_t;

                                 ^~~~~~

C:UsersUserAppDataLocalTemparduino_build_433240sketchSdBaseFile.cpp: In member function ‘void SdBaseFile::getpos(fpos_t*)’:

SdBaseFile.cpp:298:8: error: request for member ‘position’ in ‘* pos’, which is of non-class type ‘fpos_t {aka long long int}’

   pos->position = curPosition_;

        ^~~~~~~~

SdBaseFile.cpp:299:8: error: request for member ‘cluster’ in ‘* pos’, which is of non-class type ‘fpos_t {aka long long int}’

   pos->cluster = curCluster_;

        ^~~~~~~

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdFile.h:27:0,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchcardreader.h:8,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin_main.cpp:37:

SdBaseFile.h:38:8: error: using typedef-name ‘fpos_t’ after ‘struct’

 struct fpos_t {

        ^~~~~~

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin.h:10:0,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin_main.cpp:30:

c:arduino-1.8.10hardwaretoolsavravrincludestdio.h:950:33: note: ‘fpos_t’ has a previous declaration here

 __extension__ typedef long long fpos_t;

                                 ^~~~~~

C:UsersUserAppDataLocalTemparduino_build_433240sketchSdBaseFile.cpp: In member function ‘void SdBaseFile::setpos(fpos_t*)’:

SdBaseFile.cpp:1496:23: error: request for member ‘position’ in ‘* pos’, which is of non-class type ‘fpos_t {aka long long int}’

   curPosition_ = pos->position;

                       ^~~~~~~~

SdBaseFile.cpp:1497:22: error: request for member ‘cluster’ in ‘* pos’, which is of non-class type ‘fpos_t {aka long long int}’

   curCluster_ = pos->cluster;

                      ^~~~~~~

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFatUtil.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFatUtil.cpp.o»

«C:\arduino-1.8.10\hardware\tools\avr/bin/avr-g++» -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -MMD -flto -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10810 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR «-IC:\arduino-1.8.10\hardware\arduino\avr\cores\arduino» «-IC:\arduino-1.8.10\hardware\arduino\avr\variants\mega» «-IC:\arduino-1.8.10\libraries\U8glib» «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFile.cpp» -o «C:\Users\User\AppData\Local\Temp\arduino_build_433240\sketch\SdFile.cpp.o»

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdFile.h:27:0,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdFile.cpp:23:

SdBaseFile.h:38:8: error: using typedef-name ‘fpos_t’ after ‘struct’

 struct fpos_t {

        ^~~~~~

In file included from C:UsersUserAppDataLocalTemparduino_build_433240sketchMarlin.h:10:0,

                 from C:UsersUserAppDataLocalTemparduino_build_433240sketchSdFile.cpp:20:

c:arduino-1.8.10hardwaretoolsavravrincludestdio.h:950:33: note: ‘fpos_t’ has a previous declaration here

 __extension__ typedef long long fpos_t;

                                 ^~~~~~

Несколько библиотек найдено для «U8glib.h»

 Используется: C:arduino-1.8.10librariesU8glib

Используем библиотеку U8glib в папке: C:arduino-1.8.10librariesU8glib (legacy)

exit status 1

using typedef-name ‘fpos_t’ after ‘struct’

my arduino ide Until yesterday it worked properly . but today All previous projects dont compiling and all of them have one error : Error compiling for board
and It’s no different that Which board I choose in all of board i have this error .
please help me .

image link : http://uupload.ir/files/6hjr_capture1.jpg
error : * Error while detecting libraries included by C:Usersali_mAppDataLocalTemparduino_build_706504sketchtimer.ino.cpp

  • xtensa-lx106-elf-g++: error: CreateProcess: No such file or directory

  • Error compiling for board NodeMCU 1.0 (ESP-12E Module).

  • arduino-ide
  • compilation-errors

asked May 20, 2019 at 22:04

Ali Mokhtari's user avatar

4

  • is it just ESP based boards that you can’t compile for?

    May 21, 2019 at 5:19

  • No for all of the boards this is hapen

    May 21, 2019 at 6:01

  • Can you show the error for an arduino board

    May 21, 2019 at 6:05

1 Answer

I hope this link helps you or please try a fresh install.

answered May 21, 2019 at 23:48

Yana 's user avatar

Yana Yana

512 bronze badges

Dear readers
I have a problem compiling Blink for STM32F103 controllers using IDE 1.8.12. It does works normal for esp8266-12E modules and ATmega328 Nano/Uno bords, no problems. I already have done a complete reinstall of the IDE but no success.
The problem is around a file that is created during compile time called SrcWrapper.CPP which has only one line which is : #include <SrcWrapper.h>
Why this file is needed is unclear to me but since its create it is complied and needed by the linker.

The file is created during compile time with this line
cmd /c echo #include ^<SrcWrapper.h^> > «C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/SrcWrapper.cpp»

At a certain point it compiles this SrcWrapper.cpp file and needs to locate the SrcWrapper.h file and thats were the process goes wrong. I get this message : Error while detecting libraries included by C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_build_332441sketchSrcWrapper.cpp

It can’t locate the SrcWrapper.h file however this file does exist in the core library files!!!.

I checked at that location were the CPP file is stored and and it does exist. I checked (file search) for the SrcWrapper.h in the Arduino installation directory and it didn’t. I checked the arduino15 library at C:UserswogooAppDataLocalArduino15 and found one SrcWrapper.h at this location.
C:UserswogooAppDataLocalArduino15packagesSTM32hardwarestm321.8.0librariesSrcWrappersrc

My question is am I the only one with this SrcWrapper problem or is this a bug in the new IDE 1.8.12
In the past it all worked with a lower IDE version number.
Can someone help me to solve this problem, i have spend days now to figure out this problem but without success :cry:
Thanks Oscar Goos

Below the complete compiler out put

Code: Select all

D:Program filesArduinoarduino-builder -dump-prefs -logger=machine -hardware D:Program filesArduinohardware -hardware C:UserswogooAppDataLocalArduino15packages -tools D:Program filesArduinotools-builder -tools D:Program filesArduinohardwaretoolsavr -tools C:UserswogooAppDataLocalArduino15packages -built-in-libraries D:Program filesArduinolibraries -libraries D:UserswogoosDoc LibrarySoftware_Arm_CortexProjects_STM32F1libraries -fqbn=STM32:stm32:GenF1:pnum=BLUEPILL_F103C8B,upload_method=swdMethod,xserial=generic,usb=none,xusb=FS,opt=osstd,rtlib=nano -ide-version=10812 -build-path C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_build_332441 -warnings=none -build-cache C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_cache_609477 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.CMSIS.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsCMSIS5.5.1 -prefs=runtime.tools.CMSIS-5.5.1.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsCMSIS5.5.1 -prefs=runtime.tools.STM32Tools.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsSTM32Tools1.3.2 -prefs=runtime.tools.STM32Tools-1.3.2.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsSTM32Tools1.3.2 -prefs=runtime.tools.xpack-arm-none-eabi-gcc.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsxpack-arm-none-eabi-gcc9.2.1-1.1 -prefs=runtime.tools.xpack-arm-none-eabi-gcc-9.2.1-1.1.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsxpack-arm-none-eabi-gcc9.2.1-1.1 -verbose D:Program filesArduinoexamples1.BasicsBlinkBlink.ino
D:Program filesArduinoarduino-builder -compile -logger=machine -hardware D:Program filesArduinohardware -hardware C:UserswogooAppDataLocalArduino15packages -tools D:Program filesArduinotools-builder -tools D:Program filesArduinohardwaretoolsavr -tools C:UserswogooAppDataLocalArduino15packages -built-in-libraries D:Program filesArduinolibraries -libraries D:UserswogoosDoc LibrarySoftware_Arm_CortexProjects_STM32F1libraries -fqbn=STM32:stm32:GenF1:pnum=BLUEPILL_F103C8B,upload_method=swdMethod,xserial=generic,usb=none,xusb=FS,opt=osstd,rtlib=nano -ide-version=10812 -build-path C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_build_332441 -warnings=none -build-cache C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_cache_609477 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.CMSIS.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsCMSIS5.5.1 -prefs=runtime.tools.CMSIS-5.5.1.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsCMSIS5.5.1 -prefs=runtime.tools.STM32Tools.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsSTM32Tools1.3.2 -prefs=runtime.tools.STM32Tools-1.3.2.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsSTM32Tools1.3.2 -prefs=runtime.tools.xpack-arm-none-eabi-gcc.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsxpack-arm-none-eabi-gcc9.2.1-1.1 -prefs=runtime.tools.xpack-arm-none-eabi-gcc-9.2.1-1.1.path=C:UserswogooAppDataLocalArduino15packagesSTM32toolsxpack-arm-none-eabi-gcc9.2.1-1.1 -verbose D:Program filesArduinoexamples1.BasicsBlinkBlink.ino
Using board 'GenF1' from platform in folder: C:UserswogooAppDataLocalArduino15packagesSTM32hardwarestm321.8.0
Using core 'arduino' from platform in folder: C:UserswogooAppDataLocalArduino15packagesSTM32hardwarestm321.8.0
cmd /c if not exist "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\sketch" mkdir "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\sketch"
cmd /c if not exist "D:\Program files\Arduino\examples\01.Basics\Blink/build_opt.h" type NUL > "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/build_opt.h"
cmd /c echo #include ^<SrcWrapper.h^> > "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/SrcWrapper.cpp"
Detecting libraries used...
"C:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\xpack-arm-none-eabi-gcc\9.2.1-1.1/bin/arm-none-eabi-g++" -mcpu=cortex-m3 -mthumb "@C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/build_opt.h" -c -Os -w -std=gnu++14 -ffunction-sections -fdata-sections -nostdlib -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit "-ID:\Program files\Arduino\examples\01.Basics\Blink" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/avr" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/LL" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/hid" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/cdc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Src" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/STM32F1xx" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src" -w -x c++ -E -CC -DSTM32F1xx -DARDUINO=10812 -DARDUINO_BLUEPILL_F103C8 -DARDUINO_ARCH_STM32 "-DBOARD_NAME="BLUEPILL_F103C8"" -DSTM32F103xB -DHAL_UART_MODULE_ENABLED "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/Core/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/DSP/Include" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\variants\PILL_F103XX" "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\sketch\Blink.ino.cpp" -o nul
"C:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\xpack-arm-none-eabi-gcc\9.2.1-1.1/bin/arm-none-eabi-g++" -mcpu=cortex-m3 -mthumb "@C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/build_opt.h" -c -Os -w -std=gnu++14 -ffunction-sections -fdata-sections -nostdlib -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit "-ID:\Program files\Arduino\examples\01.Basics\Blink" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/avr" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/LL" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/hid" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/cdc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Src" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/STM32F1xx" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src" -w -x c++ -E -CC -DSTM32F1xx -DARDUINO=10812 -DARDUINO_BLUEPILL_F103C8 -DARDUINO_ARCH_STM32 "-DBOARD_NAME="BLUEPILL_F103C8"" -DSTM32F103xB -DHAL_UART_MODULE_ENABLED "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/Core/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/DSP/Include" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\variants\PILL_F103XX" "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\sketch\SrcWrapper.cpp" -o nul
Error while detecting libraries included by C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_build_332441sketchSrcWrapper.cpp
Generating function prototypes...
"C:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\xpack-arm-none-eabi-gcc\9.2.1-1.1/bin/arm-none-eabi-g++" -mcpu=cortex-m3 -mthumb "@C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441/sketch/build_opt.h" -c -Os -w -std=gnu++14 -ffunction-sections -fdata-sections -nostdlib -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -fno-use-cxa-atexit "-ID:\Program files\Arduino\examples\01.Basics\Blink" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/avr" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/LL" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/hid" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino/stm32/usb/cdc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/STM32F1xx_HAL_Driver/Src" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/STM32F1xx" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Inc" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Middlewares/ST/STM32_USB_Device_Library/Core/Src" -w -x c++ -E -CC -DSTM32F1xx -DARDUINO=10812 -DARDUINO_BLUEPILL_F103C8 -DARDUINO_ARCH_STM32 "-DBOARD_NAME="BLUEPILL_F103C8"" -DSTM32F103xB -DHAL_UART_MODULE_ENABLED "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/Core/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Include/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\system/Drivers/CMSIS/Device/ST/STM32F1xx/Source/Templates/gcc/" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\tools\CMSIS\5.5.1/CMSIS/DSP/Include" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\cores\arduino" "-IC:\Users\wogoo\AppData\Local\Arduino15\packages\STM32\hardware\stm32\1.8.0\variants\PILL_F103XX" "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\sketch\Blink.ino.cpp" -o "C:\Users\wogoo\AppData\Local\Temp\FreeCommanderPortableTemp\arduino_build_332441\preproc\ctags_target_for_gcc_minus_e.cpp"
open C:UserswogooAppDataLocalTempFreeCommanderPortableTemparduino_build_332441preprocctags_target_for_gcc_minus_e.cpp: The system cannot find the file specified.
Error compiling for board Generic STM32F1 series.

by wogoos » Tue Jun 16, 2020 5:23 am

I solved it after a hell of a search
My computer runs Comodo a firewall virus protection system that has the capability to sand box suspicious applications. I discovered that various IDE application were labeled not trusted and probably were running in a sandbox. I made them trusted applications and then everything run as planned.

So for the ones who works with protections systems like this careful check your application trust levels and make sure they are trusted.

Go to full post

v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

marlin 1.1.9 probe setting

hi every body from france
a friend have set the new marlin for my gt260 rev a+, because the original marlin worked with ide 1.0.1, and this ide have troubleshooting on my pc

we have set the marlin 1.1.9 here
http://marlinfw.org/meta/download/

all work fine, juste the bl touch probe is not set and activate and i don t know where set that, because it s different than the 1.0.1 marlin
someone can show me where we need to set the pin and the bl touch?


v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

Re: marlin 1.1.9 probe setting

Post

by v tec » Tue Oct 09, 2018 4:38 am

nobody can help me please?


v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

Re: marlin 1.1.9 probe setting

Post

by v tec » Fri Oct 12, 2018 5:12 am

nobody use bl touch….


User avatar

_kaktus_

Site Admin
Posts: 1260
Joined: Fri Dec 15, 2017 10:06 pm
Location: PL
Contact:

Re: marlin 1.1.9 probe setting

Post

by _kaktus_ » Fri Oct 12, 2018 11:58 am

Hello.
:mrgreen:

You have not written what model of printer you own. You misspelled the controller board type …
;)

On the forum I help to use the rod, I don’t give fish.
Geeetech Prusa I3 M201 Dual extruder Mixcolor 3D printer, bought 2017-12-19, already built, in the cognitive and improvement phase
Geeetech filament, ABS only
Geeetech 3D WiFi Module for 3D Printer, bought 2018-04-15, He got a new life, and still lies in a drawer.
Positively frenzied customer of Getech Technology.


v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

Re: marlin 1.1.9 probe setting

Post

by v tec » Sat Oct 13, 2018 2:50 am

yes sorry

it s a prusa i3

and gt2560 rev a+


User avatar

_kaktus_

Site Admin
Posts: 1260
Joined: Fri Dec 15, 2017 10:06 pm
Location: PL
Contact:

Re: marlin 1.1.9 probe setting

Post

by _kaktus_ » Sat Oct 13, 2018 12:54 pm

I also have Prus I3. :lol:
But I suspect that we don’t have the same model.
This name refers to the printer series and not to a specific model.

;)

On the forum I help to use the rod, I don’t give fish.
Geeetech Prusa I3 M201 Dual extruder Mixcolor 3D printer, bought 2017-12-19, already built, in the cognitive and improvement phase
Geeetech filament, ABS only
Geeetech 3D WiFi Module for 3D Printer, bought 2018-04-15, He got a new life, and still lies in a drawer.
Positively frenzied customer of Getech Technology.



User avatar

_kaktus_

Site Admin
Posts: 1260
Joined: Fri Dec 15, 2017 10:06 pm
Location: PL
Contact:

Re: marlin 1.1.9 probe setting

Post

by _kaktus_ » Sat Oct 13, 2018 10:06 pm

Hello.
:mrgreen:

I’m surprised by the fact that you don’t know the model of the printer you bought.

Is it that:
Geeetech Prusa I3 Pro W Printer DIY kit

If so, start reading the relevant forum section. ;)

On the forum I help to use the rod, I don’t give fish.
Geeetech Prusa I3 M201 Dual extruder Mixcolor 3D printer, bought 2017-12-19, already built, in the cognitive and improvement phase
Geeetech filament, ABS only
Geeetech 3D WiFi Module for 3D Printer, bought 2018-04-15, He got a new life, and still lies in a drawer.
Positively frenzied customer of Getech Technology.


v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

Re: marlin 1.1.9 probe setting

Post

by v tec » Sun Oct 14, 2018 6:25 pm

yes I know it’s this model, but today no matter the model, since I changed a lot of things, all motion work perfectly, heater work, what matters today is the map model (gt2560 rev a +) and the probe (bl touch)

i want just find the settings to activate it in the marlin 1.1.9 on the good pin

because the old one was causing me problems with the ide 1.0.1

quite simply, my technical english is very limited for find all parameter myself


v tec

Posts: 10
Joined: Sat May 26, 2018 10:41 pm

Re: marlin 1.1.9 probe setting

Post

by v tec » Tue Oct 16, 2018 4:26 am

i have apply this changement

Code: Select all

#define Z_PROBE_SERVO_NR 0   // adrien Defaults to SERVO 0 connector.
#define Z_SERVO_ANGLES {70,0}  // adrien Z Servo Deploy and Stow angles

#define BLTOUCH /adrien
#define SERVO0_PIN 11 /adrien
#if ENABLED(BLTOUCH) /adrien
  #define BLTOUCH_DELAY 375   // adrien(ms) Enable and increase if needed
#endif

#define X_PROBE_OFFSET_FROM_EXTRUDER -23  // adrien X offset: -left  +right  [of the nozzle]
#define Y_PROBE_OFFSET_FROM_EXTRUDER 0 // Y offset: -front +behind [the nozzle]
#define Z_PROBE_OFFSET_FROM_EXTRUDER -1   // Z offset: -below +above  [the nozzle

#define MULTIPLE_PROBING 2 /adrien
//#define MIN_SOFTWARE_ENDSTOPS  /adrien
#define Z_SAFE_HOMING /adrien
#define Z_MIN_ENDSTOP_INVERTING true // set to true to invert the logic of the endstop.  adrien
#define NUM_SERVOS 3 // Servo index starts with 0 for M280 command adrien 

but impossible to upload it, i have lot of error…

for exemple:

Code: Select all

Error while detecting libraries included by C:UsersadrienAppDataLocalTemparduino_build_571543sketchstepper_indirection.cpp
"C:\Program Files\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10807 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR "-IC:\Program Files\Arduino\hardware\arduino\avr\cores\arduino" "-IC:\Program Files\Arduino\hardware\arduino\avr\variants\mega" "C:\Users\adrien\AppData\Local\Temp\arduino_build_571543\sketch\stopwatch.cpp" -o nul
Error while detecting libraries included by C:UsersadrienAppDataLocalTemparduino_build_571543sketchstopwatch.cpp
"C:\Program Files\Arduino\hardware\tools\avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -Wno-error=narrowing -flto -w -x c++ -E -CC -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=10807 -DARDUINO_AVR_MEGA2560


Понравилась статья? Поделить с друзьями:
  • Error while decoding the request сбис
  • Error while creating node from template could not find dynamips
  • Error while creating lua virtual machine uopilot ошибка
  • Error while creating lua virtual machine uopilot как исправить
  • Error while creating license dat opcom