-z defs is the same as --no-undefined (http://linux.die.net/man/1/ld).
It looks to be a error to handle it separatelly.
Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
ELF/Driver.cpp | ||
---|---|---|
366 ↗ | (On Diff #62074) | Config->NoUndefined = Args.hasArg(OPT_no_undefined) || hasZOption(Args, "defs") would be better. |
ELF/Driver.cpp | ||
---|---|---|
366 ↗ | (On Diff #62074) | Ok. I wanted to leave -z group along, but that also works. |
ELF/Driver.cpp | ||
---|---|---|
366 ↗ | (On Diff #62074) | I understand, but |= seems too subtle. |