mirror of https://github.com/arendst/Tasmota.git
Berry binary compiled with gcc (#21426)
This commit is contained in:
parent
0d225839da
commit
5b207209a5
|
@ -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)
|
||||
|
|
|
@ -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 =
|
||||
|
||||
|
|
Loading…
Reference in New Issue