mirror of
https://github.com/tstack/lnav
synced 2024-11-17 15:29:40 +00:00
[build] Remove libexecinfo dependency on musl builds.
muslc does not expose the frame related information to execinfo. Compiling with libexecinfo on muslc builds doesn't really serve any purpose.
This commit is contained in:
parent
c86081adcb
commit
ed72362b50
4
.github/actions/muslbuilder/Dockerfile
vendored
4
.github/actions/muslbuilder/Dockerfile
vendored
@ -10,9 +10,7 @@ RUN apk update && apk add --no-cache \
|
||||
automake \
|
||||
build-base \
|
||||
curl \
|
||||
git \
|
||||
libexecinfo-dev \
|
||||
libexecinfo-static
|
||||
git
|
||||
|
||||
|
||||
RUN mkdir -p /fake.root /extract
|
||||
|
2
.github/actions/muslbuilder/entrypoint.sh
vendored
2
.github/actions/muslbuilder/entrypoint.sh
vendored
@ -18,7 +18,7 @@ cd lbuild
|
||||
CXXFLAGS='-static -g1 -gz=zlib -U__unused -no-pie -O2' \
|
||||
LDFLAGS="-L/fake.root/lib" \
|
||||
CPPFLAGS="-I/fake.root/include" \
|
||||
LIBS="-L/fake.root/lib -lexecinfo -lssh2 -llzma -lssl -lcrypto -lz -llz4" \
|
||||
LIBS="-L/fake.root/lib -lssh2 -llzma -lssl -lcrypto -lz -llz4" \
|
||||
--enable-static \
|
||||
PATH="/fake.root/bin:${PATH}"
|
||||
make -j2
|
||||
|
Loading…
Reference in New Issue
Block a user