From e379349510cc79c33ea0b5f60aba7e99e781106a Mon Sep 17 00:00:00 2001 From: Bernd Kuhls Date: Sat, 28 Feb 2026 22:56:36 +0100 Subject: [PATCH] package/poco: enable parallel build Buildroot commit 126162b9159a185ac1897db1a9956f0379fc1428 disabled parallel builds in Jan 2017 due to a bug which was fixed upstream in Nov 2017: https://github.com/pocoproject/poco/commit/1724e8ba53d05ce688dcdb5176b128f116af2682#diff-76ed074a9305c04054cdebb9e9aad2d818052b07091de1f20cad0bbac34ffb52 https://github.com/pocoproject/poco/commit/076dd9679bf2e77f1df219287f0eb42ea36b7371 Building with -j100 worked. Signed-off-by: Bernd Kuhls Signed-off-by: Julien Olivain (cherry picked from commit 2a1e6376c1718bf8a22ee53755d7e5da23babc6c) Signed-off-by: Thomas Perale --- package/poco/poco.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package/poco/poco.mk b/package/poco/poco.mk index a471a24adf..fe1dd29855 100644 --- a/package/poco/poco.mk +++ b/package/poco/poco.mk @@ -77,9 +77,8 @@ define POCO_CONFIGURE_CMDS --no-samples) endef -# Use $(MAKE1) to avoid failures on heavilly parallel machines (e.g. -j25) define POCO_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE1) POCO_TARGET_OSARCH=$(ARCH) CROSS_COMPILE=$(TARGET_CROSS) \ + $(TARGET_MAKE_ENV) $(MAKE) POCO_TARGET_OSARCH=$(ARCH) CROSS_COMPILE=$(TARGET_CROSS) \ POCO_MYSQL_INCLUDE=$(STAGING_DIR)/usr/include/mysql \ POCO_MYSQL_LIB=$(STAGING_DIR)/usr/lib/mysql \ POCO_PGSQL_INCLUDE=$(STAGING_DIR)/usr/include/postgresql \