Skip to content

Commit

Permalink
fix build on board with no debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
gfwilliams committed Oct 10, 2024
1 parent 7105ca3 commit 1ee728e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jsparse.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ typedef enum {
/** Break when a function finishes execution */
EXEC_DEBUGGER_FINISH_FUNCTION = 32768,
EXEC_DEBUGGER_MASK = EXEC_DEBUGGER_NEXT_LINE | EXEC_DEBUGGER_STEP_INTO | EXEC_DEBUGGER_FINISH_FUNCTION,
#else
EXEC_DEBUGGER_MASK = 0,
#endif

EXEC_RUN_MASK = EXEC_YES|EXEC_BREAK|EXEC_CONTINUE|EXEC_RETURN|EXEC_INTERRUPTED|EXEC_EXCEPTION,
Expand Down

0 comments on commit 1ee728e

Please sign in to comment.