Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I compile nDPI library on Windows?

Tags:

compilation

The library comes with instructions on how to compile it on Linux:

  • ./autogen.sh
  • ./configure
  • make

But I can't find any source on the Internet to help me compile this code directly on Windows, just as if I never had a Linux machine.

nDPI is hosted here: https://github.com/ntop/nDPI

like image 897
the0roamer Avatar asked Jun 19 '15 12:06

the0roamer


1 Answers

You could set up a linux-like CLI using Cygwin (very useful tool) and cross compile to Windows. It's not a complicated process and there is a lot of documentation around the Internet. I recommend using the MinGW 32 cross compiler.

like image 188
ChemiCalChems Avatar answered Sep 20 '22 12:09

ChemiCalChems