QtCreator Build Gdb: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 6: Line 6:


A msys Environment with MinGW is required to build the GDB on Windows.
A msys Environment with MinGW is required to build the GDB on Windows.
If it is missing "download":http://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/mingw-get-inst-20120426/mingw-get-inst-20120426.exe/download and install it to your system.
If it is missing [http://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/mingw-get-inst-20120426/mingw-get-inst-20120426.exe/download download] and install it to your system.


== Building ==
== Building ==

Revision as of 12:30, 2 March 2015


Building GDB

For Windows

A msys Environment with MinGW is required to build the GDB on Windows. If it is missing download and install it to your system.

Building

  • Go to qt-creator/dist/gdb
  • The directory has 3 Makefiles: linux, osx and mingw. Use the one that corresponds to your host os.
  • In case you need additional targets, edit the line starting with 'targets=' in the Makefile.
  • Run:
    make -f Makefile.<linux|osx|mingw>
    


Shipping

  • Extract qtcreator-gdb-<gdb version>-<host>.tar.gz

Testing

  • To test GDB just run the executable and type:
python print 23
  • When the GDB prints "23" everything works fine.

Downloads