Files
clang-p2996/lldb/test/functionalities/data-formatter/rdar-9973865/Makefile
Daniel Malea 1d1592624c Un-skipping test that was disabled due to llvm.org/pr16191
- adding workaround recommended by Greg (-fno-limit-debug-info clang flag)
- filed bug llvm.org/pr16214 against Clang

llvm-svn: 183156
2013-06-03 21:42:50 +00:00

12 lines
282 B
Makefile

LEVEL = ../../../make
CXX_SOURCES := main.cpp
# Workaround for llvm.org/pr16214: clang doesn't emit structure definition DWARF
# information without the flag below.
ifneq (,$(findstring clang,$(CC)))
CFLAGS_EXTRAS := -fno-limit-debug-info
endif
include $(LEVEL)/Makefile.rules