From 0b9e550c704fd59684ecda7ca6b71e851e30aaa6 Mon Sep 17 00:00:00 2001 From: Michael Panzlaff Date: Mon, 28 Oct 2024 11:52:21 +0000 Subject: [PATCH] Fix build error with sysfeatures disabled --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 35c667a87..a54b7351d 100644 --- a/Makefile +++ b/Makefile @@ -201,6 +201,7 @@ else SYSFEATURE_OBJ = $(patsubst $(SRC_DIR)/%.c, $(BUILD_DIR)/%.o,$(wildcard $(SRC_DIR)/sysFeatures*.c)) OBJ := $(filter-out $(SYSFEATURE_OBJ), $(OBJ)) OBJ := $(filter-out $(BUILD_DIR)/likwid_device.o,$(OBJ)) +OBJ := $(filter-out $(BUILD_DIR)/devstring.o,$(OBJ)) endif CPPFLAGS := $(CPPFLAGS) $(DEFINES) $(INCLUDES)