From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/12] Fixes with clang
Date: Mon, 14 Sep 2015 16:31:18 +0000 [thread overview]
Message-ID: <cover.1442248108.git.raj.khem@gmail.com> (raw)
These fixes generic in nature helps improve the portability of patches and make them work
on non GNU toolchain components
The following changes since commit 2c8c3d9c4b65d2a5c7976d530138ebcaac2b1447:
gcc: reformat 0063-nativesdk-gcc-support.patch (2015-09-12 23:01:31 +0100)
are available in the git repository at:
git://github.com/kraj/openembedded-core kraj/misc-fixes
https://github.com//tree/kraj/misc-fixes
Khem Raj (12):
xz: Correctly specify GPL-3.0 with autoconf exception
hostap-utils: Use C99 stddefs in defining local typedefs
xorg-driver: Fix logical && with bitwise and operation
qt4: Fix kmap2qmap build with clang
gummiboot: Fix build warnings seen with gcc5
gnu-efi, syslinux: Support gcc < 4.7
syslinux: Dont bypass gcc driver for dependency generation options
opkg: Include stdio.h for FILE definition
quota: Replace using -I= with STAGING_INCDIR
connman: Fix build with musl
waffle: upgrade waffle_1.5.1.bb -> waffle_1.5.2.bb
sysstat: Include needed headers explicitly
.../gnu-efi/gnu-efi/gcc46-compatibility.patch | 21 ++++++
meta/recipes-bsp/gnu-efi/gnu-efi_3.0.3.bb | 1 +
...-C-syntax-errors-for-function-declaration.patch | 74 +++++++++++++++++++
meta/recipes-bsp/gummiboot/gummiboot_git.bb | 3 +
...-__s32-__u16-__s16-__u8-in-terms-of-c99-t.patch | 36 +++++++++
meta/recipes-bsp/hostap/hostap-utils.inc | 4 +-
meta/recipes-connectivity/connman/connman.inc | 1 +
...acktrace-API-availability-before-using-it.patch | 55 ++++++++++++++
...resolve-musl-does-not-implement-res_ninit.patch | 77 ++++++++++++++++++++
.../0003-Fix-header-inclusions-for-musl.patch | 85 ++++++++++++++++++++++
meta/recipes-connectivity/connman/connman_1.30.bb | 3 +
...-include-stdio.h-for-getting-FILE-defined.patch | 45 ++++++++++++
meta/recipes-devtools/opkg/opkg_0.3.0.bb | 1 +
.../syslinux/0010-gcc46-compatibility.patch | 37 ++++++++++
.../0011-mk-MMD-does-not-take-any-arguments.patch | 33 +++++++++
meta/recipes-devtools/syslinux/syslinux_6.03.bb | 2 +
.../quota/quota/remove_non_posix_types.patch | 13 ++++
meta/recipes-extended/quota/quota_4.02.bb | 2 +-
.../0001-Include-needed-headers-explicitly.patch | 62 ++++++++++++++++
meta/recipes-extended/sysstat/sysstat_11.1.5.bb | 2 +
meta/recipes-extended/xz/xz_5.2.1.bb | 2 +-
...-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch | 54 ++++++++++++++
.../waffle/{waffle_1.5.1.bb => waffle_1.5.2.bb} | 8 +-
...put_dpms-Replace-logical-with-bitwise-ope.patch | 31 ++++++++
.../xorg-driver/xf86-video-omap_0.4.3.bb | 2 +
meta/recipes-qt/qt4/qt4-4.8.7.inc | 1 +
.../0034-Fix-kmap2qmap-build-with-clang.patch | 34 +++++++++
27 files changed, 683 insertions(+), 6 deletions(-)
create mode 100644 meta/recipes-bsp/gnu-efi/gnu-efi/gcc46-compatibility.patch
create mode 100644 meta/recipes-bsp/gummiboot/gummiboot/0001-console-Fix-C-syntax-errors-for-function-declaration.patch
create mode 100644 meta/recipes-bsp/hostap/hostap-utils-0.4.7/0001-Define-_u32-__s32-__u16-__s16-__u8-in-terms-of-c99-t.patch
create mode 100644 meta/recipes-connectivity/connman/connman/0001-Detect-backtrace-API-availability-before-using-it.patch
create mode 100644 meta/recipes-connectivity/connman/connman/0002-resolve-musl-does-not-implement-res_ninit.patch
create mode 100644 meta/recipes-connectivity/connman/connman/0003-Fix-header-inclusions-for-musl.patch
create mode 100644 meta/recipes-devtools/opkg/opkg/0001-libopkg-include-stdio.h-for-getting-FILE-defined.patch
create mode 100644 meta/recipes-devtools/syslinux/syslinux/0010-gcc46-compatibility.patch
create mode 100644 meta/recipes-devtools/syslinux/syslinux/0011-mk-MMD-does-not-take-any-arguments.patch
create mode 100644 meta/recipes-extended/sysstat/sysstat/0001-Include-needed-headers-explicitly.patch
create mode 100644 meta/recipes-graphics/waffle/waffle/0001-third_party-threads-Use-PTHREAD_MUTEX_RECURSIVE-by-d.patch
rename meta/recipes-graphics/waffle/{waffle_1.5.1.bb => waffle_1.5.2.bb} (84%)
create mode 100644 meta/recipes-graphics/xorg-driver/xf86-video-omap/0001-drmmode_output_dpms-Replace-logical-with-bitwise-ope.patch
create mode 100644 meta/recipes-qt/qt4/qt4-4.8.7/0034-Fix-kmap2qmap-build-with-clang.patch
--
2.5.2
next reply other threads:[~2015-09-14 16:31 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-14 16:31 Khem Raj [this message]
2015-09-14 16:31 ` [PATCH 01/12] xz: Correctly specify GPL-3.0 with autoconf exception Khem Raj
2015-09-14 16:31 ` [PATCH 02/12] hostap-utils: Use C99 stddefs in defining local typedefs Khem Raj
2015-09-15 6:33 ` Mikko.Rapeli
2015-09-15 15:13 ` Khem Raj
2015-09-16 6:01 ` Mikko.Rapeli
2015-09-14 16:31 ` [PATCH 03/12] xorg-driver: Fix logical && with bitwise and operation Khem Raj
2015-09-14 16:31 ` [PATCH 04/12] qt4: Fix kmap2qmap build with clang Khem Raj
2015-09-14 16:31 ` [PATCH 05/12] gummiboot: Fix build warnings seen with gcc5 Khem Raj
2015-09-14 16:31 ` [PATCH 06/12] gnu-efi, syslinux: Support gcc < 4.7 Khem Raj
2015-09-14 16:31 ` [PATCH 07/12] syslinux: Dont bypass gcc driver for dependency generation options Khem Raj
2015-09-14 16:31 ` [PATCH 08/12] opkg: Include stdio.h for FILE definition Khem Raj
2015-09-14 16:31 ` [PATCH 09/12] quota: Replace using -I= with STAGING_INCDIR Khem Raj
2015-09-14 16:31 ` [PATCH 10/12] connman: Fix build with musl Khem Raj
2015-09-14 16:31 ` [PATCH 11/12] waffle: upgrade waffle_1.5.1.bb -> waffle_1.5.2.bb Khem Raj
2015-09-18 20:21 ` Burton, Ross
2015-09-18 21:04 ` Khem Raj
2015-09-14 16:31 ` [PATCH 12/12] sysstat: Include needed headers explicitly Khem Raj
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.1442248108.git.raj.khem@gmail.com \
--to=raj.khem@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.