Use dnf as package manager on CentOS 8+.
This commit is contained in:
parent
306e3e355c
commit
0f1767b3f0
20
build.html
20
build.html
@ -848,23 +848,25 @@ function onOptionsChanged() {
|
|||||||
commands.push(sudo + 'apk add ' + packages);
|
commands.push(sudo + 'apk add ' + packages);
|
||||||
break;
|
break;
|
||||||
case 'CentOS 7':
|
case 'CentOS 7':
|
||||||
case 'CentOS 8':
|
|
||||||
commands.push(sudo + 'yum update -y');
|
commands.push(sudo + 'yum update -y');
|
||||||
var packages = 'gcc-c++ make git zlib-devel openssl-devel php';
|
|
||||||
if (linux_distro === 'CentOS 7') {
|
|
||||||
commands.push(sudo + 'yum install -y centos-release-scl-rh epel-release');
|
commands.push(sudo + 'yum install -y centos-release-scl-rh epel-release');
|
||||||
commands.push(sudo + 'yum install -y devtoolset-9-gcc devtoolset-9-gcc-c++');
|
commands.push(sudo + 'yum install -y devtoolset-9-gcc devtoolset-9-gcc-c++');
|
||||||
cmake = 'cmake3';
|
var packages = 'gcc-c++ make git zlib-devel openssl-devel php gperf cmake3';
|
||||||
packages += ' gperf';
|
|
||||||
} else {
|
|
||||||
commands.push(sudo + 'dnf --enablerepo=powertools install gperf');
|
|
||||||
}
|
|
||||||
packages += ' ' + cmake;
|
|
||||||
if (target === 'JNI') {
|
if (target === 'JNI') {
|
||||||
packages += ' java-11-openjdk-devel';
|
packages += ' java-11-openjdk-devel';
|
||||||
}
|
}
|
||||||
|
cmake = 'cmake3';
|
||||||
commands.push(sudo + 'yum install -y ' + packages);
|
commands.push(sudo + 'yum install -y ' + packages);
|
||||||
break;
|
break;
|
||||||
|
case 'CentOS 8':
|
||||||
|
commands.push(sudo + 'dnf update -y');
|
||||||
|
commands.push(sudo + 'dnf --enablerepo=powertools install gperf');
|
||||||
|
var packages = 'gcc-c++ make git zlib-devel openssl-devel php cmake';
|
||||||
|
if (target === 'JNI') {
|
||||||
|
packages += ' java-11-openjdk-devel';
|
||||||
|
}
|
||||||
|
commands.push(sudo + 'dnf install -y ' + packages);
|
||||||
|
break;
|
||||||
case 'Debian 8':
|
case 'Debian 8':
|
||||||
case 'Debian 9':
|
case 'Debian 9':
|
||||||
case 'Debian 10+':
|
case 'Debian 10+':
|
||||||
|
Loading…
Reference in New Issue
Block a user