1#!/usr/bin/env sh 2 3# Pass -r to qemu-user as to trick glibc into not errorings out if the host kernel 4# is older than the target kernel. 5exec @QEMU_USER@ -r @TOOLCHAIN_HEADERS_VERSION@ \ 6 @QEMU_USERMODE_ARGS@ \ 7 -L "${STAGING_DIR}/" \ 8 "$@" 9 10