On Illumos `uname -o` outputs "illumos". We weren't testing for
that so it fell through to the Linux block which runs libc.so to
get the version string. On Illumos that outputs
usage: ld.so.1 [-e option,...] dynamic-object [object args,...]
gdb_version="`gdb --version 2> /dev/null | head -1`"
if [ `uname -o` = "Solaris" ]; then
libc="Solaris libc"
+elif [ `uname -o` = "illumos" ]; then
+ libc="Illumos libc"
elif [ `uname -o` = "FreeBSD" ]; then
libc="FreeBSD libc"
else