package/cloop: fix build with gcc >= 9
Fix the following build failure with gcc >= 9 (and -std=c++17): ./file.h:70:43: error: ISO C++17 does not allow dynamic exception specifications 70 | bool file_exists(const std::string& file) throw (error); | ^~~~~ Fixes: - http://autobuild.buildroot.org/results/8320edd448cd1f7c14a65734f63a2df5d4b0d442 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
b91bf2dbe6
commit
7e147e778f
@ -14,7 +14,7 @@ HOST_CLOOP_DEPENDENCIES = host-zlib
|
||||
|
||||
define HOST_CLOOP_BUILD_CMDS
|
||||
$(HOST_CONFIGURE_OPTS) $(MAKE1) -C $(@D) APPSONLY=yes \
|
||||
CFLAGS="$(HOST_CFLAGS) -D_GNU_SOURCE"
|
||||
CFLAGS="$(HOST_CFLAGS) -D_GNU_SOURCE" CPPFLAGS="-std=c++14"
|
||||
endef
|
||||
|
||||
define HOST_CLOOP_INSTALL_CMDS
|
||||
|
Loading…
Reference in New Issue
Block a user