xref: /OK3568_Linux_fs/buildroot/package/nodejs/v8-qemu-wrapper.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
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