| Index: runtime/bin/platform_linux.cc
|
| diff --git a/runtime/bin/platform_linux.cc b/runtime/bin/platform_linux.cc
|
| index 7f379365ff5b57faab94d6a194b65d025c8061dc..f6dfaa17137ee137fce3d3c89f16c13cda733099 100644
|
| --- a/runtime/bin/platform_linux.cc
|
| +++ b/runtime/bin/platform_linux.cc
|
| @@ -42,6 +42,11 @@ const char* Platform::OperatingSystem() {
|
| }
|
|
|
|
|
| +const char* Platform::LibraryExtension() {
|
| + return "so";
|
| +}
|
| +
|
| +
|
| bool Platform::LocalHostname(char *buffer, intptr_t buffer_length) {
|
| return gethostname(buffer, buffer_length) == 0;
|
| }
|
|
|