diff options
| author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2019-02-22 10:50:44 +0100 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2019-02-22 22:29:59 +0100 |
| commit | 2a01a328195090c45d2b2407680cbf567f547643 (patch) | |
| tree | 4a93d6af018d2fe1609ff1afda95ba22abfc58f2 | |
| parent | 3e4b32691bc558f253618b7a2f41f6fce4bcbed6 (diff) | |
| download | buildroot-2a01a328195090c45d2b2407680cbf567f547643.tar.gz buildroot-2a01a328195090c45d2b2407680cbf567f547643.zip | |
package/gdb: disable inprocess-agent in static build
Fixes:
- http://autobuild.buildroot.org/results/b40bdbca6669a81301fca523e982dbc9584a4e65
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | package/gdb/gdb.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index 062f3a730c..a926961372 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -139,6 +139,11 @@ ifneq ($(BR2_INSTALL_LIBSTDCPP),y) GDB_CONF_OPTS += --disable-build-with-cxx endif +# inprocess-agent can't be built statically +ifeq ($(BR2_STATIC_LIBS),y) +GDB_CONF_OPTS += --disable-inprocess-agent +endif + ifeq ($(BR2_PACKAGE_GDB_TUI),y) GDB_CONF_OPTS += --enable-tui else |

