diff options
author | Ilya Dryomov <idryomov@gmail.com> | 2023-02-23 18:25:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 18:25:14 +0100 |
commit | 673373f829e27820f4ea44c5b01740530e574a3f (patch) | |
tree | c56c6a53fa7c3cef96b4576ecfa218b62513fd02 /examples | |
parent | Merge pull request #50098 from soumyakoduri/wip-skoduri-cloud-trans-azure (diff) | |
parent | examples/librbd: drop -std=c++11 from CXXFLAGS (diff) | |
download | ceph-673373f829e27820f4ea44c5b01740530e574a3f.tar.xz ceph-673373f829e27820f4ea44c5b01740530e574a3f.zip |
Merge pull request #50202 from rzarzynski/wip-librbd-drop-cxx11-from-example
examples/librbd: drop -std=c++11 from CXXFLAGS
Reviewed-by: Ilya Dryomov <idryomov@gmail.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) |