Skip to content
Snippets Groups Projects
Commit 05967a1c authored by Simon McVittie's avatar Simon McVittie
Browse files

build: Take multiarch tuple from Debian packaging


This allows steam-runtime-tools to be built as a Debian package with
nearly full functionality for as-yet-unsupported architectures, such as
the ARM family.

Builds using the upstream build system won't be fully functional without
something like -Dmultiarch_tuple=arm-linux-gnueabi (so maybe don't use
a Raspberry Pi as your primary development machine yet), and there is no
well-known constant SRT_ABI_xxx for non-x86 architectures.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 340c4080
No related branches found
No related tags found
1 merge request!77Look for vulkaninfo, wflinfo in SRT_HELPERS_PATH
Pipeline #1890 passed
......@@ -40,6 +40,7 @@ override_dh_auto_configure:
--libexecdir=/usr/libexec \
-Dgtk_doc=$(gtk_doc_has_cflags) \
-Dintrospection=false \
-Dmultiarch_tuple=$(DEB_HOST_MULTIARCH) \
$(NULL)
override_dh_auto_build:
......
......@@ -155,7 +155,9 @@ pkglibexecdir = join_paths(
'steam-runtime-tools-' + api_major,
)
if host_machine.cpu_family() == 'x86_64'
if get_option('multiarch_tuple') != ''
multiarch = get_option('multiarch_tuple')
elif host_machine.cpu_family() == 'x86_64'
multiarch = 'x86_64-linux-gnu'
elif host_machine.cpu_family() == 'x86'
multiarch = 'i386-linux-gnu'
......
......@@ -25,3 +25,10 @@ option(
value : true,
description : 'enable man pages',
)
option(
'multiarch_tuple',
type : 'string',
value : '',
description : 'Debian-style multiarch tuple',
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment