diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-03-02 23:15:04 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-03-02 23:15:04 +0000 |
commit | beb6025361f439b71038e2f44a8ddcea6bbe7a57 (patch) | |
tree | 9c567bae34bbc6a2f19b357aede4082223860bd8 /lldb/packages/Python | |
parent | e029a2ff23e007c67f2f44899ee82a8e01ded207 (diff) | |
download | bcm5719-llvm-beb6025361f439b71038e2f44a8ddcea6bbe7a57.tar.gz bcm5719-llvm-beb6025361f439b71038e2f44a8ddcea6bbe7a57.zip |
Don't compile testcase with clang modules enabled.
It isn't actually necessary for what we are testing here and should
fix the test on the Linux bots.
llvm-svn: 326634
Diffstat (limited to 'lldb/packages/Python')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile index de6a8e20d3d..00cb9b6be34 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile @@ -1,4 +1,3 @@ LEVEL = ../../../make OBJC_SOURCES := main.m include $(LEVEL)/Makefile.rules -CFLAGS += $(MANDATORY_MODULE_BUILD_CFLAGS) -I$(SRCDIR) diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m index a502a85b638..6009d28d81b 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m +++ b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m @@ -1,4 +1,4 @@ -@import Foo; +#include "f.h" int main() { f(); // Set breakpoint here. return 0; |