We have PR34946 about that LLD does not support this option.
Spec (http://man7.org/linux/man-pages/man1/ld.1.html) tells about --orphan-handling=MODE,
option where MODE can be one of four: "place", "discard", "warn", "error".
Currently we already report orphans when -verbose given, what becomes excessive with option implemented.
Given above I think reasonable behavior is to stop reporting orphans when -versbose is given,
and support "place", "warn" and "error" modes. I am not sure about usefulness of "discard"
and its a bit scary, so I suggest to not implement it. Patch demonstrate the change I am suggesting.