krata: build kratactl for darwin

This commit is contained in:
Alex Zenla
2024-03-21 18:16:04 -07:00
parent ba00889efb
commit 597a1433b3
5 changed files with 97 additions and 15 deletions

View File

@ -5,9 +5,23 @@ TOOLS_DIR="$(dirname "${0}")"
RUST_TARGET="$("${TOOLS_DIR}/target.sh")"
TARGET_ARCH="$(echo "${RUST_TARGET}" | awk -F '-' '{print $1}')"
HOST_ARCH="$(uname -m)"
if [ "${HOST_ARCH}" != "${TARGET_ARCH}" ]
if [ "${HOST_ARCH}" = "arm64" ]
then
HOST_ARCH="aarch64"
fi
HOST_OS="$(uname -s)"
HOST_OS="$(echo "${HOST_OS}" | tr '[:upper:]' '[:lower:]')"
if [ -z "${TARGET_OS}" ]
then
TARGET_OS="${HOST_OS}"
fi
if [ "${HOST_ARCH}" != "${TARGET_ARCH}" ] || [ "${HOST_OS}" != "${TARGET_OS}" ]
then
echo "1"
else

View File

@ -11,16 +11,43 @@ then
TARGET_ARCH="$(uname -m)"
fi
if [ -z "${RUST_TARGET}" ]
if [ "${TARGET_ARCH}" = "arm64" ]
then
if [ "${TARGET_ARCH}" = "x86_64" ]
then
RUST_TARGET="x86_64-unknown-linux-${TARGET_LIBC}"
fi
TARGET_ARCH="aarch64"
fi
if [ "${TARGET_ARCH}" = "aarch64" ]
if [ -z "${TARGET_OS}" ]
then
TARGET_OS="$(uname -s)"
TARGET_OS="$(echo "${TARGET_OS}" | tr '[:upper:]' '[:lower:]')"
fi
if [ "${TARGET_OS}" = "darwin" ]
then
if [ -z "${RUST_TARGET}" ]
then
RUST_TARGET="aarch64-unknown-linux-${TARGET_LIBC}"
if [ "${TARGET_ARCH}" = "x86_64" ]
then
RUST_TARGET="x86_64-apple-darwin"
fi
if [ "${TARGET_ARCH}" = "aarch64" ]
then
RUST_TARGET="aarch64-apple-darwin"
fi
fi
else
if [ -z "${RUST_TARGET}" ]
then
if [ "${TARGET_ARCH}" = "x86_64" ]
then
RUST_TARGET="x86_64-unknown-linux-${TARGET_LIBC}"
fi
if [ "${TARGET_ARCH}" = "aarch64" ]
then
RUST_TARGET="aarch64-unknown-linux-${TARGET_LIBC}"
fi
fi
fi
@ -41,7 +68,7 @@ if [ "${KRATA_TARGET_C_MODE}" = "1" ]
then
if [ -z "${C_TARGET}" ]
then
echo "ERROR: Unable to determine C_TARGET, your architecture may not be supported by krata." > /dev/stderr
echo "ERROR: Unable to determine C_TARGET, your os or architecture may not be supported by krata." > /dev/stderr
exit 1
fi
@ -49,7 +76,7 @@ then
else
if [ -z "${RUST_TARGET}" ]
then
echo "ERROR: Unable to determine RUST_TARGET, your architecture may not be supported by krata." > /dev/stderr
echo "ERROR: Unable to determine RUST_TARGET, your os or architecture may not be supported by krata." > /dev/stderr
exit 1
fi