-
Notifications
You must be signed in to change notification settings - Fork 0
/
feia_run
32 lines (25 loc) · 813 Bytes
/
feia_run
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# rename to the filename apropite to the intended app. Also add in as many platforms as needed.
# note that with the expection of one or two, IBM unixes show serial numbers only on "-m", this script is also not for them at all. This script is ment for
# real-time graphics programs like video-games running on unix.
#!/bin/sh
case "$(uname -s -m)" in
Darwin arm64)
echo "runing for darwin on arm_64"
./Architecture/Aarch64/Darwin/not_serious_del
;;
Linux aarch64)
echo "runing for linux on arm_64"
./
;;
Darwin x86_64)
echo "runing for darwin on x86_64"
./Architecture/Aarch64/Darwin/not_serious_delx8664
;;
Linux x86_64)
echo "runing for linux on x86_64"
./
;;
*)
echo "This program is not compatible, please read the manual that came with it or ask online."
;;
esac