Hi, I am seeing below compilation errors in drivers/event/opdl/, this is with cloned latest DPDK (git clone http://dpdk.org/git/dpdk).
.. .. /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c: In function âopdl_xstats_get_namesâ: /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c:89:2: error: âforâ loop initial declarations are only allowed in C99 mode for (uint32_t j = 0; j < max_num_port_xstat; j++) { ^ /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c:89:2: note: use option -std=c99 or -std=gnu99 to compile your code /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c: In function âopdl_xstats_getâ: /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c:124:2: error: âforâ loop initial declarations are only allowed in C99 mode for (uint32_t i = 0; i < n; i++) { ^ /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c: In function âopdl_xstats_get_by_nameâ: /home2/hpatil/e4/jan19-inbox-submit/dpdk/drivers/event/opdl/opdl_evdev_xsta ts.c:145:2: error: âforâ loop initial declarations are only allowed in C99 mode for (uint32_t i = 0; i < max_index; i++) { .. .. ^ Thanks, Harish