nandi/jolt-nativepublic Fork 0
cfd3e3677bed92e80cfe447469a249cfdc0b1401
Commits
Clone
git clone https://git.rickub.com/nandi/jolt-native.git
git clone ssh://git@rickub.com/nandi/jolt-native.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

build_rust_deps.sh · 19 lines · 667 BBash Blame HistoryRaw
Lift freeq's AV media plane out of sleek 90f8b89 nandi 20d ago1#!/bin/sh
2
3set -e
4
5PATH=$PATH:$HOME/.cargo/bin
6if [[ -n "${DEVELOPER_SDK_DIR:-}" ]]; then
7 # Assume we're in Xcode, which means we're probably cross-compiling.
8 # In this case, we need to add an extra library search path for build scripts and proc-macros,
9 # which run on the host instead of the target.
10 # (macOS Big Sur does not have linkable libraries in /usr/lib/.)
11 export LIBRARY_PATH="${DEVELOPER_SDK_DIR}/MacOSX.sdk/usr/lib:${LIBRARY_PATH:-}"
12fi
13
14# If you want your build to run faster, add a "--targets x86_64-apple-ios" for just using the ios simulator.
15if [ -n "${IOS_TARGETS}" ]; then
16 cargo lipo --targets "${IOS_TARGETS}"
17else
18 cargo lipo
19fi