02:38:36 Hello. Where might one find the 'm', 'rt', and 'dl' C libraries? 04:26:46 the stuff in librt I think is in libc now and librt just 'forwards' (not sure that's the actual term) the symbols for things still linked against librt 04:26:54 libm should be usr/src/lib/libm 04:27:47 libdl is for reasons in usr/src/cmd/sgs/libld and not under usr/src/lib like you might first expect 04:31:04 https://docs.oracle.com/cd/E88353_01/html/E37842/librt-3lib.html Here is something that turned up (and I would imagine is relevant) about the legacy libraries being filters on libc.so. A dependency on a build is failing over those three libraries. Although, I grepped over /usr and there are plenty of occurrences of '-lm' and '-lrt' being passed as 04:31:05 arguments in multiple libraries, ditto with 'ldl' 04:32:24 The build recognizes the legacy libraries / filters but lists them as missing dependencies 04:33:48 I'll note that down. Thanks for the paths