[go: up one dir, main page]

libm 0.1.2

libm in pure Rust
Documentation
set -euxo pipefail

main() {
    if [ $TARGET = cargo-fmt ]; then
        rustup component add rustfmt-preview
        return
    fi

    if ! hash cross >/dev/null 2>&1; then
        cargo install cross
    fi

    rustup target add x86_64-unknown-linux-musl

    if [ $TARGET != x86_64-unknown-linux-gnu ]; then
        rustup target add $TARGET
    fi
}

main