Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用另一个版本的 openssl 编译 wpa_supplicant,然后是安装在构建系统上的那个。
为此,我在.config文件中设置了这些设置:
.config
CFLAGS += -I/custom-openssl/include LIBS += -L/custom-openssl/lib
但是,它仍然链接到默认安装的 openssl 版本。
您的-L指令将被添加到库列表的末尾.so以在链接期间查找文件。
-L
.so
相反,要么控制加载程序在加载二进制文件(可以编译成二进制文件)时应该查看哪个目录,要么使用LD_LIBRARY_PATH环境变量更改要搜索的库列表。
LD_LIBRARY_PATH
我也不得不设置LIBS_p。其他一切都很好。
LIBS_p