温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

在ubuntu上编译 wpa_supplicant-2.6

发布时间:2020-06-21 16:10:58 来源:网络 阅读:1025 作者:FrankNie0101 栏目:编程语言

1.1 libnl-3.4.0
./configure --prefix=/home/fnie/wpa/out/libnl --disable-static
make
make check
make install
// to install the API documentation:
mkdir -vp /home/fnie/wpa/out/libnl/doc
tar -xf ../libnl-doc-3.4.0.tar.gz --strip-components=1 --no-same-owner -C /home/fnie/wpa/out/libnl/doc

1.2 libnl-1.1-stable
后面编译 wpa_supplicant-2.6 时报错,"can't find -lnl",所以编译 libnl-1.1-stable。
./configure --prefix=/home/fnie/wpa/out/libnl-1.1-stable
make
make check
make install
// to install the API documentation:
mkdir -vp /home/fnie/wpa/out/libnl/doc
tar -xf ../libnl-doc-3.4.0.tar.gz --strip-components=1 --no-same-owner -C /home/fnie/wpa/out/libnl/doc

  1. openssl
    ./config shared --prefix=/home/fnie/wpa/out/ssl/prefix --openssldir=/home/fnie/wpa/out/ssl/configuration
    make
    make test
    make install

  2. wpa_supplicant-2.6
    cd ~/wpa/wpa_supplicant-2.6/wpa_supplicant
    cp defconfig .config
    修改配置文件 .config,在"#Uncomment following two linee and fix..."下增加如下语句,用来添加openssl和libnl的头文件和库文件目录,更新编译链接环境变量:
    CFLAGS += -I/home/fnie/wpa/out/ssl/prefix/include
    CFLAGS += -I/home/fnie/wpa/out/libnl/include
    LIBS += -L/home/fnie/wpa/out/ssl/prefix/lib
    LIBS += -L/home/fnie/wpa/out/libnl/lib
    LIBS += -L/home/fnie/wpa/out/libnl-1.1-stable/lib
    LIBS_p += -L/home/fnie/wpa/out/ssl/prefix/lib

    执行 make 进行编译,成功后生成三个目标文件 wpa_supplicant, wpa_cli, wpa_passphrase 。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI