The following uses should work, but currently fail because the linker can't load a file whose name is the empty string. ``` rust #[link_args = "-lc "] extern {} ``` ``` rust #[link_args = " -lc"] extern {} ``` ``` rust #[link_args = "-lm -lc"] extern {} ``` Splitting on spaces was introduced in #6192