What exactly is -fno-builtin doing here?
问题 So I was reading Hacking the Art of Exploitation and in the book, they use the strcpy() function in their C code: 1 #include <stdio.h> 2 #include <string.h> 3 4 int main() { 5 char str_a[20]; 6 7 strcpy(str_a, "Hello, world!\n"); 8 printf(str_a); 9 } They then proceed to compile their source code and analyze it with gdb . He sets a breakpoint on line 6, the strcpy function, and line 8, but when setting a break on strcpy it reads the following: (gdb) break strcpy Function "strcpy" not defined.