mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-13 23:17:03 +03:00
Some instabilities to tackle. BT Ring buffer were taken out. DAC is crashing with stack overflow. So does A2DP after playing for a little while. This needs to be investigated.
19 lines
641 B
Makefile
19 lines
641 B
Makefile
#
|
|
# "main" pseudo-component makefile.
|
|
#
|
|
# (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.)
|
|
CFLAGS += -O3 -DPOSIX -DLINKALL -DLOOPBACK -DNO_FAAD -DEMBEDDED -DTREMOR_ONLY -DBYTES_PER_FRAME=4 \
|
|
-I$(COMPONENT_PATH)/../components/codecs/inc \
|
|
-I$(COMPONENT_PATH)/../components/codecs/inc/mad \
|
|
-I$(COMPONENT_PATH)/../components/codecs/inc/alac \
|
|
-I$(COMPONENT_PATH)/../components/codecs/inc/helix-aac \
|
|
-I$(COMPONENT_PATH)/../components/codecs/inc/vorbis \
|
|
-I$(COMPONENT_PATH)/../components/platform_esp32
|
|
|
|
LDFLAGS += -s
|
|
|
|
# -I$(COMPONENT_PATH)/../components/codecs/inc/faad2
|
|
|
|
|
|
|