Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A Python Exception error in gdb 7.10

Tags:

gdb

I have installed gdb 7.10 under Ubuntu 14.04 by compiling from the source as detailed in this answer (with the only exception that I copied the executable into /usr/bin). When I execute commands in gdb, I get the following error:

Python Exception <type 'exceptions.NameError'> Installation error: gdb.execute_unwinders function is missing: 

What can I do to get rid of it?

like image 702
AlwaysLearning Avatar asked Dec 15 '22 10:12

AlwaysLearning


1 Answers

What can I do to get rid of it?

GDB wants to install more than just the GDB binary. To make a complete installation, remove /usr/bin/gdb and do make install.

like image 87
Employed Russian Avatar answered Jun 11 '23 12:06

Employed Russian