diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f8e935de..320237e81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file. ### Changed - ESP32 compiler option from `target-align` to `no-target-align` (#21407) - On universal display remove default backlight power if a PWM channel is used for backlight +- Berry binary compiled with gcc ### Fixed - Domoticz re-subscribe on MQTT reconnect. Regression from v13.4.0.3 (#21281) diff --git a/lib/libesp32/berry/Makefile b/lib/libesp32/berry/Makefile index ee3e32847..2d33069fb 100755 --- a/lib/libesp32/berry/Makefile +++ b/lib/libesp32/berry/Makefile @@ -3,7 +3,7 @@ DEBUG_FLAGS = -O0 -g -DBE_DEBUG TEST_FLAGS = $(DEBUG_FLAGS) --coverage -fno-omit-frame-pointer -fsanitize=address -fsanitize=undefined LIBS = -lm TARGET = berry -CC = clang # install clang!! gcc seems to produce a defect berry binary +CC = gcc MKDIR = mkdir LFLAGS =