Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Robert Yang <liezhi.yang@windriver.com>
To: <openembedded-core@lists.openembedded.org>
Subject: [PATCH 00/12] meta: fix and enable parallel build
Date: Fri, 13 Feb 2015 00:15:24 -0800	[thread overview]
Message-ID: <cover.1423808841.git.liezhi.yang@windriver.com> (raw)

Hello,

I've used a for loop to build these recipe more than 500 times, and fix
the issues that I've found, there is no errors in recent 250 builds, I
think it's worth to enable the parallel build for them, we can disable
it if we find errors again.

I will go on the build until 1000 times.

The left ones in-core are:
gettext_0.16.1 # Lower version
subversion_1.8.10 # I have a fix for it, but seems not enough.
net-tools_1.60-25 # I have a fix for, but seems not enough.
groff_1.22.2 # I have a fix for, but seems not enough.
groff_1.18.1.4 # Lower version

// Robert

The following changes since commit 6bf5cbbcac80ee818cc932d69227e70e41ce02d3:

  libtool: Fix option parsing performance regression (2015-02-10 22:36:09 +0000)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib rbt/parallel
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/parallel

Robert Yang (12):
  bind: fix and enable parallel build
  tcp-wrappers: fix and enable parallel build
  slang: fix and enable parallel build
  at: fix and enable parallel build
  mtools: fix and enable parallel build
  pth: fix and enable parallel build
  openssl: fix and enable parallel build
  blktrace: fix and enable parallel build
  ghostscript: fix and enable parallel build
  pcmciautils: fix and enable parallel build
  vala.bbclass: enable PARALLEL_MAKE
  meta: enable parallel build for several recipes

 meta/classes/vala.bbclass                          |    3 -
 .../Makefile-fix-for-parallel-build.patch          |   35 ++++
 meta/recipes-bsp/pcmciautils/pcmciautils.inc       |    1 -
 meta/recipes-bsp/pcmciautils/pcmciautils_018.bb    |    4 +-
 .../bind/bind/bind-subdirs-run-serially.patch      |   35 ++++
 meta/recipes-connectivity/bind/bind_9.9.5.bb       |    2 +-
 .../nfs-utils/nfs-utils_1.3.1.bb                   |    2 -
 meta/recipes-connectivity/openssl/openssl.inc      |    3 +
 .../recipes-connectivity/openssl/openssl_1.0.1j.bb |    3 -
 meta/recipes-core/libcgroup/libcgroup_0.41.bb      |    3 -
 meta/recipes-devtools/autoconf/autoconf_2.69.bb    |    2 -
 meta/recipes-devtools/dpkg/dpkg.inc                |    2 -
 meta/recipes-devtools/json-c/json-c_0.12.bb        |    2 -
 meta/recipes-devtools/mtd/mtd-utils_git.bb         |    2 -
 meta/recipes-devtools/mtools/mtools_3.9.9.bb       |    8 +-
 meta/recipes-devtools/mtools/mtools_4.0.18.bb      |    8 +-
 .../python/python-pygobject_2.28.3.bb              |    2 -
 meta/recipes-devtools/valgrind/valgrind_3.10.1.bb  |    1 -
 .../at/at/makefile-fix-parallel.patch              |   35 ++++
 meta/recipes-extended/at/at_3.1.16.bb              |    5 +-
 meta/recipes-extended/bash/bash.inc                |    2 -
 .../ghostscript-9.15-parallel-make.patch           |   40 +++++
 .../ghostscript/ghostscript_9.15.bb                |    6 +-
 meta/recipes-extended/mailx/mailx_12.5.bb          |    1 -
 .../slang/slang/slang-makefile-fix-parallel.patch  |  177 ++++++++++++++++++++
 meta/recipes-extended/slang/slang_2.2.4.bb         |    2 +-
 .../tcp-wrappers-7.6/makefile-fix-parallel.patch   |   54 ++++++
 .../tcp-wrappers/tcp-wrappers_7.6.bb               |    6 +-
 meta/recipes-graphics/libsdl/libsdl_1.2.15.bb      |    2 -
 meta/recipes-graphics/libsdl2/libsdl2_2.0.3.bb     |    2 -
 .../xorg-lib/libpthread-stubs_0.3.bb               |    1 -
 meta/recipes-graphics/xorg-lib/xcb-util.inc        |    2 -
 .../blktrace/blktrace/makefile-fix-parallel.patch  |   41 +++++
 meta/recipes-kernel/blktrace/blktrace_git.bb       |    5 +-
 meta/recipes-kernel/perf/perf.bb                   |    1 -
 meta/recipes-multimedia/speex/speex_1.2rc1.bb      |    2 -
 meta/recipes-support/icu/icu.inc                   |    1 -
 meta/recipes-support/libpcre/libpcre_8.36.bb       |    2 -
 .../pth/files/pth-fix-parallel.patch               |   48 ++++++
 meta/recipes-support/pth/pth_2.0.7.bb              |    6 +-
 40 files changed, 498 insertions(+), 61 deletions(-)
 create mode 100644 meta/recipes-bsp/pcmciautils/pcmciautils-018/Makefile-fix-for-parallel-build.patch
 create mode 100644 meta/recipes-connectivity/bind/bind/bind-subdirs-run-serially.patch
 create mode 100644 meta/recipes-extended/at/at/makefile-fix-parallel.patch
 create mode 100644 meta/recipes-extended/ghostscript/ghostscript/ghostscript-9.15-parallel-make.patch
 create mode 100644 meta/recipes-extended/slang/slang/slang-makefile-fix-parallel.patch
 create mode 100644 meta/recipes-extended/tcp-wrappers/tcp-wrappers-7.6/makefile-fix-parallel.patch
 create mode 100644 meta/recipes-kernel/blktrace/blktrace/makefile-fix-parallel.patch
 create mode 100644 meta/recipes-support/pth/files/pth-fix-parallel.patch

-- 
1.7.9.5



             reply	other threads:[~2015-02-13  8:15 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-13  8:15 Robert Yang [this message]
2015-02-13  8:15 ` [PATCH 01/12] bind: fix and enable parallel build Robert Yang
2015-02-13  8:15 ` [PATCH 02/12] tcp-wrappers: " Robert Yang
2015-02-13  8:15 ` [PATCH 03/12] slang: " Robert Yang
2015-02-15 22:02   ` Richard Purdie
2015-02-13  8:15 ` [PATCH 04/12] at: " Robert Yang
2015-02-13  8:15 ` [PATCH 05/12] mtools: " Robert Yang
2015-02-13  8:15 ` [PATCH 06/12] pth: " Robert Yang
2015-02-13  8:15 ` [PATCH 07/12] openssl: " Robert Yang
2015-02-13  8:15 ` [PATCH 08/12] blktrace: " Robert Yang
2015-02-13  8:15 ` [PATCH 09/12] ghostscript: " Robert Yang
2015-02-13  8:15 ` [PATCH 10/12] pcmciautils: " Robert Yang
2015-02-13  8:15 ` [PATCH 11/12] vala.bbclass: enable PARALLEL_MAKE Robert Yang
2015-02-13  8:15 ` [PATCH 12/12] meta: enable parallel build for several recipes Robert Yang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1423808841.git.liezhi.yang@windriver.com \
    --to=liezhi.yang@windriver.com \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox