-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmacos.sh
128 lines (100 loc) · 3.62 KB
/
macos.sh
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/bin/sh
set +e
echo "Starting MaoOS build..."
# Check the necessary libraries and binaries are installed
# Check for Rust and Cargo
if [ ! $(command -v rustc) ]; then
echo "Rust compiler (rustc) not found. Please install Rust from https://www.rust-lang.org/"
exit 1
fi
# Check for Xcode Command Line Tools
if [ ! $(command -v xcrun) ]; then
echo "Xcode Command Line Tools not installed. Please install via Xcode Preferences or run 'xcode-select --install'."
exit 1
fi
# Check for Xcode
if [ ! $(command -v xcodebuild) ]; then
echo "Xcode not found (optional, but recommended for iOS development)."
fi
#add rust target for darwin/macos
cd src/*/rust
version_line=$(grep -E '^version = .*' Cargo.toml)
# Extract the version string after the '='
if [ ! -z "$version_line" ]; then
version=$(echo "$version_line" | cut -d '=' -f2 | tr -d '[:space:]')
package_version=$(echo "$version" | sed 's/^"//' | sed 's/"$//')
else
echo "Error: Could not find 'version' in Cargo.toml"
fi
# Print the version or handle errors
if [ ! -z "$package_version" ]; then
echo "Package version: $package_version"
else
echo "An error occurred while reading the version."
exit 1
fi
# Extract the name from the [package] section
package_name_line=$(grep -m 1 -E '^name = .*' Cargo.toml)
# Extract the second name from the [lib] section
lib_name_line=$(grep -E '^\[lib\]' -A 5 Cargo.toml | grep -E '^name = .*')
# Extract the package name string after the '='
if [ ! -z "$package_name_line" ]; then
package_name=$(echo "$package_name_line" | cut -d '=' -f2 | tr -d '[:space:]' | sed 's/^"//' | sed 's/"$//')
else
echo "Error: Could not find 'name' in [package] section"
exit 1
fi
# Extract the lib name string after the '=' if it exists
if [ ! -z "$lib_name_line" ]; then
lib_name=$(echo "$lib_name_line" | cut -d '=' -f2 | tr -d '[:space:]' | sed 's/^"//' | sed 's/"$//')
else
lib_name=""
fi
# Print the final package name
echo "Package name: $package_name"
echo "Installing macos targets....."
# Define targets
MAC_TARGETS="x86_64-apple-darwin aarch64-apple-darwin"
for target in $MAC_TARGETS; do
if [ ! $(rustup target list | grep -q "$target") ]; then
echo "Target $target not found in Rust toolchain. Downloading and installing..."
rustup target add "$target"
if [ $? -ne 0 ]; then
echo "Error installing target '$target'. Please check your internet connection and try again."
exit 1
fi
fi
done
echo "Building targets....."
# build compiled files in the thier respctive folders
for target in $MAC_TARGETS; do
# Build for the current target
echo "Building for target: $target"
cargo build --release --target "$target"
# Check the exit code of cargo build
if [ $? -ne 0 ]; then
echo "Error building for target '$target'. Please check your project and dependencies."
exit 1
fi
done
cd ../../../
current_dir=$(pwd)
folder_name="lib/macos"
if [ -d "$folder_name" ]; then
rm -rf "$folder_name"
fi
mkdir "$folder_name"
full_path="/$current_dir/$folder_name"
# Assign lib name as package name if lib name exists
if [ ! -z "$lib_name" ]; then
a_file="$current_dir/src/*/rust/target/x86_64-apple-darwin/release/lib$lib_name.a"
a_file1="$current_dir/src/*/rust/target/aarch64-apple-darwin/release/lib$lib_name.a"
else
a_file="$current_dir/src/*/rust/target/x86_64-apple-darwin/release/lib$package_name.a"
a_file1="$current_dir/src/*/rust/target/aarch64-apple-darwin/release/lib$package_name.a"
fi
echo $lib_name
echo $package_name
lipo -create -output "$full_path/lib$package_name-$package_version.a" $a_file $a_file1
rm -rf src/*/rust/target
echo "Build completed! Library are in lib/ios folder."