From 98b5be8062d33bde9a963c00326ce2483db18f9f Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 28 Aug 2013 21:00:03 +0000 Subject: Fix name matching to work on windows. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189517 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-ar/llvm-ar.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tools/llvm-ar') diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp index f47b0a6242..e56e49ad20 100644 --- a/tools/llvm-ar/llvm-ar.cpp +++ b/tools/llvm-ar/llvm-ar.cpp @@ -876,9 +876,10 @@ int main(int argc, char **argv) { " This program archives bitcode files into single libraries\n" ); - if (ToolName.endswith("ar")) + StringRef Stem = sys::path::stem(ToolName); + if (Stem.endswith("ar")) return ar_main(argv); - if (ToolName.endswith("ranlib")) + if (Stem.endswith("ranlib")) return ranlib_main(); fail("Not ranlib or ar!"); } -- cgit v1.2.3