diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-17 17:22:29 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-07-17 17:22:29 +0000 |
commit | dce1954f455fc35ea3586f342db5077d505f1057 (patch) | |
tree | c7d7a0350f7d42e7db64dc13ef19d19799b338b5 /lldb/packages/Python/lldbsuite | |
parent | 79f4e4770b72131e53cace75dbd62f5ed43c39bd (diff) | |
download | bcm5719-llvm-dce1954f455fc35ea3586f342db5077d505f1057.tar.gz bcm5719-llvm-dce1954f455fc35ea3586f342db5077d505f1057.zip |
[Test] Add module cache for TestWeakSymbols
Explicitly set the module cache in the Makefile with
-fmodules-cache-path.
llvm-svn: 366352
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/expression_command/weak_symbols/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/expression_command/weak_symbols/Makefile b/lldb/packages/Python/lldbsuite/test/expression_command/weak_symbols/Makefile index 7c70b509fe7..ea434d42714 100644 --- a/lldb/packages/Python/lldbsuite/test/expression_command/weak_symbols/Makefile +++ b/lldb/packages/Python/lldbsuite/test/expression_command/weak_symbols/Makefile @@ -22,5 +22,5 @@ dylib2.o: dylib.h $(SRCDIR)/dylib.c $(CC) $(CFLAGS) -c $(SRCDIR)/dylib.c -o dylib2.o main.o: dylib.h $(SRCDIR)/main.c - $(CC) $(CFLAGS) -c $(SRCDIR)/main.c -fmodules + $(CC) $(CFLAGS) -c $(SRCDIR)/main.c -fmodules -fmodules-cache-path=$(CLANG_MODULE_CACHE_DIR) |