diff options
author | Pavel Labath <labath@google.com> | 2017-10-31 10:01:30 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-10-31 10:01:30 +0000 |
commit | 64325c51ada0d3a49773e530b47d605bb7528314 (patch) | |
tree | 3d080d7ff1aea72f2dc3ca2e589e7a0a91549330 /lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk | |
parent | 9e58831cb868c59036fcd4d935ef6f08627c4888 (diff) | |
download | bcm5719-llvm-64325c51ada0d3a49773e530b47d605bb7528314.tar.gz bcm5719-llvm-64325c51ada0d3a49773e530b47d605bb7528314.zip |
Split makefile for TestTopLevelExprs
this test was using a single makefile to build two executables. This
setup, although not supported by Makefile.rules, happened to
work in most configurations, except when building with the android ndk
r16.
Here I move the building of the second executable to a separate
makefile, which is the solution other tests use for multiple targets.
llvm-svn: 316982
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk b/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk new file mode 100644 index 00000000000..af97678b2cf --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk @@ -0,0 +1,6 @@ +LEVEL = ../../make + +CXX_SOURCES := dummy.cpp +EXE := dummy + +include $(LEVEL)/Makefile.rules |