mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-25 11:46:31 +00:00
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
|
### Changed
|
||||||
- ESP32 compiler option from `target-align` to `no-target-align` (#21407)
|
- 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
|
- On universal display remove default backlight power if a PWM channel is used for backlight
|
||||||
|
- Berry binary compiled with gcc
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Domoticz re-subscribe on MQTT reconnect. Regression from v13.4.0.3 (#21281)
|
- 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
|
TEST_FLAGS = $(DEBUG_FLAGS) --coverage -fno-omit-frame-pointer -fsanitize=address -fsanitize=undefined
|
||||||
LIBS = -lm
|
LIBS = -lm
|
||||||
TARGET = berry
|
TARGET = berry
|
||||||
CC = clang # install clang!! gcc seems to produce a defect berry binary
|
CC = gcc
|
||||||
MKDIR = mkdir
|
MKDIR = mkdir
|
||||||
LFLAGS =
|
LFLAGS =
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user