Berry binary compiled with gcc (#21426)

This commit is contained in:
s-hadinger 2024-05-17 14:22:10 +02:00 committed by GitHub
parent 0d225839da
commit 5b207209a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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 =