When compiling libnl, the linux Wireless Configuration commands have been updated to the iw era. Many people are still using iwpriv. To compile iw at www.2cto.com, you need to use a library: libnl. Independent nelink project. I cannot compile the code obtained from the git repository for this project. From
Http://www.infradead.org /~ Tgr/libnl/files/libnl-1.1.tar.gz download, can be compiled. At compilation, ../include/netlink-local.h: 218: error: 'ulong _ MAX 'undeclared
(First use in this function) error. The solution is to add a header file: # include <limits. h> compilation step: www.2cto.com 1. First execute configure. 2. Execute common make. There should be no errors to compile. /lib/libnl. so. 3. consider cross-compilation, such as compiling to the arm platform and modifying Makefile. opts, CC: = arm-linux-gcc AR: = arm-linux-ar ifeq ($ (CC), arm-linux-gcc) CFLAGS + =-Wall-ggdbendif and then compile. You can.