Hier ist der Quellcode von /path/to/hello.c:
Code: Select all
int main(int argc, char **argv)
{
system("/path/to/world");
return 0;
}
Code: Select all
int main(int argc, char **argv)
{
printf("Hello World");
return 0;
}
Wie debugge ich ein externes Programm in der Hauptfunktion in C mit einem Haltepunkt?
Update:
Nach dem Hinzufügen eines Haltepunkts in der Zeile „
Code: Select all
system("/path/to/world");Code: Select all
system("/path/to/world");Code: Select all
Step IntoWenn Sie auf die Schaltfläche „Code: Select all
Could not load source './stdlib/../sysdeps/posix/system.c': 'SourceRequest' not supported..
Mobile version