summaryrefslogtreecommitdiff
path: root/repo/core/gcc.xibuild
blob: 793409ca62399b8551f6c763149d7a1762703752 (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
#!/bin/bash

DEPS=(glibc)

SOURCE=https://mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-11.2.0/gcc-11.2.0.tar.xz

DESC="The GNU Compiler Collection - C and C++ frontends"


build () {
    case $(uname -m) in
  x86_64)
    sed -e '/m64=/s/lib64/lib/' \
        -i.orig gcc/config/i386/t-linux64
  ;;
esac

    

    mkdir -v build
    cd build
    ../configure --prefix=/usr --disable-multilib --disable-bootstrap
    make
    make DESTDIR=$PKG_DEST install
}