mirror of
https://github.com/rxrbln/t2sde.git
synced 2025-05-08 20:21:59 +08:00
16 lines
213 B
Bash
16 lines
213 B
Bash
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
[ "$QEMU" ] || exit 43
|
|
|
|
cc=$(echo $SYSROOT/TOOLCHAIN/cross/bin/*-cc)
|
|
[ -e "$cc" ] || exit 43
|
|
|
|
cd $SYSROOT
|
|
exe=$$.exe
|
|
|
|
$cc -o $exe ${0%.cmd}.c -lm
|
|
$QEMU -chroot $SYSROOT $exe || true
|
|
#rm -f $exe
|