Skip to content
Snippets Groups Projects
Commit 720baff9 authored by Alexander A. Klimov's avatar Alexander A. Klimov :sunglasses:
Browse files

Merge branch 'feature/gcc11' into 'master'

Use GCC 11 on CentOS 7

See merge request !39
parents d1442348 055f39db
No related branches found
No related tags found
1 merge request!39Use GCC 11 on CentOS 7
Pipeline #25276 passed
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
%define apacheuser apache %define apacheuser apache
%define apachegroup apache %define apachegroup apache
%if 0%{?el6}%{?amzn} %if 0%{?amzn}
%define use_systemd 0 %define use_systemd 0
%define use_selinux 0 %define use_selinux 0
%if %(uname -m) != "x86_64" %if %(uname -m) != "x86_64"
...@@ -118,15 +118,10 @@ BuildRequires: libyajl-devel ...@@ -118,15 +118,10 @@ BuildRequires: libyajl-devel
%endif %endif
BuildRequires: libedit-devel BuildRequires: libedit-devel
BuildRequires: ncurses-devel BuildRequires: ncurses-devel
%if "%{_vendor}" == "suse" && 0%{?suse_version} < 1210 %if "%{_vendor}" == "redhat" && (0%{?el7} || 0%{?rhel} == 7 || "%{?dist}" == ".el7")
BuildRequires: gcc48-c++ # Requires devtoolset-11 scl
BuildRequires: libopenssl1-devel %define scl_name devtoolset-11
BuildRequires: libstdc++48-devel %define scl_enable scl enable %{scl_name} --
%else
%if "%{_vendor}" == "redhat" && (0%{?el6} || 0%{?rhel} == 6 || "%{?dist}" == ".el6")
# Requires devtoolset-7 scl
%define scl_name devtoolset-7
%define scl_enable scl enable %{scl_name} --
BuildRequires: %{scl_name}-binutils BuildRequires: %{scl_name}-binutils
BuildRequires: %{scl_name}-gcc-c++ BuildRequires: %{scl_name}-gcc-c++
BuildRequires: %{scl_name}-libstdc++-devel BuildRequires: %{scl_name}-libstdc++-devel
...@@ -135,7 +130,6 @@ BuildRequires: gcc-c++ ...@@ -135,7 +130,6 @@ BuildRequires: gcc-c++
BuildRequires: libstdc++-devel BuildRequires: libstdc++-devel
%endif %endif
BuildRequires: openssl-devel BuildRequires: openssl-devel
%endif
BuildRequires: bison BuildRequires: bison
BuildRequires: cmake BuildRequires: cmake
BuildRequires: flex >= 2.5.35 BuildRequires: flex >= 2.5.35
...@@ -170,13 +164,6 @@ BuildRequires: libboost_test-devel%{?boost_devel_suffix} >= %{boost_min_version ...@@ -170,13 +164,6 @@ BuildRequires: libboost_test-devel%{?boost_devel_suffix} >= %{boost_min_version
# default boost devel package # default boost devel package
%define boost_devel_pkg boost-devel %define boost_devel_pkg boost-devel
%if (0%{?el6} || 0%{?rhel} == 6)
# Provided by packages.icinga.com
%define boost_library icinga-boost169
%define boost_version 1.69
%define boost_devel_pkg icinga-boost169-devel
%define boost_rpath %{_libdir}/%{boost_library}
%endif # el6
%if (0%{?el7} || 0%{?rhel} == 7) %if (0%{?el7} || 0%{?rhel} == 7)
# Provided by EPEL # Provided by EPEL
%define boost_library boost169 %define boost_library boost169
...@@ -413,11 +400,6 @@ CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_WITH_PGSQL=ON" ...@@ -413,11 +400,6 @@ CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_WITH_PGSQL=ON"
CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_WITH_PGSQL=OFF" CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_WITH_PGSQL=OFF"
%endif %endif
%if (0%{?el6} || 0%{?rhel} == 6)
# Explicitly link against rt, because ld doesn't detect it automatically
CMAKE_OPTS="$CMAKE_OPTS -DCMAKE_EXE_LINKER_FLAGS=-lrt"
%endif # el6
%if "%{?boost_rpath}" != "" %if "%{?boost_rpath}" != ""
CMAKE_OPTS="$CMAKE_OPTS -DCMAKE_INSTALL_RPATH=%{boost_rpath}" CMAKE_OPTS="$CMAKE_OPTS -DCMAKE_INSTALL_RPATH=%{boost_rpath}"
%endif # boost_rpath %endif # boost_rpath
...@@ -437,12 +419,6 @@ CMAKE_OPTS="$CMAKE_OPTS ...@@ -437,12 +419,6 @@ CMAKE_OPTS="$CMAKE_OPTS
CMAKE_OPTS="$CMAKE_OPTS -DUSE_SYSTEMD=ON" CMAKE_OPTS="$CMAKE_OPTS -DUSE_SYSTEMD=ON"
%endif %endif
%if "%{_vendor}" == "suse" && 0%{?suse_version} < 1210
# from package gcc48-c++
export CC=gcc-4.8
export CXX=g++-4.8
%endif
%if "%{?_buildhost}" != "" %if "%{?_buildhost}" != ""
CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_BUILD_HOST_NAME:STRING=%_buildhost" CMAKE_OPTS="$CMAKE_OPTS -DICINGA2_BUILD_HOST_NAME:STRING=%_buildhost"
%endif %endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment