]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / functionalities / data-formatter / stringprinter / Makefile
1 LEVEL = ../../../make
2 CXX_SOURCES := main.cpp
3 CXXFLAGS += -std=c++11
4
5 # clang-3.5+ outputs FullDebugInfo by default for Darwin/FreeBSD 
6 # targets.  Other targets do not, which causes this test to fail.
7 # This flag enables FullDebugInfo for all targets.
8 ifneq (,$(findstring clang,$(CC)))
9   CFLAGS_EXTRAS += -fno-limit-debug-info
10 endif
11
12 include $(LEVEL)/Makefile.rules