From 5b207209a55587c08dc58edaf1c4867142f8e0a3 Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Fri, 17 May 2024 14:22:10 +0200 Subject: [PATCH] Berry binary compiled with gcc (#21426) --- CHANGELOG.md | 1 + lib/libesp32/berry/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 =