mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 05:19:40 +01:00
Drop all the debian patches: they are very invasive, the use case is unclear, and rebasing them is just too hard. Refresh 0002-musl-libs.patch Add a new musl fix: 0015-config-eu.am-do-not-use-Werror.patch Add a reproducibility fix: 0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch (From OE-Core rev: 79c290a0823ee996c69bb02a82dc6ded00fae629) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
37 lines
1.5 KiB
Diff
37 lines
1.5 KiB
Diff
From dce2187dd8f592316357b200ebbe8dbed9ee65cb Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Mon, 22 Jun 2020 21:35:16 +0000
|
|
Subject: [PATCH] config/eu.am: do not use -Werror
|
|
|
|
Due to re-definition of error() on musl, gcc starts throwing
|
|
errors where none happen with glibc. Since upstream is not
|
|
likely to be interested in musl builds, lets just disable
|
|
Werror.
|
|
|
|
Upstream-Status: Inappropriate [oe core specific]
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
config/eu.am | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/config/eu.am b/config/eu.am
|
|
index 6c3c444..3bc0dc9 100644
|
|
--- a/config/eu.am
|
|
+++ b/config/eu.am
|
|
@@ -73,7 +73,6 @@ AM_CFLAGS = -std=gnu99 -Wall -Wshadow -Wformat=2 \
|
|
-Wold-style-definition -Wstrict-prototypes -Wtrampolines \
|
|
$(LOGICAL_OP_WARNING) $(DUPLICATED_COND_WARNING) \
|
|
$(NULL_DEREFERENCE_WARNING) $(IMPLICIT_FALLTHROUGH_WARNING) \
|
|
- $(if $($(*F)_no_Werror),,-Werror) \
|
|
$(if $($(*F)_no_Wunused),,-Wunused -Wextra) \
|
|
$(if $($(*F)_no_Wstack_usage),,$(STACK_USAGE_WARNING)) \
|
|
$(if $($(*F)_no_Wpacked_not_aligned),-Wno-packed-not-aligned,) \
|
|
@@ -83,7 +82,6 @@ AM_CXXFLAGS = -std=c++11 -Wall -Wshadow \
|
|
-Wtrampolines \
|
|
$(LOGICAL_OP_WARNING) $(DUPLICATED_COND_WARNING) \
|
|
$(NULL_DEREFERENCE_WARNING) $(IMPLICIT_FALLTHROUGH_WARNING) \
|
|
- $(if $($(*F)_no_Werror),,-Werror) \
|
|
$(if $($(*F)_no_Wunused),,-Wunused -Wextra) \
|
|
$(if $($(*F)_no_Wstack_usage),,$(STACK_USAGE_WARNING)) \
|
|
$(if $($(*F)_no_Wpacked_not_aligned),-Wno-packed-not-aligned,) \
|