Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/16] Recipes fixes for clang
@ 2015-09-08 23:07 Khem Raj
  2015-09-08 23:07 ` [PATCH 01/16] irda-utils: Weak Define the build TARGETS Khem Raj
                   ` (15 more replies)
  0 siblings, 16 replies; 40+ messages in thread
From: Khem Raj @ 2015-09-08 23:07 UTC (permalink / raw)
  To: openembedded-core

This patch series is about common fixes that came to fore due to clang compilation
some of the fixes are real bugs which were latent and has been submitted upstream,
some were backports and some are yet to be submitted

The following changes since commit 8402958cd2cb87b8283c8ee4e2d08e1a6717d67a:

  pseudo_1.7.3.bb: New version of pseudo (2015-09-06 15:24:28 +0100)

are available in the git repository at:

  git://github.com/kraj/openembedded-core clang
  https://github.com/kraj/openembedded-core/tree/clang

Khem Raj (16):
  irda-utils: Weak Define the build TARGETS
  slang: Fix namespace conflict vis-a-vis posix_close
  sudo: Include sys/types.h for id_t definition
  man: Use -DSYSV when builing for linux
  minicom: Fix build with musl
  bdwgc: Include signal.h instead of hard asm/sigcontext.h
  ccache: Dont add LDFLAGS to compiler flags
  latencytop: Fix build with clang
  alsa-tools: Fix compiling with clang
  kexec-tools: Pass -r directly to linker
  xorg-driver: Fix logical && with bitwise and operation
  puzzles: Fix build with clang
  sudo: Disable rsize_t deliberately
  webkit-gtk: Backport fix to remove FrameDestructionObserver
  mdadm: Fix bugs exposed by clang
  directfb: Avoid using VLAs and printf formats

 .../irda-utils/irda-utils_0.9.18.bb                |  11 ++-
 meta/recipes-devtools/ccache/ccache.inc            |   2 -
 meta/recipes-extended/man/man_1.6g.bb              |   2 +
 .../mdadm/files/0001-Fix-typo-in-comparision.patch |  86 +++++++++++++++++
 meta/recipes-extended/mdadm/mdadm_3.3.4.bb         |   1 +
 ...0001-Fix-build-issus-surfaced-due-to-musl.patch |  47 +++++++++
 meta/recipes-extended/minicom/minicom_2.7.bb       |   1 +
 ...x-error-conflicting-types-for-posix_close.patch |  39 ++++++++
 meta/recipes-extended/slang/slang_2.2.4.bb         |   1 +
 ...1-Include-sys-types.h-for-id_t-definition.patch |  34 +++++++
 meta/recipes-extended/sudo/sudo_1.8.14p3.bb        |   2 +
 meta/recipes-graphics/directfb/directfb.inc        |   4 +-
 ...direct-Aboid-usng-VLAs-and-printf-formats.patch |  61 ++++++++++++
 ...put_dpms-Replace-logical-with-bitwise-ope.patch |  31 ++++++
 .../xorg-driver/xf86-video-omap_0.4.3.bb           |   2 +
 .../0001-purgatory-Pass-r-directly-to-linker.patch |  32 +++++++
 meta/recipes-kernel/kexec/kexec-tools_2.0.10.bb    |   1 +
 ...-function-signatures-to-fix-prototype-mis.patch |  64 +++++++++++++
 meta/recipes-kernel/latencytop/latencytop_0.5.bb   |   6 +-
 ...s10k1-Make-output_tram_line-static-inline.patch |  31 ++++++
 meta/recipes-multimedia/alsa/alsa-tools_1.0.29.bb  |   1 +
 .../files/0001-Use-labs-instead-of-abs.patch       |  46 +++++++++
 meta/recipes-sato/puzzles/puzzles_git.bb           |   1 +
 ...ride-of-FrameDestructionObserver-willDeta.patch | 105 +++++++++++++++++++++
 meta/recipes-sato/webkit/webkit-gtk_1.8.3.bb       |   1 +
 .../bdwgc/bdwgc/0001-fix-build-with-musl.patch     |  35 +++++++
 meta/recipes-support/bdwgc/bdwgc_7.4.2.bb          |   4 +-
 27 files changed, 641 insertions(+), 10 deletions(-)
 create mode 100644 meta/recipes-extended/mdadm/files/0001-Fix-typo-in-comparision.patch
 create mode 100644 meta/recipes-extended/minicom/minicom/0001-Fix-build-issus-surfaced-due-to-musl.patch
 create mode 100644 meta/recipes-extended/slang/slang/0001-Fix-error-conflicting-types-for-posix_close.patch
 create mode 100644 meta/recipes-extended/sudo/sudo/0001-Include-sys-types.h-for-id_t-definition.patch
 create mode 100644 meta/recipes-graphics/directfb/directfb/0001-gfx-direct-Aboid-usng-VLAs-and-printf-formats.patch
 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-kernel/kexec/kexec-tools/0001-purgatory-Pass-r-directly-to-linker.patch
 create mode 100644 meta/recipes-kernel/latencytop/latencytop-0.5/0001-Rectify-the-function-signatures-to-fix-prototype-mis.patch
 create mode 100644 meta/recipes-multimedia/alsa/alsa-tools/0001-as10k1-Make-output_tram_line-static-inline.patch
 create mode 100644 meta/recipes-sato/puzzles/files/0001-Use-labs-instead-of-abs.patch
 create mode 100644 meta/recipes-sato/webkit/webkit-gtk-1.8.3/0001-Remove-override-of-FrameDestructionObserver-willDeta.patch
 create mode 100644 meta/recipes-support/bdwgc/bdwgc/0001-fix-build-with-musl.patch

-- 
2.5.1



^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2015-09-10 18:07 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-08 23:07 [PATCH 00/16] Recipes fixes for clang Khem Raj
2015-09-08 23:07 ` [PATCH 01/16] irda-utils: Weak Define the build TARGETS Khem Raj
2015-09-08 23:07 ` [PATCH 02/16] slang: Fix namespace conflict vis-a-vis posix_close Khem Raj
     [not found]   ` <0b794c84466fef2ece1269e01820503b4bce0b52.1441753511.git.raj.khem@gmai l.com>
2015-09-09 10:02     ` alexander.kanavin
2015-09-09 10:23       ` alexander.kanavin
2015-09-09 16:02         ` Khem Raj
2015-09-10 11:21           ` Alexander Kanavin
2015-09-10 11:50             ` Trevor Woerner
2015-09-10 12:06               ` Burton, Ross
2015-09-10 12:08               ` Policy for 'Pending' patches (was Re: [PATCH 02/16] slang: Fix namespace conflict vis-a-vis posix_close) Alexander Kanavin
2015-09-10 12:12                 ` Gary Thomas
2015-09-10 12:12                   ` Burton, Ross
2015-09-10 12:15                     ` Gary Thomas
2015-09-10 15:22                     ` Khem Raj
2015-09-10 18:03                       ` alexander.kanavin
2015-09-10 15:37                 ` akuster808
2015-09-10 18:06                   ` alexander.kanavin
2015-09-08 23:07 ` [PATCH 03/16] sudo: Include sys/types.h for id_t definition Khem Raj
2015-09-08 23:07 ` [PATCH 04/16] man: Use -DSYSV when builing for linux Khem Raj
2015-09-08 23:07 ` [PATCH 05/16] minicom: Fix build with musl Khem Raj
2015-09-08 23:07 ` [PATCH 06/16] bdwgc: Include signal.h instead of hard asm/sigcontext.h Khem Raj
2015-09-08 23:07 ` [PATCH 07/16] ccache: Dont add LDFLAGS to compiler flags Khem Raj
2015-09-08 23:07 ` [PATCH 08/16] latencytop: Fix build with clang Khem Raj
2015-09-08 23:07 ` [PATCH 09/16] alsa-tools: Fix compiling " Khem Raj
2015-09-08 23:07 ` [PATCH 10/16] kexec-tools: Pass -r directly to linker Khem Raj
2015-09-08 23:07 ` [PATCH 11/16] xorg-driver: Fix logical && with bitwise and operation Khem Raj
2015-09-09  7:44   ` Nicolas Dechesne
2015-09-09  7:52     ` Khem Raj
2015-09-09  8:07       ` Nicolas Dechesne
2015-09-09 16:00         ` Nicolas Dechesne
2015-09-09 16:09           ` Khem Raj
2015-09-09 16:08         ` Khem Raj
2015-09-08 23:07 ` [PATCH 12/16] puzzles: Fix build with clang Khem Raj
2015-09-08 23:07 ` [PATCH 13/16] sudo: Disable rsize_t deliberately Khem Raj
2015-09-08 23:07 ` [PATCH 14/16] webkit-gtk: Backport fix to remove FrameDestructionObserver Khem Raj
2015-09-09 13:04   ` Burton, Ross
2015-09-09 19:28     ` Khem Raj
2015-09-09 19:29       ` Burton, Ross
2015-09-08 23:07 ` [PATCH 15/16] mdadm: Fix bugs exposed by clang Khem Raj
2015-09-08 23:07 ` [PATCH 16/16] directfb: Avoid using VLAs and printf formats Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox