blob: 01e7ec66ecc4e7d4b922639d1dbe170b7b7501a2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/env bash
export CC=gcc-9
export CXX=g++-9
export LOGFILE=gcc9.log
source ./tools/ci/scripts/init.sh
aptget_install gcc-9 \
git-core \
make autoconf automake autopoint \
libtool libmysqlclient-dev libz-dev libpcre3-dev
do_init
build_init
run_configure $*
run_make
|