1//===- FileSystem.inc -----------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9#include <string>
10
11namespace mcld{
12namespace sys{
13namespace fs{
14namespace detail{
15
16std::string static_library_extension = ".lib";
17std::string shared_library_extension = ".dll";
18std::string executable_extension = ".exe";
19std::string relocatable_extension = ".obj";
20std::string assembly_extension = ".s";
21std::string bitcode_extension = ".bc";
22
23
24} // namespace of detail
25} // namespace of fs
26} // namespace of sys
27} // namespace of mcld
28
29