Code Monkey home page Code Monkey logo

Comments (4)

dubuqingfeng avatar dubuqingfeng commented on June 10, 2024 1

JSON parsing and encoding (bundled version will be used unless --with-system-univalue passed to configure)

https://github.com/bitcoin-sv/bitcoin-sv/blob/master/doc/build-unix.md

univalue_escapes.h 这个文件是需要构建 univalue 然后生成的(https://github.com/bitcoin-sv/bitcoin-sv/tree/master/src/univalue ) ,尝试改一下 Dockerfile.bsv ,增加这部分吧

from btcpool-abandoned.

dubuqingfeng avatar dubuqingfeng commented on June 10, 2024

需要在 bitcoin 代码里引入 univalue 库

from btcpool-abandoned.

time0x avatar time0x commented on June 10, 2024

需要在bitcoin代码里发布univalue库

谢谢。
我刚修改了 Dockerfile.bsv ,添加了构建 univalue,最终还是这个错误

# Build univalue static library
RUN cd /tmp && \
    wget https://github.com/jgarzik/univalue/archive/v1.0.5.tar.gz && \
    [ $(sha256sum v1.0.5.tar.gz | cut -d " " -f 1) = "59eee225b078066c60277cab6dd93e74a0e7bed2be455db507eb39bd4f8e4319" ] && \
    tar zxf v1.0.5.tar.gz && \
    cd univalue-1.0.5 && \
    ./autogen.sh && \
    ./configure && \
    make -j${BUILD_JOBS} && \
    rm -rf /tmp/*

from btcpool-abandoned.

time0x avatar time0x commented on June 10, 2024

解决了,谢谢 @dubuqingfeng
用了个笨办法,在 include 的最高优先级目录下添加了缺失文件。 - -#

from btcpool-abandoned.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.