The Intel® Distribution for GDB* application debugger is a companion tool to Intel® compilers and libraries. It delivers a unified debugging experience that allows you to efficiently and simultaneously debug cross-platform parallel and threaded applications developed in Data Parallel C++, C, C++, OpenMP*, SYCL*, or Fortran.
Questions tagged [intel-gdb]
2 questions
0
votes
1 answer
How to debug the below DPC++ program with the kernel offloaded to the GPU?
I want to run a DPC++ program in Intel GNU Project Debugger. I have downloaded the Intel GDB from Intel OneAPI Basekit. It comes preinstalled with OneAPI Basekit.
The link to download is…

AlekhyaV - Intel
- 580
- 3
- 21
0
votes
0 answers
Intel's oneapi C compiler not producing debug information
I have some simple code
#include
#include
int main()
{
printf("Hello world\n");
return EXIT_SUCCESS;
}
I would like to debug it so I compile like so
icl.exe /Z7 /debug:all /Od main.c -o test.exe
I then run the…

DJames
- 571
- 3
- 17