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 11 namespace mcld{ 12 namespace sys{ 13 namespace fs{ 14 namespace detail{ 15 16 std::string static_library_extension = ".lib"; 17 std::string shared_library_extension = ".dll"; 18 std::string executable_extension = ".exe"; 19 std::string relocatable_extension = ".obj"; 20 std::string assembly_extension = ".s"; 21 std::string bitcode_extension = ".bc"; 22 23 24 } // namespace of detail 25 } // namespace of fs 26 } // namespace of sys 27 } // namespace of mcld 28 29