The '-t' option is not available in OS X because it does not have librt
Serial port logger which can be used to print to stdout.
Brought to you by:
jame
Because OS X does not have the rt library (librt) available, the current implemention of the -t (--timeout) which uses that will not work on OS X. See the attached file for an example of the errors that come up when attemping to compile the current version of ttylog (0.29) on OS X..
Issue was originally reported at https://github.com/rocasa/ttylog/issues/6
Diff:
A work around in the code for now could be to bypass the '-t' option altogether when compiling OS X. Perhaps enclosing the code for the '-t' option with an 'if' clause that just prints that the '-t' option is not available when the librt library is not available. That way the option is still there but the compile won't
fail on OS X.