Please see the "gdb_support" in demos to find out how to use GDB to debug your apps running upon Occlum.
6 lines
67 B
Bash
Executable File
6 lines
67 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
rm -rf sample
|
|
occlum-gcc -g sample.c -o sample
|