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

build-aux: Add a Meson cross-file for i386 builds with -m32


For now, this requires adding /usr/local/bin/i686-linux-gnu-pkg-config
to the sysroot by hand:

    #!/bin/sh
    export PKG_CONFIG_LIBDIR="/usr/lib/i386-linux-gnu/pkgconfig:/usr/share/pkgconfig"
    exec pkg-config "$@"

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent bee0d47c
No related branches found
No related tags found
No related merge requests found
Pipeline #4402 passed
[binaries]
c = '/usr/bin/gcc-4.8'
cpp = '/usr/bin/g++-4.8'
ar = '/usr/bin/ar'
strip = '/usr/bin/strip'
pkgconfig = '/usr/local/bin/i686-linux-gnu-pkg-config'
exe_wrapper = '/usr/bin/env'
[properties]
c_args = ['-m32']
cpp_args = ['-m32']
c_link_args = ['-m32']
cpp_link_args = ['-m32']
libdir = 'lib/i386-linux-gnu'
[host_machine]
system = 'linux'
cpu_family = 'x86'
cpu = 'i686'
endian = 'little'
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