I'm just trying to debug code from gdb on Mac OSX version 10.12, but always get this unknown error when running my program in gdb.
I encoded gdb after installation and compiled my code with the -g flag.
This is what happens:
computer:hello user$ gdb a.out GNU gdb (GDB) 7.12 Copyright (C) 2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-apple-darwin16.0.0". Type "show configuration" for configuration details. For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Find the GDB manual and other documentation resources online at: <http://www.gnu.org/software/gdb/documentation/>. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from a.out...Reading symbols from /Users/user/Documents/Programming/hello/a.out.dSYM/Contents/Resources/DWARF/a.out...done. done. (gdb) r Starting program: /Users/user/Documents/Programming/hello/a.out During startup program terminated with signal ?, Unknown signal.
Temporary I received a SIGTRAP signal, but I could not understand why it now throws the Unknown signal again.
c gdb macos
Mario P. Waxenegger
source share