09-03-2020 03:15 AM - edited 09-03-2020 03:30 AM
Hello
To generate debug info while compiling via v++ command-line flow the -g option should be included.
How can I generate the same debug info via tcl code? I build the .xo file via tcl and then link it via v++. but I cannot launch the live wave form as the debug info is missing.
09-03-2020 05:58 AM
The following xrt.ini file will enable maximum information gathering when the application is run:
[Debug]
profile=true
power_profile=true
timeline_trace=true
data_transfer_trace=coarse
stall_trace=all
09-04-2020 03:34 AM - edited 09-04-2020 05:04 AM
Hi@hongh
I think what you mentioned here is for debug information gathering on runtime, but in the first place the kernels should be compiled while debugging is enabled similar to what v++ -g does.