Raymond Toy pushed to branch master at cmucl / cmucl Commits: d05c0e10 by Raymond Toy at 2017-01-07T18:24:21-08:00 Solaris needs -lrt to get nanosleep Forgot to add -lrt to linker.sh so that we can create executables on solaris. This is needed to get nanosleep. - - - - - 1 changed file: - src/tools/linker.sh Changes: ===================================== src/tools/linker.sh ===================================== --- a/src/tools/linker.sh +++ b/src/tools/linker.sh @@ -125,7 +125,7 @@ case $uname_s in OPT_EXTRA="-Bdynamic" # See Config.sparc_sunc - OS_LIBS="-lsocket -lnsl -ldl" + OS_LIBS="-lsocket -lnsl -ldl -lrt" ;; esac View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/d05c0e10893b97b653e58170c3...