Add meson cross files for building i686 targets using gcc on x86_64 linux hosts.
Uusage example: meson --cross-file config/x86/cross-i686-linux-gcc build-i686 ninja -C build-i686 Signed-off-by: Lance Richardson <lance.richard...@broadcom.com> --- Red Hat distros use a different name for the 32-bit pkg-config command from most other distros, maybe there is a better way to handle this than using separate files. Others will probably have better naming suggestions for the files. config/x86/cross-i686_linux_gcc | 15 +++++++++++++++ config/x86/cross-i686_redhat_gcc | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 config/x86/cross-i686_linux_gcc create mode 100644 config/x86/cross-i686_redhat_gcc diff --git a/config/x86/cross-i686_linux_gcc b/config/x86/cross-i686_linux_gcc new file mode 100644 index 000000000..a4169f969 --- /dev/null +++ b/config/x86/cross-i686_linux_gcc @@ -0,0 +1,15 @@ +[binaries] +c = 'gcc' +ar = 'gcc-ar' +strip = 'strip' +pkgconfig = 'i686-linux-gnu-pkg-config' + +[properties] +c_args = ['-m32'] +c_link_args = ['-m32'] + +[host_machine] +system = 'linux' +cpu_family = 'x86' +cpu = 'i686' +endian = 'little' diff --git a/config/x86/cross-i686_redhat_gcc b/config/x86/cross-i686_redhat_gcc new file mode 100644 index 000000000..2ae8b33dd --- /dev/null +++ b/config/x86/cross-i686_redhat_gcc @@ -0,0 +1,15 @@ +[binaries] +c = 'gcc' +ar = 'gcc-ar' +strip = 'strip' +pkgconfig = 'i686-redhat-linux-gnu-pkg-config' + +[properties] +c_args = ['-m32'] +c_link_args = ['-m32'] + +[host_machine] +system = 'linux' +cpu_family = 'x86' +cpu = 'i686' +endian = 'little' -- 2.25.1