]> granicus.if.org Git - clang/commit
ccc: Introduce ToolChains for mapping Actions to Tools which can
authorDaniel Dunbar <daniel@zuster.org>
Sat, 10 Jan 2009 02:07:54 +0000 (02:07 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 10 Jan 2009 02:07:54 +0000 (02:07 +0000)
commit4312472607d3f4010ad6e82aaa56a424eccee682
treefcfae00429862ff8af4bf827b1b98bdcafff38ab
parenta9ad2bc663ec4d7e160a4bbfe932db80a3f03ed6
ccc: Introduce ToolChains for mapping Actions to Tools which can
perform them.

 - A ToolChain is a coherent set of tools use in a compilation
   process. The idea is that a ToolChain holds roughly the information
   (specs, search paths, etc.) that is in a single gcc binary.

 - The default ToolChain is selected by the host and will generally
   correspond to what the default system compiler would do. However,
   this can be over-riden for a variety of purposes, for example the
   by the driver driver or for testing.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62021 91177308-0d34-0410-b5e6-96231b3b80d8
tools/ccc/ccclib/Driver.py
tools/ccc/ccclib/HostInfo.py
tools/ccc/ccclib/ToolChain.py [new file with mode: 0644]