* [Buildroot] [PATCH 1/1] package/poco: enable parallel build @ 2026-02-28 21:56 Bernd Kuhls 2026-03-01 12:39 ` Julien Olivain via buildroot 2026-03-06 19:53 ` Thomas Perale via buildroot 0 siblings, 2 replies; 3+ messages in thread From: Bernd Kuhls @ 2026-02-28 21:56 UTC (permalink / raw) To: buildroot 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 <bernd@kuhls.net> --- 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 \ -- 2.47.3 _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/poco: enable parallel build 2026-02-28 21:56 [Buildroot] [PATCH 1/1] package/poco: enable parallel build Bernd Kuhls @ 2026-03-01 12:39 ` Julien Olivain via buildroot 2026-03-06 19:53 ` Thomas Perale via buildroot 1 sibling, 0 replies; 3+ messages in thread From: Julien Olivain via buildroot @ 2026-03-01 12:39 UTC (permalink / raw) To: Bernd Kuhls; +Cc: buildroot On 28/02/2026 22:56, Bernd Kuhls wrote: > 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 <bernd@kuhls.net> Applied to master, thanks. _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/poco: enable parallel build 2026-02-28 21:56 [Buildroot] [PATCH 1/1] package/poco: enable parallel build Bernd Kuhls 2026-03-01 12:39 ` Julien Olivain via buildroot @ 2026-03-06 19:53 ` Thomas Perale via buildroot 1 sibling, 0 replies; 3+ messages in thread From: Thomas Perale via buildroot @ 2026-03-06 19:53 UTC (permalink / raw) To: Bernd Kuhls; +Cc: Thomas Perale, buildroot In reply of: > 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 <bernd@kuhls.net> Applied to 2025.02.x & 2025.11.x. Thanks > --- > 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 \ > -- > 2.47.3 > > _______________________________________________ > buildroot mailing list > buildroot@buildroot.org > https://lists.buildroot.org/mailman/listinfo/buildroot _______________________________________________ buildroot mailing list buildroot@buildroot.org https://lists.buildroot.org/mailman/listinfo/buildroot ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-06 19:53 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-28 21:56 [Buildroot] [PATCH 1/1] package/poco: enable parallel build Bernd Kuhls 2026-03-01 12:39 ` Julien Olivain via buildroot 2026-03-06 19:53 ` Thomas Perale via buildroot
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox