mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
llvmc: .dylib support.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112818 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8cf2663227
commit
743547f07b
@ -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"])
|
||||
]>;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user