dnsdist maybe doesn't build properly on s390x #17664
karelbilek
started this conversation in
General
Replies: 3 comments 2 replies
|
Meson seems to work on s390x |
1 reply
|
it seems docker supports s390x natively! 😮 with so with my PR here PowerDNS/pdns-builder#83 cross-building for s390x should "just work" |
1 reply
|
This diff makes the ubuntu-jammy dnsdist build (via diff --git a/builder-support/dockerfiles/Dockerfile.dnsdist b/builder-support/dockerfiles/Dockerfile.dnsdist
index b1f56b2168..72f3fb2b34 100644
--- a/builder-support/dockerfiles/Dockerfile.dnsdist
+++ b/builder-support/dockerfiles/Dockerfile.dnsdist
@@ -3,7 +3,8 @@ ARG BUILDER_CACHE_BUSTER=
RUN apk add --no-cache gcc g++ make tar autoconf automake protobuf-dev lua-dev \
libtool file boost-dev ragel python3 py3-yaml git libedit-dev \
- bash meson cargo
+ bash meson cargo \
+ python3-dev libffi-dev openssl-dev
COPY . /dnsdist/
WORKDIR /dnsdist/Note that |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I ran an AI code review bot on some private build changes on dnsdist and it found that s390x build doesn't properly work, because LuaJit is not properly installed.
From the bot output:
This is barely an issue; I put it just as a discussion - I didn't even knew s390x build works? Does Meson even work on s390x? By googling, IBM System/390 was discontinued by IBM in 2004.
All reactions