[TestDataFormatterStdVector] s/-fstandalone-debug/-fno-limit-debug-info

Test Plan: dotest.py -C <clang|gcc> -p TestDataFormatterStdVector

Reviewers: vharron

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D8571

llvm-svn: 233108
This commit is contained in:
Siva Chandra 2015-03-24 20:27:38 +00:00
parent 8448a24380
commit 43386c3b9c
1 changed files with 3 additions and 3 deletions

View File

@ -6,10 +6,10 @@ CXXFLAGS := -O0
USE_LIBSTDCPP := 1
# clang-3.5+ outputs FullDebugInfo by default for Darwin/FreeBSD
# # targets. Other targets do not, which causes this test to fail.
# # This flag enables FullDebugInfo for all targets.
# targets. Other targets do not, which causes this test to fail.
# This flag enables FullDebugInfo for all targets.
ifneq (,$(findstring clang,$(CC)))
CFLAGS_EXTRAS += -fstandalone-debug
CFLAGS_EXTRAS += -fno-limit-debug-info
endif
include $(LEVEL)/Makefile.rules