Allow to disable JBM tracefile writing via a define
- Related issues: N/A
- Requested reviewers: @pihlajakuja
Reason why this change is needed
JBM tracefile writing is a testing/scripting feature needed for the CLI decoder app but not relevant for real-world implementations. It is useful to have a way to disable it without the need to modify the source code.
Description of the change
Wrapped definition of SUPPORT_JBM_TRACEFILE in an #ifndef NO_SUPPORT_JBM_TRACEFILE. That way JBM tracefile writing can be disabled with a compiler option (e.g. -DNO_SUPPORT_JBM_TRACEFILE) without having to modify the source code.
Affected operating points
N/A