Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Using Intel Inspector with Visual Studio breakpoints

mauja
Beginner
466 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
466 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