Programmieren: Difference between revisions
From Elch-Wiki
Jump to navigationJump to search
(New page: Zusätzlich installieren: * automake * autoconf) |
No edit summary |
||
(4 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
* automake | * automake | ||
* autoconf | * autoconf | ||
GNU-Automake-Zyklus: | |||
* (optional: acscan) | |||
* aclocal | |||
* autoconf | |||
* automake | |||
Compile-Zyklus: | |||
* ./configure | |||
* make | |||
* make install | |||
Allgemeines: | |||
* Source-Files und Linker-Flags in Makefile.am definieren | |||
GDB: | |||
* Doku: [http://sourceware.org/gdb/current/onlinedocs/gdb_6.html] | |||
* Start: gdb <file> <proc-id to attach to> | |||
* Signal ignorieren: handle SIGUSR1 nostop | |||
* Laufen lassen nach attach: continue / c |
Latest revision as of 22:18, 19 June 2020
Zusätzlich installieren:
- automake
- autoconf
GNU-Automake-Zyklus:
- (optional: acscan)
- 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