diff options
| author | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-11 16:43:08 +0000 |
|---|---|---|
| committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2016-02-11 16:43:08 +0000 |
| commit | ba7d0fe280691b2eb0a0e7183a588136a53de462 (patch) | |
| tree | 0ce4d6d96faec80ac2dc502529b060b08ae4f2bd | |
| parent | d8cd0604223442ff2d25e64653667f85363398bd (diff) | |
| download | bcm5719-llvm-ba7d0fe280691b2eb0a0e7183a588136a53de462.tar.gz bcm5719-llvm-ba7d0fe280691b2eb0a0e7183a588136a53de462.zip | |
Revert r260266 (and r260276), "clang-cl: Enable plugins on Windows"
It doesn't work, at least, i686-win32.
llvm-svn: 260537
| -rw-r--r-- | clang/test/Frontend/plugins.c | 1 | ||||
| -rw-r--r-- | clang/test/lit.cfg | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Frontend/plugins.c b/clang/test/Frontend/plugins.c index cd3717cd2d5..8117f72fa7a 100644 --- a/clang/test/Frontend/plugins.c +++ b/clang/test/Frontend/plugins.c @@ -1,5 +1,4 @@ // RUN: %clang_cc1 -load %llvmshlibdir/PrintFunctionNames%pluginext -plugin print-fns %s 2>&1 | FileCheck %s -// RUN: %clang_cl -c -Xclang -load -Xclang %llvmshlibdir/PrintFunctionNames%pluginext -Xclang -plugin -Xclang print-fns -Tc %s 2>&1 | FileCheck %s // REQUIRES: plugins, examples // CHECK: top-level-decl: "x" diff --git a/clang/test/lit.cfg b/clang/test/lit.cfg index dddab3ec895..e2166342685 100644 --- a/clang/test/lit.cfg +++ b/clang/test/lit.cfg @@ -196,7 +196,7 @@ if not lit_config.quiet: # Plugins (loadable modules) # TODO: This should be supplied by Makefile or autoconf. -if sys.platform in ['cygwin']: +if sys.platform in ['win32', 'cygwin']: has_plugins = (config.enable_shared == 1) else: has_plugins = True |

