llvmc: .dylib support.

llvm-svn: 112818
This commit is contained in:
Mikhail Glushenkov 2010-09-02 14:06:21 +00:00
parent 9bca923c10
commit 07457f0ed9
1 changed files with 2 additions and 1 deletions

View File

@ -262,7 +262,7 @@ def llc : Tool<
// Base class for linkers
class llvm_gcc_based_linker <string cmd_prefix, dag on_empty> : Tool<
[(in_language ["object-code", "static-library"]),
[(in_language ["object-code", "static-library", "dynamic-library"]),
(out_language "executable"),
(output_suffix "out"),
(command cmd_prefix),
@ -321,6 +321,7 @@ def LanguageMap : LanguageMap<[
(lang_to_suffixes "llvm-bitcode", "bc"),
(lang_to_suffixes "object-code", ["o", "*empty*"]),
(lang_to_suffixes "static-library", ["a", "lib"]),
(lang_to_suffixes "dynamic-library", ["so", "dylib", "dll"]),
(lang_to_suffixes "executable", ["out"])
]>;