Giter Club home page Giter Club logo

Comments (6)

hayesgm avatar hayesgm commented on July 27, 2024

Sorry, this is an issue with the libsecp256k1 library, which has a configuration issue. Can you try running this (from here):

export "CFLAGS=-I/usr/local/include -L/usr/local/lib"
cd deps/libsecp256k1 && rebar compile
mix compile

from abi.

PavelVesnin avatar PavelVesnin commented on July 27, 2024

Yes, it works. Thank you!

from abi.

PavelVesnin avatar PavelVesnin commented on July 27, 2024

@hayesgm I'm tried to make PR with libsecp256k1 compile documentation, but it's not allowed.
Should I create PR from fork?

from abi.

PavelVesnin avatar PavelVesnin commented on July 27, 2024

Also, could you ever trying to run ABI in docker based on alpine?

from abi.

hayesgm avatar hayesgm commented on July 27, 2024

@PavelVesnin Here's (more or less) what my Dockerfile looks like for running ABI on Alpine Linux:

FROM bitwalker/alpine-elixir:1.6.1

RUN apk update

RUN apk add --update --no-cache --virtual build-dependencies \
	musl-dev=1.1.18-r3 \
	python2 automake libtool autoconf build-base gcc abuild \
	binutils binutils-doc gcc-doc

RUN apk add --update --no-cache --virtual node-dependencies \
	git make g++ nodejs nodejs-npm python2

RUN apk add --no-cache gmp-dev

# Add your files
ADD . /deploy/app

# Next, run deps.build on our project
RUN cd /deploy/app && mix deps.get && mix deps.compile

# and compile libsecp256ka
RUN cd /deploy/app/deps/libsecp256k1 && /opt/app/.mix/rebar compile

# run full compilation
RUN mix do deps.get, compile

# remove dev dependencies
RUN apk del build-dependencies node-dependencies

# run mix on start
CMD mix run --no-halt

from abi.

atoulme avatar atoulme commented on July 27, 2024

With pull request #23 we have upgraded to the latest libsecp256k1 library which should install correctly without the need for extra steps.

Please test it out and let us know.

from abi.

Related Issues (12)

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.