citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit c28f7bee75f8d94b6db7f56a813bebe8aeb4291b
parent f87c814501f7d1f0e3ead64a6d7e50acbcc4c614
Author: Kyle Milz <kyle@getaddrinfo.net>
Date:   Thu, 17 Mar 2016 22:02:06 -0600

instrument: enforce c++11 for now

Diffstat:
Minstrument/Makefile | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/instrument/Makefile b/instrument/Makefile @@ -1,7 +1,8 @@ PROG = scv_instrument SRCS = main.cxx instrumenter.cxx -CXXFLAGS = `llvm-config --cxxflags` +CXXFLAGS += -std=c++11 +CXXFLAGS += `llvm-config --cxxflags` LDFLAGS += `llvm-config --ldflags` # Clang has a circular dependencies here, use "linker group options" to avoid