Skip to content
Snippets Groups Projects
Commit 1767acd1 authored by tumbili's avatar tumbili
Browse files

use correct startup scipt depending on simulator

parent 0c3f5194
No related branches found
No related tags found
No related merge requests found
......@@ -68,12 +68,12 @@ touch rootfs/eeprom/parameters
# Start Java simulator
if [ "$debugger" == "lldb" ]
then
lldb -- mainapp ../../../../$rc_script
lldb -- mainapp ../../../../${rc_script}_${program}
elif [ "$debugger" == "gdb" ]
then
gdb --args mainapp ../../../../$rc_script
gdb --args mainapp ../../../../${rc_script}_${program}
else
./mainapp ../../../../$rc_script
./mainapp ../../../../${rc_script}_${program}
fi
if [ "$3" == "jmavsim" ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment