summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2016-06-07 21:29:46 +0000
committerPavel Labath <labath@google.com>2016-06-07 21:29:46 +0000
commitf0f62d8451da35c2557e1385bac160b93b005b89 (patch)
tree7c31eccac83b95e293ab750c31fc48bc376ef2c2 /lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter
parent1d0a9fd08930e800dc5e57f246f4e50dd1577f4b (diff)
downloadbcm5719-llvm-f0f62d8451da35c2557e1385bac160b93b005b89.tar.gz
bcm5719-llvm-f0f62d8451da35c2557e1385bac160b93b005b89.zip
Revert "Make lldbinline.py regenerate the Makefile each time it builds."
This reverts commit r272024 as it is not windows-compatible. llvm-svn: 272062
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter')
-rw-r--r--lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
index ced3f7aab56..69dde1b7618 100644
--- a/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
+++ b/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
@@ -1,13 +1,12 @@
LEVEL = ../../../make
CXX_SOURCES := main.cpp
CXXFLAGS += -std=c++11
+
+# 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.
ifneq (,$(findstring clang,$(CC)))
- CFLAGS_EXTRAS += -fno-limit-debug-info
+ CFLAGS_EXTRAS += -fno-limit-debug-info
endif
include $(LEVEL)/Makefile.rules
-
-
-cleanup:
- rm -f Makefile *.d
-
OpenPOWER on IntegriCloud