[PATCH] D40771: [WebAssembly] Remove used --sysroot option
Sam Clegg via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 3 09:20:35 PST 2017
sbc100 added a comment.
It allows one to write:
lld --sysroot=/foo -L=/usr/lib -L=/usr/local/lib
as shorthand for:
lld -L/foo/usr/lib -L/foo/usr/local/lib
(although in this case is actually shorter to write the latter).
I've need seen this used in practice and its not used by the clang driver.
https://reviews.llvm.org/D40771
More information about the llvm-commits
mailing list