From da7b15df703bae445ab76762891e49b7496abb88 Mon Sep 17 00:00:00 2001 From: Pavel Labath Date: Wed, 12 Apr 2017 10:59:34 +0000 Subject: Fix TestCppIncompleteTypes for android/clang LDFLAGS contains some .a files. If it is specified before the relevant object files, undefined symbol errors occur. llvm-svn: 300048 --- .../packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/packages/Python/lldbsuite/test') diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile index 6595e33b726..bea4bf96e60 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile @@ -13,10 +13,10 @@ endif all: limit nolimit limit: main.o length_limit.o a.o - $(CXX) $(LDFLAGS) main.o length_limit.o a.o -o limit + $(CXX) main.o length_limit.o a.o -o limit $(LDFLAGS) nolimit: main.o length_nolimit.o a.o - $(CXX) $(LDFLAGS) main.o length_nolimit.o a.o -o nolimit + $(CXX) main.o length_nolimit.o a.o -o nolimit $(LDFLAGS) main.o: main.cpp $(CXX) $(CFLAGS_LIMIT) main.cpp -o main.o -- cgit v1.2.3