mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Turn on "link external modules statically" option as otherwise ruby installer tries to do additional building inside installed module directories in do_install which fails horribly. License-Update: additional MIT/BSD items (From OE-Core rev: 4d4485442830bb52b152f0419f4ff9f1d581d46a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.5 KiB
Diff
36 lines
1.5 KiB
Diff
From e74b57febec9bd806e29025e6eeb8091e7021d75 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Sun, 26 Jan 2020 11:27:40 -0800
|
|
Subject: [PATCH] Filter out __has_include* compiler defines
|
|
|
|
They are internal to compiler and this header is later on includes in C
|
|
files, but newer gcc >= 10 complains about it.
|
|
|
|
error in initial header file:
|
|
| In file included from /tmp/20200124-86625-14hiju4.c:1:
|
|
| /tmp/20200124-86625-11y6l6i.h:13849:9: error: "__has_include" cannot be used as a macro name
|
|
| 13849 | #define __has_include __has_include
|
|
| | ^~~~~~~~~~~~~
|
|
| compilation terminated due to -Wfatal-errors.
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
common.mk | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/common.mk b/common.mk
|
|
index 664f750..3b8fbe6 100644
|
|
--- a/common.mk
|
|
+++ b/common.mk
|
|
@@ -238,6 +238,8 @@ $(TIMESTAMPDIR)/$(MJIT_HEADER:.h=)$(MJIT_HEADER_SUFFIX).time: probes.h vm.$(OBJE
|
|
$(ECHO) building $(@F:.time=.h)
|
|
$(Q)$(MINIRUBY) $(tooldir)/mjit_tabs.rb "$(MJIT_TABS)" \
|
|
$(CPP) -DMJIT_HEADER $(MJIT_HEADER_FLAGS) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(srcdir)/vm.c $(CPPOUTFLAG)$(@F:.time=.h).new
|
|
+ $(Q)sed -i -e "/#define __has_include __has_include/d" $(@F:.time=.h).new
|
|
+ $(Q)sed -i -e "/#define __has_include_next __has_include_next/d" $(@F:.time=.h).new
|
|
$(Q) $(IFCHANGE) "--timestamp=$@" $(@F:.time=.h) $(@F:.time=.h).new
|
|
|
|
$(MJIT_HEADER:.h=)$(MJIT_HEADER_SUFFIX).h: $(TIMESTAMPDIR)/$(MJIT_HEADER:.h=)$(MJIT_HEADER_SUFFIX).time
|