Skip to content

Commit

Permalink
docker: remove the configure --enable-developer
Browse files Browse the repository at this point in the history
Currently cln is moving to a runtime like feature, so
this enable to add --developer at the lightnind invoication.

This break a lot of scripts but looks more cool :)

Unknown option '--enable-developer'
Usage: ./configure [--reconfigure] [setting=value] [options]
If --reconfigure is specified, config.vars will set defaults.
Default settings:
CSANFLAGS =
  CC (default cc)
  CWARNFLAGS (default -Wall -Wundef -Wmissing-prototypes -Wmissing-declarations -Wstrict-prototypes -Wold-style-definition -Werror -Wno-maybe-uninitialized -Wshadow=local)
  COPTFLAGS (default -Og)
  CDEBUGFLAGS (default -std=gnu11 -g -fstack-protector-strong)
  CONFIGURATOR_CC (default cc)
    To override compile line for configurator itself
  PYTEST (default python3 -m pytest)
  VALGRIND (default 0)
Options include:
  --prefix= (default /usr/local)
    Prefix for make install
  --enable/disable-debugbuild (default disable)
    Extra debug checks in the build, good for testing
  --enable/disable-compat (default enable)
    Compatibility mode, good to disable to see if your software breaks
  --enable/disable-valgrind (default (autodetect))
    Run tests with Valgrind
  --enable/disable-static (default disable)
    Static link sqlite3 and zlib libraries
  --enable/disable-coverage (default disable)
    Compile with Clang coverage instrumentation
  --enable/disable-address-sanitizer (default disable)
    Compile with address-sanitizer
  --enable/disable-ub-sanitizer (default disable)
    Compile with undefined behaviour sanitizer
  --enable/disable-fuzzing (default disable)
    Compile with fuzzing
  --enable/disable-rust (default enable)
    Compile with Rust support

Reported-by: Github Action
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Sep 21, 2023
1 parent ad3129d commit 47aca52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ RUN git config --global user.name "John Doe" && \
cd lightning && \
poetry config virtualenvs.create false && \
poetry install && \
./configure --enable-developer && \
./configure && \
make -j$(nproc)

RUN mkdir lnprototest
Expand Down

0 comments on commit 47aca52

Please sign in to comment.