Currently, we pass multiple LTO debug options to orbis-ld like this:
orbis-ld --lto=thin --lto-thin-debug-options=<arg1> --lto-thin-debug-options=<arg2> ...
When it should be like this:
orbis-ld --lto=thin --lto-thin-debug-options="<arg1> <arg2>" ...
The description says -lto-debug-options="arg1 arg2" (double-quotes wrapping the argument) but this is generating "-lto-debug-options= arg1 arg2" (double-quotes wrapping the whole option). Which is it that you really want?