1package platform::Windows::cppbuilder; 2 3use vars qw(@ISA); 4 5require platform::Windows::MSVC; 6@ISA = qw(platform::Windows::MSVC); 7 8sub pdbext { '.tds' } 9 10# C++Builder's Clang-based compilers prepend an underscore to __cdecl-convention 11# C functions, and the linker needs those as the InternalName in the .def file. 12sub export2internal { 13 return "_$_[1]"; 14} 15 161; 17