diff --git a/source/dub/init.d b/source/dub/init.d index 36d68bd..5570006 100644 --- a/source/dub/init.d +++ b/source/dub/init.d @@ -168,6 +168,8 @@ import core.sys.posix.pwd, core.sys.posix.unistd, core.stdc.string : strlen; import std.algorithm : splitter; + // Bionic doesn't have pw_gecos on ARM + version(CRuntime_Bionic) {} else if (auto pw = getpwuid(getuid)) { auto uinfo = pw.pw_gecos[0 .. strlen(pw.pw_gecos)].splitter(',');