1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

llvmc: .dylib support.

llvm-svn: 112818
This commit is contained in:
Mikhail Glushenkov 2010-09-02 14:06:21 +00:00
parent 6b382d04f4
commit 486aba548f

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"])
]>;