[PATCH] D18661: lld: accept elf_i386_fbsd as an alias for elf_i386
Rui Ueyama via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 31 11:58:57 PDT 2016
ruiu added a comment.
Or you can drop "_fbsd" by adding this piece of code at beginning of this function.
if (S.endswith("_fbsd"))
S = S.drop_back(5);
http://reviews.llvm.org/D18661
More information about the llvm-commits
mailing list