mirror of
https://github.com/OpenRTX/OpenRTX
synced 2026-08-08 12:29:06 -04:00
10 lines
215 B
Bash
Executable file
10 lines
215 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
|
|
if [ `uname -m` = "aarch64" ]; then
|
|
qemu-x86_64 $SCRIPTPATH/bin2sgl.Linux.bin "$@"
|
|
else
|
|
$SCRIPTPATH/bin2sgl.Linux.bin "$@"
|
|
fi
|
|
|