You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.2 KiB
54 lines
2.2 KiB
#!/usr/bin/env bash |
|
|
|
#export REDRAW_DEBUG=1 # To cause redraw- to happen slovly and obviously. |
|
#export ECORE_ERROR_ABORT=1 # To cause ecore to abort on errors. |
|
#export EVAS_NOCLEAN=1 # To cause evas to not unload modules. |
|
|
|
disp_num=":1" # Which display do you want the xnest to be on? |
|
|
|
main=$DISPLAY |
|
tmp=`mktemp` || exit 1 |
|
echo -e "run\nbt\nq\ny" > $tmp |
|
|
|
case "$1" in |
|
"") action="gdb -x $tmp --args" ; main=$disp_num ;; |
|
"-b") action="gdb -x $tmp --args" ; main=$disp_num ;; |
|
"-c") action="cgdb" ; main=$disp_num ;; |
|
"-d") action="ddd -display $main --args" ;; |
|
"-e") action="" ; e_args="-display $disp_num" ;; |
|
"-g") action="gdb --args" ; main=$disp_num ;; |
|
"-l") action="valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --log-file=valgrind_log" ; main=$disp_num ;; |
|
"-m") action="valgrind --tool=memcheck --log-file=valgrind_log" ; main=$disp_num ;; |
|
"-p") action="memprof --display=$main" ; main=$disp_num ;; |
|
"-r") action="memprof_raster --display=$main" ; main=$disp_num ;; |
|
"-s") action="strace -F -o strace_log" ;; |
|
"-v") action="valkyrie -display $main" ; main=$disp_num ;; |
|
*) echo -e "Usage : xnest.sh [debugger] ([enlightenment options])" |
|
echo -e "\tdefault option is -b" |
|
echo -e "\t-b use text debugger with auto backtrace\tgdb" |
|
echo -e "\t-c use curses debugger\t\t\t\tcgdb" |
|
echo -e "\t-d use the GUI debugger\t\t\t\tddd" |
|
echo -e "\t-e enlightenment with no debugging" |
|
echo -e "\t-g use text debugger\t\t\t\tgdb" |
|
echo -e "\t-l leak check\t\t\t\t\tvalgrind" |
|
echo -e "\t-m memory check\t\t\t\t\tvalgrind" |
|
echo -e "\t-p memory profiling\t\t\t\tmemprof" |
|
echo -e "\t-r raster's memory profiling\t\t\tmemprof_raster" |
|
echo -e "\t-s show syscalls\t\t\t\tstrace" |
|
echo -e "\t-v GUI memory check\t\t\t\tvalkyrie" |
|
echo -e "" |
|
echo -e "When you have finished with the text debugger, use the q command to quit." |
|
echo -e "The valgrind options will leave a log file with a name beginning with valgrind_log" |
|
exit |
|
;; |
|
esac |
|
e_args="`echo -- $@ | cut -d' ' -f2-` $e_args" |
|
|
|
Xnest $disp_num -ac & |
|
|
|
sleep 2 # Someone reported that it starts E before X has started properly. |
|
|
|
export DISPLAY=$main; export E_START="enlightenment_start"; $action enlightenment $e_args |
|
|
|
rm -f $tmp |
|
killall -TERM Xnest
|
|
|