zoukankan      html  css  js  c++  java
  • larbin编译和配置

    ./configure

    sudo apt-get install xutils-dev

    make

    出现错误

    parse.c:113: error: conflicting types for ‘adns__parse_domain’
    internal.h:569: note: previous declaration of ‘adns__parse_domain’ was here

    把adns下internal.h中第568—571行

    adns_status adns__parse_domain(adns_state ads, int serv, adns_query qu,
             vbuf *vb, parsedomain_flags flags,
              const byte *dgram, int dglen, int *cbyte_io, int max);
    修改为:
    adns_status adns__parse_domain(adns_state ads, int serv, adns_query qu,
             vbuf *vb, adns_queryflags flags,
              const byte *dgram, int dglen, int *cbyte_io, int max);

    make

    出现错误

    修改iostream错误

    修改larbin.conf

    修改option.h

    make

    家教呢:www.jiajiaone.com
  • 相关阅读:
    关于数论的一些总结
    gym101431B
    4.29训练题解
    hdu4347
    5.13训练的一些题解
    5.20训练的一些题解
    hdu4796
    hdu5984
    bzoj1941 hdu5992
    hdu4307
  • 原文地址:https://www.cnblogs.com/scige/p/2962225.html
Copyright © 2011-2022 走看看