diff options
author | Radoslaw Zarzynski <rzarzyns@redhat.com> | 2023-02-21 21:37:13 +0100 |
---|---|---|
committer | Radoslaw Zarzynski <rzarzyns@redhat.com> | 2023-02-21 21:43:18 +0100 |
commit | e9495737f9af731465218489acd67d9479e4040b (patch) | |
tree | dd4448da12fc450f44900a355916dd70a0559f4e /examples | |
parent | Merge pull request #49968 from zdover23/wip-doc-2023-02-02-jaegertracing-refi... (diff) | |
download | ceph-e9495737f9af731465218489acd67d9479e4040b.tar.xz ceph-e9495737f9af731465218489acd67d9479e4040b.zip |
examples/librbd: drop -std=c++11 from CXXFLAGS
In terms of `CXXFLAGS` this commit does for `examples/librbd`
exactly what be838652fae1ee4683b62785192a58992a76d1fe already
did to `examples/librados`. Together they cover the purpose
of the long-waiting PR #44738.
Signed-off-by: Radoslaw Zarzynski <rzarzyns@redhat.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/librbd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/librbd/Makefile b/examples/librbd/Makefile index 2cd9f269aa8..692d145d160 100644 --- a/examples/librbd/Makefile +++ b/examples/librbd/Makefile @@ -1,6 +1,6 @@ CXX?=g++ -CXX_FLAGS?=-std=c++11 -Wno-unused-parameter -Wall -Wextra -Werror -g +CXX_FLAGS?=-Wno-unused-parameter -Wall -Wextra -Werror -g CXX_LIBS?=-lboost_system -lrbd -lrados CXX_INC?=$(LOCAL_LIBRADOS_INC) CXX_CC=$(CXX) $(CXX_FLAGS) $(CXX_INC) $(LOCAL_LIBRADOS) |