Also reduce the error to a warning so that debug and release
versions can still link the same inputs.
Details
Details
- Reviewers
ruiu yurydelendik - Commits
- rGc1953144acfe: [WebAssembly] Only perform sanity checking of relocation targets in debug builds
rLLD331571: [WebAssembly] Only perform sanity checking of relocation targets in debug builds
rL331571: [WebAssembly] Only perform sanity checking of relocation targets in debug builds
Diff Detail
Diff Detail
- Repository
- rLLD LLVM Linker
- Build Status
Buildable 17745 Build 17745: arc lint + arc unit
Event Timeline
Comment Actions
LGTM with this chagne.
wasm/InputChunks.cpp | ||
---|---|---|
60 | I think it is better to define this function whether it is debug or not make the number of moving things as small as possible. You can just not call it if not debug. |
Comment Actions
Also converted to a warning since it doesn't actually stop the linker doing its job if the input has something different at the existing location.
I think it is better to define this function whether it is debug or not make the number of moving things as small as possible. You can just not call it if not debug.