blob: fca64a5692996573b846cb2f9a87049c7c032128 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001#!/bin/sh
2
3if [ -z "$OECORE_NATIVE_SYSROOT" ]; then
Patrick Williamsdb4c27e2022-08-05 08:10:29 -05004 exec "meson.real" "$@"
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08005fi
6
Andrew Geissler595f6302022-01-24 19:11:47 +00007if [ -z "$SSL_CERT_DIR" ]; then
Patrick Williams2390b1b2022-11-03 13:47:49 -05008 export SSL_CERT_DIR="$OECORE_NATIVE_SYSROOT/etc/ssl/certs/"
Andrew Geissler595f6302022-01-24 19:11:47 +00009fi
10
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080011# If these are set to a cross-compile path, meson will get confused and try to
12# use them as native tools. Unset them to prevent this, as all the cross-compile
13# config is already in meson.cross.
14unset CC CXX CPP LD AR NM STRIP
15
Patrick Williams2390b1b2022-11-03 13:47:49 -050016for arg in "$@"; do
17 case "$arg" in
18 -*) continue ;;
19 *) SUBCMD="$arg"; break ;;
20 esac
21done
22
23if [ "$SUBCMD" = "setup" ] || [ -d "$SUBCMD" ]; then
24 MESON_SUB_OPTS=" \
25 --cross-file="$OECORE_NATIVE_SYSROOT/usr/share/meson/${TARGET_PREFIX}meson.cross" \
26 --native-file="$OECORE_NATIVE_SYSROOT/usr/share/meson/meson.native" \
27 "
28fi
29
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080030exec "$OECORE_NATIVE_SYSROOT/usr/bin/meson.real" \
Patrick Williams2390b1b2022-11-03 13:47:49 -050031 "$@" \
32 $MESON_SUB_OPTS