summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2023-05-24 09:53:19 +0200
committerSteve Sakoman <steve@sakoman.com>2023-06-21 06:50:51 -1000
commit93d2b8c0ab3df2945538a923fba1497f25b6da5f (patch)
treec40878dac8dd52a14fa0b67e633081ff6149721e /meta
parent60b79a980b1cf0823dac1d67e29550c4ad724956 (diff)
downloadpoky-93d2b8c0ab3df2945538a923fba1497f25b6da5f.tar.gz
libgloss: remove unused patch file
* it was removed from SRC_URI in: https://git.openembedded.org/openembedded-core/commit/?id=1c9cbb27dfe37ca4574c4285fb03ce394dee5ed1 (From OE-Core rev: ab6ca3112fe84f74fa4cd6ddfec2c6ca50476539) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit c78439a8048c30ef96e11ae698c32f4e088787d3) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-core/newlib/libgloss/fix_makefile_include_arm_h.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/meta/recipes-core/newlib/libgloss/fix_makefile_include_arm_h.patch b/meta/recipes-core/newlib/libgloss/fix_makefile_include_arm_h.patch
deleted file mode 100644
index 7645be7314..0000000000
--- a/meta/recipes-core/newlib/libgloss/fix_makefile_include_arm_h.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1Upstream-Status: Inappropriate [OE-Specific]
2
3When trying to build libgloss for an arm target, the build system
4complains about missing some include files:
5
6| fatal error: acle-compiat.h: No such file or directory
7| #include "acle-compat.h"
8| ^~~~~~~~~~~~~~~
9| compilation terminated.
10
11These include files come from the newlib source, but since we
12are building libgloss separately from newlib, libgloss is unaware
13of where they are, this patch fixes the INCLUDES so the build system
14can find such files.
15
16Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandr@xilinx.com>
17
18Index: newlib-3.0.0/libgloss/config/default.mh
19===================================================================
20--- newlib-3.0.0.orig/libgloss/config/default.mh
21+++ newlib-3.0.0/libgloss/config/default.mh
22@@ -1,7 +1,7 @@
23 NEWLIB_CFLAGS = `if [ -d ${objroot}/newlib ]; then echo -I${objroot}/newlib/targ-include -I${srcroot}/newlib/libc/include; fi`
24 NEWLIB_LDFLAGS = `if [ -d ${objroot}/newlib ]; then echo -B${objroot}/newlib/ -L${objroot}/newlib/; fi`
25
26-INCLUDES = -I. -I$(srcdir)/..
27+INCLUDES = -I. -I$(srcdir)/.. -I$(srcdir)/../newlib/libc/machine/arm
28 # Note that when building the library, ${MULTILIB} is not the way multilib
29 # options are passed; they're passed in $(CFLAGS).
30 CFLAGS_FOR_TARGET = -O2 -g ${MULTILIB} ${INCLUDES} ${NEWLIB_CFLAGS}