如何将库添加到wscript文件中

Waf - How to add a library to a wscript file?

本文关键字:wscript 文件 添加      更新时间:2023-10-16

我想将c++库cpp-netlib添加到wscript中。然后,如果我运行dpkg -l libcppnetlib0,我得到:

libcppnetlib0: 0.11.0-1     amd64        C++ Network Library

运行dpkg -L libcppnetlib0,我得到:

/.
/usr
/usr/lib
/usr/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu/cppnetlib-uri.so.0.11.0
/usr/lib/x86_64-linux-gnu/cppnetlib-server-parsers.so.0.11.0
/usr/lib/x86_64-linux-gnu/cppnetlib-client-connections.so.0.11.0
/usr/share
/usr/share/lintian
/usr/share/lintian/overrides
/usr/share/lintian/overrides/libcppnetlib0
/usr/share/doc
/usr/share/doc/libcppnetlib0
/usr/share/doc/libcppnetlib0/copyright
/usr/share/doc/libcppnetlib0/changelog.Debian.gz
/usr/lib/x86_64-linux-gnu/libcppnetlib-server-parsers.so.0
/usr/lib/x86_64-linux-gnu/libcppnetlib-client-connections.so.0
/usr/lib/x86_64-linux-gnu/libcppnetlib-uri.so.0

因为我需要libcppnetlib-uri, libcppnetlib-server-parsers, libcppnetlib-client-connections,在wscript中我添加了以下字段:

conf.check_cxx(lib='cppnetlib-uri',uselib_store='CPPNETLIBU', define_name='HAVE_CPPNETLIBU',mandatory=True)
conf.check_cxx(lib='cppnetlib-server-parsers',uselib_store='CPPNETLIBS', define_name='HAVE_CPPNETLIBS',mandatory=True)
conf.check_cxx(lib='cppnetlib-client-connections',uselib_store='CPPNETLIBC', define_name='HAVE_CPPNETLIBC',mandatory=True)

然后我在这里添加了三个引用(CPPNETLIBU, CPPNETLIBC, CPPNETLIBS):

libndn_cxx = dict(
        target="ndn-cxx",
        name="ndn-cxx",
        source=bld.path.ant_glob('src/**/*.cpp',
                                 excl=['src/security/**/*-osx.cpp',
                                       'src/**/*-sqlite3.cpp']),
        headers='src/common-pch.hpp',
        use='version BOOST CRYPTOPP OPENSSL SQLITE3 RT PTHREAD CPPNETLIBC CPPNETLIBU CPPNETLIBS',
        includes=". src",
        export_includes="src",
        install_path='${LIBDIR}')

但是,当我启动。/waf configure时,它失败了,它找不到我指定的库。

错误是:

[199/200] Linking build/examples/clientMat
examples/clientMat.cpp.2.o: In function `construct<boost::network::http::impl::normal_delegate, asio::io_service&>':
/usr/include/c++/4.9/ext/new_allocator.h:120: undefined reference to `boost::network::http::impl::normal_delegate::normal_delegate(asio::io_service&)'
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/libcppnetlib-client-connections.so: undefined reference to `boost::system::system_category()'
/usr/lib/gcc/x86_64-linux-gnu/4.9/../../../x86_64-linux-gnu/libcppnetlib-client-connections.so: undefined reference to `boost::system::generic_category()'
collect2: error: ld returned 1 exit status

我(也许?)在/usr/local/lib/pkgconfig中没有任何引用的情况下发现了这个问题。的确,运行:ls /usr/local/lib/pkgconfig,我有一些.pc文件,但没有关于cppnetlib。我试着写我自己的,但没有成功。

如果问题在这里,实际上我需要一个关于如何正确编写.pc文件的帮助。

这个问题是一个很好的起点,但我没有成功:waf -如何添加外部库到wscript_build文件

您可以像https://waf.io/book/

中描述的那样使用bld.read_shlib()

示例代码(main.c):

#include <stdio.h>
#include <math.h>
int main(int argc, char* argv[]) {
    printf("cos(0.123456)=%fn", cos(0.123456));
    return 0;
}

使用数学库构建脚本:

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
top = '.'
out = 'build'
VERSION = '0.0.0'
APPNAME = 'app'
def options(opt):
    opt.load('compiler_c')
def configure(conf):
    conf.load('compiler_c')
    conf.check_cc(lib='m', cflags='-Wall', uselib_store='M')
    conf.check(header_name='math.h', features='c cprogram')
def build(bld):
    bld.read_shlib('m')
    bld.program(target='app', source='main.c')