summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb/0005-Dont-disable-libreadline.a-when-using-disable-static.patch
blob: 71eab1c2b1b783fa797950db6e877a0807ecec04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From ec566877c50bdae0013a38dd457004e1db725d86 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Sat, 30 Apr 2016 15:25:03 -0700
Subject: [PATCH 05/11] Dont disable libreadline.a when using --disable-static

If gdb is configured with --disable-static then this is dutifully passed to
readline which then disables libreadline.a, which causes a problem when gdb
tries to link against that.

To ensure that readline always builds static libraries, pass --enable-static to
the sub-configure.

Upstream-Status: Pending
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 Makefile.def | 3 ++-
 Makefile.in  | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile.def b/Makefile.def
index 76d062bb671..e0a1e2b14b1 100644
--- a/Makefile.def
+++ b/Makefile.def
@@ -105,7 +105,8 @@ host_modules= { module= libiconv;
 		missing= install-html;
 		missing= install-info; };
 host_modules= { module= m4; };
-host_modules= { module= readline; };
+host_modules= { module= readline;
+                extra_configure_flags='--enable-static';};
 host_modules= { module= sid; };
 host_modules= { module= sim; };
 host_modules= { module= texinfo; no_install= true; };
diff --git a/Makefile.in b/Makefile.in
index 9dfd39fae13..eaf1dd0f229 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -25548,7 +25548,7 @@ configure-readline:
 	  $$s/$$module_srcdir/configure \
 	  --srcdir=$${topdir}/$$module_srcdir \
 	  $(HOST_CONFIGARGS) --build=${build_alias} --host=${host_alias} \
-	  --target=${target_alias}  \
+	  --target=${target_alias} --enable-static \
 	  || exit 1
 @endif readline
 
-- 
2.29.2