-
Notifications
You must be signed in to change notification settings - Fork 974
Open
Description
Trying to build v24.11 on Debian 12:
python3 -m venv .venv && source .venv/bin/activate
pip3 install --upgrade pip poetry
poetry install
export RUST_PROFILE=release
./configure
make
lightningd/lightningd --version ### gives v24.11
sudo su
export RUST_PROFILE=release
make install
Result after make install:
mkdir -p /usr/local/libexec/c-lightning
mkdir -p /usr/local/libexec/c-lightning/plugins
mkdir -p /usr/local/share/man/man1
mkdir -p /usr/local/share/man/man5
mkdir -p /usr/local/share/man/man7
mkdir -p /usr/local/share/man/man8
mkdir -p /usr/local/share/doc/c-lightning
cp tools/hsmtool tools/lightning-hsmtool
PYTHONPATH=contrib/msggen python3 contrib/msggen/msggen/__main__.py bundle doc/schemas
Combining schemas from /home/clnuser/lightning/doc/schemas into /home/clnuser/lightning/contrib/msggen/msggen/schema.json
Created /home/clnuser/lightning/contrib/msggen/msggen/schema.json from 2 files
cargo build --profile=release --quiet --bin cln-grpc
error: failed to parse manifest at `/home/clnuser/lightning/Cargo.toml`
Caused by:
feature `strip` is required
consider adding `cargo-features = ["strip"]` to the manifest
make: *** [plugins/Makefile:300: target/release/cln-grpc] Error 101
nano /home/clnuser/lightning/Cargo.toml
[profile.release]
strip = "debuginfo"
[workspace]
resolver = "2"
members = [
"cln-rpc",
"cln-grpc",
"plugins",
"plugins/grpc-plugin",
]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels