|
From: Paul F. <pa...@so...> - 2023-04-22 07:39:01
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=3b93737876f443709ee0cec81627fe1186f44862 commit 3b93737876f443709ee0cec81627fe1186f44862 Author: Paul Floyd <pj...@wa...> Date: Sat Apr 22 09:37:25 2023 +0200 regtest: add C++11 flag to build of user_histo1.cpp For old compilers that don't default to C++11 or later Diff: --- dhat/tests/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/dhat/tests/Makefile.am b/dhat/tests/Makefile.am index 818cc10d08..aba7f06fdf 100644 --- a/dhat/tests/Makefile.am +++ b/dhat/tests/Makefile.am @@ -37,3 +37,4 @@ big_CFLAGS = $(AM_CFLAGS) -Wno-unused-result copy_CFLAGS = $(AM_CFLAGS) -fno-builtin user_histo1_SOURCES = user_histo1.cpp +user_histo1_CXXFLAGS = $(AM_CXXFLAGS) -std=c++11 |