aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2014-01-23 14:15:55 -0800
committerLogan Chien <tzuhsiang.chien@gmail.com>2014-09-16 00:03:44 +0800
commitbc97135267567187e82bd92bcdec6fa31cc8097b (patch)
treef2b5b52cbdc1beabddf56dc96fcfd83e0c03b981
parentc8b4a70210f14ac568b6e9b9bb156cca52ed724b (diff)
downloadllvm-bc97135267567187e82bd92bcdec6fa31cc8097b.tar.gz
Accept but ignore -rpath-link=
Change-Id: Ie055ec1890350cd65cd496fe6416031a1248efb0
-rw-r--r--tools/le32-none-ndk-link/le32-none-ndk-link.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/le32-none-ndk-link/le32-none-ndk-link.cpp b/tools/le32-none-ndk-link/le32-none-ndk-link.cpp
index 5a6a2ebb55c..b17bf0e7e10 100644
--- a/tools/le32-none-ndk-link/le32-none-ndk-link.cpp
+++ b/tools/le32-none-ndk-link/le32-none-ndk-link.cpp
@@ -135,6 +135,11 @@ static cl::opt<bool> CO11("no-warn-mismatch",
cl::ZeroOrMore,
cl::desc("Compatibility option: ignored"));
+static cl::list<std::string> CO12("rpath-link",
+ cl::ZeroOrMore,
+ cl::desc("Compatibility option: ignored"),
+ cl::value_desc("dir"));
+
static cl::list<unsigned int> OptimizationLevel("O",
cl::Prefix,
cl::desc("Optimization level for bitcode compiler"));