diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-01-20 05:51:52 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-20 05:51:52 +0000 |
| commit | 79660913998c5e7a46a0e6f7b2d7571c6fe9038d (patch) | |
| tree | 3227bf2131240fb2d4f8af008a653dc11a2edf11 /clang/tools/ccc/ccclib/ToolChain.py | |
| parent | 8bc09f4085d68d4597d096c07e76ae34ad9045c1 (diff) | |
| download | bcm5719-llvm-79660913998c5e7a46a0e6f7b2d7571c6fe9038d.tar.gz bcm5719-llvm-79660913998c5e7a46a0e6f7b2d7571c6fe9038d.zip | |
ccc: Darwin/x86: Teach compile tool how to build .pch files. xcc is
now fully independent of the gcc driver when targetting Darwin/x86.
llvm-svn: 62570
Diffstat (limited to 'clang/tools/ccc/ccclib/ToolChain.py')
| -rw-r--r-- | clang/tools/ccc/ccclib/ToolChain.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/tools/ccc/ccclib/ToolChain.py b/clang/tools/ccc/ccclib/ToolChain.py index c3e585efb04..ac1cc0a0bad 100644 --- a/clang/tools/ccc/ccclib/ToolChain.py +++ b/clang/tools/ccc/ccclib/ToolChain.py @@ -54,7 +54,7 @@ class Darwin_X86_ToolChain(ToolChain): self.toolMap = { Phases.PreprocessPhase : Tools.Darwin_X86_PreprocessTool(self), Phases.CompilePhase : Tools.Darwin_X86_CompileTool(self), - Phases.PrecompilePhase : Tools.GCC_PrecompileTool(), + Phases.PrecompilePhase : Tools.Darwin_X86_CompileTool(self), Phases.AssemblePhase : Tools.Darwin_AssembleTool(self), Phases.LinkPhase : Tools.Darwin_X86_LinkTool(self), Phases.LipoPhase : Tools.LipoTool(), |

