编译报错
...
gcc -pthread -g -O2 -static -o ndpiReader ndpi_util.o ../src/lib/ -lpcap -lm
/usr/bin/ld: 找不到 -lm
/usr/bin/ld: 找不到 -lpthread
/usr/bin/ld: 找不到 -lc
解决办法:
yum install -y libstdc++-static
yum install -y glibc-static
编译报错
...
gcc -pthread -g -O2 -static -o ndpiReader ndpi_util.o ../src/lib/ -lpcap -lm
/usr/bin/ld: 找不到 -lm
/usr/bin/ld: 找不到 -lpthread
/usr/bin/ld: 找不到 -lc
解决办法:
yum install -y libstdc++-static
yum install -y glibc-static