From 52560ba1053c0abb307f7d91bbf97f3a39da63ce Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 15 Jun 2018 00:55:53 +0000 Subject: Change TestExec.py from creating an i386+x86_64 fat binary on darwin systems and re-execing itself, to creating two separate test programs; lldb runs the first program and it exec's the second. Support for compiling for i386 is going away. llvm-svn: 334783 --- .../lldbsuite/test/functionalities/exec/secondprog.mk | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk') diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk new file mode 100644 index 00000000000..88f54705998 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk @@ -0,0 +1,13 @@ +LEVEL = ../../make + +CXX_SOURCES := secondprog.cpp + +all: secondprog + +secondprog: + $(CXX) $(CXXFLAGS) -o secondprog $(SRCDIR)/secondprog.cpp + +clean:: + rm -rf secondprog secondprog.dSYM + +include $(LEVEL)/Makefile.rules -- cgit v1.2.3