summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2023-05-24 09:53:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-25 12:36:00 +0100
commit9a314c2d888dbaa8b20e31128097a27013580a20 (patch)
treec0c3a04a117d407580d8e79de5421f4e2cee03ed
parent55703b38d14812124735170b72db0fb7a54b926c (diff)
downloadpoky-9a314c2d888dbaa8b20e31128097a27013580a20.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: c78439a8048c30ef96e11ae698c32f4e088787d3) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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}