C++ – gdb: no loadable sections found in added symbol-file system-supplied DSO at 0x#number#

cdebugginggdbqt

When I try to run debugging on qt-Creator via GDB I allways gain a message in Application Output window :

no loadable sections found in added symbol-file system-supplied DSO at 0x7fff931fe000

The number at the end may be different.
This message ocure always. For example in "Hello world!" project main.cpp:

#include <iostream> 
using namespace std;
int main()
{
    cout << "Hello World!" << endl;
    return 0;
}

CMakeList.txt – generated in qt-Creator by default:

project(Cmake_debug_warning)
cmake_minimum_required(VERSION 2.8)
aux_source_directory(. SRC_LIST)
add_executable(${PROJECT_NAME} ${SRC_LIST})

Do I have pay attention to these messages? What does this message mean?
Forgive me for this stupid question, but I would like to know how to get rid of this?

Im working on

  • Ubuntu 12.04 LTS (64 bit)
  • Qt Creator 3.1.2
  • GNU gdb (GDB) 7.7.1
  • gcc(g++) 4.8.1

Best Answer

Do I have pay attention to these messages?

No, you can safely ignore them.

What does this message mean?

See this answer.

Related Topic