Programmieren: Difference between revisions

From Elch-Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 18: Line 18:


GDB:
GDB:
* Doku: [http://sourceware.org/gdb/current/onlinedocs/gdb_6.html]
* Start: gdb <file> <proc-id to attach to>
* Start: gdb <file> <proc-id to attach to>
* Signal ignorieren: handle SIGUSR1 nostop
* Signal ignorieren: handle SIGUSR1 nostop
* Laufen lassen nach attach: continue / c
* Laufen lassen nach attach: continue / c

Revision as of 12:11, 11 March 2007

Zusätzlich installieren:

  • automake
  • autoconf

GNU-Automake-Zyklus:

  • aclocal
  • autoconf
  • automake

Compile-Zyklus:

  • ./configure
  • make
  • make install

Allgemeines:

  • Source-Files und Linker-Flags in Makefile.am definieren

GDB:

  • Doku: [1]
  • Start: gdb <file> <proc-id to attach to>
  • Signal ignorieren: handle SIGUSR1 nostop
  • Laufen lassen nach attach: continue / c