ac9855e761
Add -std=c++11 to fix the following build failure with gcc 11: /data/buildroot-autobuilder/instance-0/output-1/host/include/cutl/shared-ptr/base.hxx:34:41: error: ISO C++17 does not allow dynamic exception specifications 34 | operator new (std::size_t, cutl::share) throw (std::bad_alloc); | ^~~~~ Fixes: - http://autobuild.buildroot.org/results/9cbb8be7a1d8ac5913fbc5e2a78c4c45b5daf8e2 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
22 lines
734 B
Makefile
22 lines
734 B
Makefile
################################################################################
|
|
#
|
|
# odb
|
|
#
|
|
################################################################################
|
|
|
|
ODB_VERSION_MAJOR = 2.4
|
|
ODB_VERSION = $(ODB_VERSION_MAJOR).0
|
|
ODB_SOURCE = odb-$(ODB_VERSION).tar.bz2
|
|
ODB_SITE = https://www.codesynthesis.com/download/odb/$(ODB_VERSION_MAJOR)
|
|
ODB_LICENSE = GPL-3.0
|
|
ODB_LICENSE_FILES = LICENSE
|
|
HOST_ODB_DEPENDENCIES = host-libcutl
|
|
HOST_ODB_CONF_ENV = CXXFLAGS="$(HOST_CXXFLAGS) -std=c++11"
|
|
|
|
# Prevent odb from trying to install the gcc plugin into the hosts
|
|
# gcc plugin directory. Instead, this will install the gcc plugin
|
|
# into host/libexec/odb
|
|
HOST_ODB_CONF_OPTS = --with-gcc-plugin-dir=no
|
|
|
|
$(eval $(host-autotools-package))
|