aboutsummaryrefslogtreecommitdiff
path: root/setup.sh
blob: 86cf20f3716e5ebdd042773843b5bb65075569a6 (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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/bin/sh

SYSROOT=/opt/aleksa

BINUTILS=binutils-2.37
GCC=gcc-11.2.0


download()
{
    if [ ! -f "./$BINUTILS.tar.gz" ]; then
        wget "https://ftp.gnu.org/gnu/binutils/$BINUTILS.tar.gz"
    fi

    if [ ! -f "./$GCC.tar.gz" ]; then
        wget "https://ftp.gnu.org/gnu/gcc/$GCC/$GCC.tar.gz"
    fi
}

extract()
{
    if [ ! -d "$BINUTILS" ]; then
        tar xzvf "$BINUTILS.tar.gz"
    fi

    if [ ! -d "$GCC" ]; then
        tar xzvf "$GCC.tar.gz"
    fi
}

patch_gnu()
{
    mkdir -p "mine"
    cd "mine" || exit

    if [ ! -d "$BINUTILS" ]; then
        cp -rv "../$BINUTILS" .
        patch -p0 < "../files/aleksa-$BINUTILS.diff"
        cd "$BINUTILS/ld" || exit
        sed -i "s/2.69/2.71/" "Makefile.am"
        aclocal
        automake
        cd "../.."
    fi

    if [ ! -d "$GCC" ]; then
        cp -rv "../$GCC" .
        patch -p0 < "../files/aleksa-$GCC.diff"
        cd "$GCC/libstdc++-v3" || exit
        sed -i "s/2.69/2.71/" "../config/override.m4"
        autoreconf
        cd "../.."
    fi

    cd ".."
}

install_headers()
{
    if [ -d "mykernel" ]; then
        cd "mykernel" || exit
        git pull
        cd ".."
    else
        git clone "https://github.com/aleksav013/mykernel"
    fi

    cd "mykernel" || exit
    ./scripts/install_headers.sh
    cd ".."
}

build_binutils()
{
    cd "./mine/$BINUTILS" || exit

    mkdir -p build
    cd build || exit

    if [ ! -f Makefile ]; then
        ../configure --target=i686-aleksa \
            --prefix="$SYSROOT/usr" \
            --with-sysroot="$SYSROOT" \
            --disable-nls
    fi

    make -j4
    make install

    cd "../../.."
}

build_gcc()
{
    cd "./mine/$GCC" || exit

    mkdir -p build
    cd build || exit

    if [ ! -f Makefile ]; then
        ../configure --target=i686-aleksa \
            --prefix="$SYSROOT/usr" \
            --with-sysroot="$SYSROOT" \
            --disable-nls \
            --disable-plugin \
            --enable-languages=c,c++
    fi

    make -j4 all-gcc all-target-libgcc
    make -k check || true
    make install-gcc install-target-libgcc

    cd "../../.."
}

setup_compiler()
{
    if [ -d "mykernel" ]; then
        cd "mykernel" || exit
        git pull
        cd ".."
    else
        git clone "https://github.com/aleksav013/mykernel"
    fi

    cd "mykernel" || exit
    ./scripts/setup_compiler.sh
    cd ".."
}

main()
{
    download
    extract
    patch_gnu
    build_binutils
    install_headers
    build_gcc
    setup_compiler
}

main