()
| 305 | |
| 306 | |
| 307 | def build_dpdk(): |
| 308 | check_essential() |
| 309 | download_dpdk(quiet=True) |
| 310 | |
| 311 | # not configured yet? |
| 312 | if not os.path.exists('%s/build' % DPDK_DIR): |
| 313 | configure_dpdk() |
| 314 | |
| 315 | print('Building DPDK...') |
| 316 | nproc = int(cmd('nproc', quiet=True)) |
| 317 | cmd('make -j%d -C %s EXTRA_CFLAGS=%s' % (nproc, DPDK_DIR, DPDK_CFLAGS)) |
| 318 | |
| 319 | |
| 320 | def generate_protobuf_files(): |
no test coverage detected