This commit is contained in:
luboslenco
2025-02-26 08:47:09 +01:00
parent cbac67cbf5
commit 47bc985b42
651 changed files with 5013 additions and 5455 deletions
+10
View File
@@ -0,0 +1,10 @@
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
MACHINE_TYPE=`uname -m`
if [[ "$MACHINE_TYPE" == "aarch64"* ]]; then
KINC_PLATFORM=linux_arm64
elif [[ "$MACHINE_TYPE" == "x86_64"* ]]; then
KINC_PLATFORM=linux_x64
fi
elif [[ "$OSTYPE" == "darwin"* ]]; then
KINC_PLATFORM=macos
fi