I also notice that if I do git submodule update and run ./gen.sh in the wrapper that secp256k1_wrapper/libsecp256k1-config.h changes a bit (nothing major from what I can tell tho)
First encountered when building nim-libp2p. I tried clearing cache at ~/.cache/nim but I might be missing some other cache or submodule update command.
Problem
Running
git submodule update --init
andnimble test
innim-secp256k1
at latest (https://github.com/status-im/nim-secp256k1/commit/5af866754b5f17c49e1a1f7f90f2fd0c235eee99) results in error/home/oskarth/git/status-im/nim-secp256k1/secp256k1.nim(105, 9) Error: undeclared identifier: 'csize_t'
.Workaround
If I checkout
HEAD~1
nimble test
works.Notes
I also notice that if I do
git submodule update
and run./gen.sh
in the wrapper thatsecp256k1_wrapper/libsecp256k1-config.h
changes a bit (nothing major from what I can tell tho)First encountered when building
nim-libp2p
. I tried clearing cache at~/.cache/nim
but I might be missing some other cache or submodule update command.