From: Markus Lehtonen <markus.lehtonen@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH v8 00/16] support profile-optimized build for Python
Date: Mon, 27 Nov 2017 14:06:44 +0200 [thread overview]
Message-ID: <cover.1511784130.git.markus.lehtonen@linux.intel.com> (raw)
Changes since v7:
- simple selftest added
The following changes since commit 33418ed064fe9cff5b4803f09135a81d9170c189:
runqemu: Also specialcase resolution of '.' to the file's location (2017-11-21 17:58:36 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib marquiz/fixes-9338
http://cgit.openembedded.org/openembedded-core-contrib/log/?h=marquiz/fixes-9338
Markus Lehtonen (16):
python3-native: support profile optimized build
python3: fix depends of python3-tests
python3: add python3-profile-opt recipe
python3-profile-opt: rename libpython3
openssh: extend to -native
libmnl: enable native
iptables: enable native
iproute2: enable native
oeqa/targetcontrol: re-introduce get_target_controller()
oeqa/targetcontrol: add missing arg to SimpleRemoteTarget.__init__
devtools/images: add python-pgo-image
python3: support profile optimized build
python3: fix profile-optimized build of modules
python3: add python3-tools subpackage
python3: remove two setup.py cross-compile hacks
oeqa: add selftest for python pgo
meta/lib/oeqa/selftest/cases/python.py | 28 ++++++
meta/lib/oeqa/targetcontrol.py | 29 +++++-
meta/recipes-connectivity/iproute2/iproute2.inc | 7 +-
...1-don-t-use-absolute-path-for-ssh-program.patch | 31 ++++++
meta/recipes-connectivity/openssh/openssh_7.6p1.bb | 7 +-
meta/recipes-devtools/images/python-pgo-image.bb | 92 ++++++++++++++++++
.../python/python-3.5-manifest.inc | 12 ++-
.../python/python3-native_3.5.3.bb | 9 ++
meta/recipes-devtools/python/python3-profile-opt | 1 +
.../python/python3-profile-opt_3.5.3.bb | 10 ++
.../python3/0001-cross-compile-support.patch | 9 --
...efile-add-install_generate_profile-target.patch | 25 +++++
...-CFLAGS-for-extensions-when-cross-compili.patch | 56 +++++++++++
.../python3-setup.py-no-host-headers-libs.patch | 33 -------
...name-libpython3-to-libpython-profile-opt3.patch | 108 +++++++++++++++++++++
.../setup.py-find-libraries-in-staging-dirs.patch | 30 ------
meta/recipes-devtools/python/python3_3.5.3.bb | 58 ++++++++---
...revent-absolute-path-in-installed-symlink.patch | 29 ++++++
meta/recipes-extended/iptables/iptables_1.6.1.bb | 3 +
meta/recipes-extended/libmnl/libmnl_1.0.4.bb | 2 +
scripts/contrib/python/generate-manifest-3.5.py | 5 +-
21 files changed, 487 insertions(+), 97 deletions(-)
create mode 100644 meta/lib/oeqa/selftest/cases/python.py
create mode 100644 meta/recipes-connectivity/openssh/openssh/0001-don-t-use-absolute-path-for-ssh-program.patch
create mode 100644 meta/recipes-devtools/images/python-pgo-image.bb
create mode 120000 meta/recipes-devtools/python/python3-profile-opt
create mode 100644 meta/recipes-devtools/python/python3-profile-opt_3.5.3.bb
create mode 100644 meta/recipes-devtools/python/python3/Makefile-add-install_generate_profile-target.patch
create mode 100644 meta/recipes-devtools/python/python3/Use-correct-CFLAGS-for-extensions-when-cross-compili.patch
delete mode 100644 meta/recipes-devtools/python/python3/python3-setup.py-no-host-headers-libs.patch
create mode 100644 meta/recipes-devtools/python/python3/rename-libpython3-to-libpython-profile-opt3.patch
delete mode 100644 meta/recipes-devtools/python/python3/setup.py-find-libraries-in-staging-dirs.patch
create mode 100644 meta/recipes-extended/iptables/iptables/prevent-absolute-path-in-installed-symlink.patch
--
2.13.6
next reply other threads:[~2017-11-27 12:07 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-11-27 12:06 Markus Lehtonen [this message]
2017-11-27 12:06 ` [PATCH v8 01/16] python3-native: support profile optimized build Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 02/16] python3: fix depends of python3-tests Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 03/16] python3: add python3-profile-opt recipe Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 04/16] python3-profile-opt: rename libpython3 Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 05/16] openssh: extend to -native Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 06/16] libmnl: enable native Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 07/16] iptables: " Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 08/16] iproute2: " Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 09/16] oeqa/targetcontrol: re-introduce get_target_controller() Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 10/16] oeqa/targetcontrol: add missing arg to SimpleRemoteTarget.__init__ Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 11/16] devtools/images: add python-pgo-image Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 12/16] python3: support profile optimized build Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 13/16] python3: fix profile-optimized build of modules Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 14/16] python3: add python3-tools subpackage Markus Lehtonen
2017-11-27 12:06 ` [PATCH v8 15/16] python3: remove two setup.py cross-compile hacks Markus Lehtonen
2017-11-27 12:07 ` [PATCH v8 16/16] oeqa: add selftest for python pgo Markus Lehtonen
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.1511784130.git.markus.lehtonen@linux.intel.com \
--to=markus.lehtonen@linux.intel.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