Welcome to mirror list, hosted at ThFree Co, Russian Federation.

install-native-dependencies.sh « eng - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e837b017c7cba1d123948cb066a1d696ee160db2 (plain)
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
#!/usr/bin/env sh

if [ "$1" = "Linux" ]; then
    sudo apt update
    if [ "$?" != "0" ]; then
       exit 1;
    fi
    sudo apt install cmake llvm-3.9 clang-3.9 lldb-3.9 liblldb-3.9-dev libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev libcurl4-openssl-dev libssl-dev libkrb5-dev libnuma-dev autoconf automake libtool build-essential
    if [ "$?" != "0" ]; then
        exit 1;
    fi
elif [ "$1" = "OSX" ]; then
    brew update
    brew upgrade
    if [ "$?" != "0" ]; then
        exit 1;
    fi
    brew install icu4c openssl autoconf automake libtool pkg-config python3
    if [ "$?" != "0" ]; then
        exit 1;
    fi
    brew link --force icu4c
    if [ "$?" != "0" ]; then
        exit 1;
    fi
elif [ "$1" = "iOS" ]; then
    brew update
    brew upgrade
    if [ "$?" != "0" ]; then
        exit 1;
    fi
    brew install openssl autoconf automake libtool pkg-config python3
    if [ "$?" != "0" ]; then
        exit 1;
    fi
else
    echo "Must pass \"Linux\", \"iOS\" or \"OSX\" as first argument."
    exit 1
fi