diff options
| author | Vince Harron <vince@nethacker.com> | 2015-03-15 18:05:53 +0000 |
|---|---|---|
| committer | Vince Harron <vince@nethacker.com> | 2015-03-15 18:05:53 +0000 |
| commit | b63c1880f211adf828aa731259e3222a3261ed9e (patch) | |
| tree | 2872f5ad6eef57c45d4a22a8db54323df99ae43a /lldb/test/expression_command/call-function | |
| parent | cc4d4d4fef95669ad73953917f959ce634d1930d (diff) | |
| download | bcm5719-llvm-b63c1880f211adf828aa731259e3222a3261ed9e.tar.gz bcm5719-llvm-b63c1880f211adf828aa731259e3222a3261ed9e.zip | |
Use -fno-limit-debug-info instead of -fstandalone-debug in tests
This fixes tests on clang-3.4
AFAICT, these flags have the same affect and -fstandalone-debug wasn't
added until after clang-3.4
Committed to try to fix buildbot
Differential Revision: http://reviews.llvm.org/D8347
llvm-svn: 232326
Diffstat (limited to 'lldb/test/expression_command/call-function')
| -rw-r--r-- | lldb/test/expression_command/call-function/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/expression_command/call-function/Makefile b/lldb/test/expression_command/call-function/Makefile index 01a5853b5a8..6d41de173e5 100644 --- a/lldb/test/expression_command/call-function/Makefile +++ b/lldb/test/expression_command/call-function/Makefile @@ -6,7 +6,7 @@ CXX_SOURCES := main.cpp # 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 |

