[PATCH] D35352: [ELF] - Implement filter library support (-F / --filter)
George Rimar via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 14 01:36:33 PDT 2017
>Is the order important across options?
>
>What should we get for "-f foo -F bar -f zed"?
>
>Cheers,
>Rafael
That should depend on runtime linker implementation I think,
both gold and bfd will output:
0x000000007fffffff (FILTER) Filter library: [bar]
0x000000007ffffffd (AUXILIARY) Auxiliary library: [zed]
0x000000007ffffffd (AUXILIARY) Auxiliary library: [foo]
I think we can follow for now.
George.
More information about the llvm-commits
mailing list