From db46ad8ef2c4e4218183f497eca764f1de00ef1f Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Thu, 17 Jun 2021 11:09:56 +0800 Subject: [PATCH] [log]: excluding log_linux.c correctly now * log_linux.c needs to be excluded generally in make since Linux target isn't supported when building with make Closes https://github.com/espressif/esp-idf/issues/7155 --- components/log/component.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/log/component.mk b/components/log/component.mk index 94e53506e2..9725ccc561 100644 --- a/components/log/component.mk +++ b/components/log/component.mk @@ -11,4 +11,6 @@ else COMPONENT_OBJEXCLUDE := log_freertos.o endif +COMPONENT_OBJEXCLUDE += log_linux.o + COMPONENT_ADD_LDFRAGMENTS += linker.lf