This is a minimal toolchain, which sets the integrated assembler as default,
and uses lld for linking.
Details
Details
Diff Detail
Diff Detail
Event Timeline
lib/Driver/ToolChains.h | ||
---|---|---|
726 | Please use ToolChain instead of _TC as the suffix. | |
lib/Driver/Tools.cpp | ||
5759 | any reason not to insert getToolChain().getTripleString() vs hardcoding 'amdgcn--' ? |
Comment Actions
Here is an updated patch. I have renamed AMDGPU_TC to AMDGPUToolChain and
replaced the hard-coded amdgcn-- triple with getToolChain().getTripleString()
Please use ToolChain instead of _TC as the suffix.
See http://reviews.llvm.org/D10609 (pending) which standardizes on that.