Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

warning: Can not parse XML library list; XML support was disabled at compile time error

Tags:

parsing

xml

gdb

I am using GDB debugger on Windows 64bit system and I want to see what are the values stored in the registers, but after I have attached to the process I keep getting "warning: Can not parse XML library list; XML support was disabled at compile time" error. I have already tried installing the Expat XML parser and tried running the command but for some random reason it doesn't recognize it even I have set the PATH for it.

Could someone advice me what I should do with XML parser and where I should extract the files of it?

  • Den
like image 416
user3287975 Avatar asked Oct 19 '22 19:10

user3287975


1 Answers

GDB you are running was built without XML support, so there is nothing you can do to fix this executable.

You can either find another build of GDB or build it from source yourself (and make sure you have libexpat-dev installed on build machine).

like image 197
dbrank0 Avatar answered Nov 15 '22 09:11

dbrank0