Software Archive
Read-only legacy content
17060 Discussions

Using Intel Inspector with Visual Studio breakpoints

mauja
Beginner
452 Views

Do Visual Studio breakpoints work when Inspector XE is being run?If I put a breakpoint at the line "i = 5;", below, execution stops at the closing brace of the "bar()" function. Execution does not stop at the breakpoint.

#include

void foo()

{

int i;

i = 5;

}

void bar()

{

foo();

}

void main()

{

int number;

printf("Type in a number\\n");

scanf("%d", &number);

bar();

}

0 Kudos
1 Reply
Kirill_R_Intel
Employee
452 Views
Current version of Intel Inspector XE 2011 doesn't support work with debugger. Some features in this area are planned in next major release.
0 Kudos
Reply