快乐虾
http://blog.csdn.net/lights_joy/
lights@hb165.com
本文适用于
gcc- 4.3.1
configure –target=bfin-uclinux-gnu
Blackfin系列DSP
Cygwin gcc 3.4.4
欢迎转载,但请保留作者信息
在gcc- 4.3.1 主控Makefile中,将创建host-i686-pc-cygwin子目录,并在其中编译生成libiberty.a,libcpp.a,libdecnumber.a这几个库文件,然后创建host-i686-pc-cygwin/gcc子目录,并在其中动态生成一个Makefile,再进行make all操作。此时要求生成的all目标有如下的依赖关系:
# This is the default target.
# Set by autoconf to "all.internal" for a native build, or
# "all.cross" to build a cross compiler.
all: all.cross
而all.cross又有以下依赖关系:
# This is what to compile if making a cross-compiler.
all.cross: native gcc-cross$(exeext) cpp$(exeext) specs /
libgcc-support lang.all.cross doc # srcextra
native目标的依赖关系为:
# This is what is made with the host's compiler
# whether making a cross compiler or not.
native: config.status auto-host.h build-po $(LANGUAGES) /
$(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(COLLECT2)
这里有
LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)
CONFIG_LANGUAGES = c++ fortran java objc
EXTRA_PASSES =
EXTRA_PROGRAMS =
COLLECT2 = collect2$(exeext)
在本文中仅分析cc1.exe这个目标的生成。
下面给出了生成cc1.exe时各目标的生成顺序:
host-i686-pc-cygwin/gcc/Makefile: cs-config.h: begin
host-i686-pc-cygwin/gcc/Makefile: cs-config.h: end
host-i686-pc-cygwin/gcc/Makefile: cs-tm.h: begin
host-i686-pc-cygwin/gcc/Makefile: cs-tm.h: end
host-i686-pc-cygwin/gcc/Makefile: s-options: begin
host-i686-pc-cygwin/gcc/Makefile: s-options: end
host-i686-pc-cygwin/gcc/Makefile: s-options-h: begin
host-i686-pc-cygwin/gcc/Makefile: s-options-h: end
host-i686-pc-cygwin/gcc/Makefile: cs-bconfig.h: begin
host-i686-pc-cygwin/gcc/Makefile: cs-bconfig.h: end
host-i686-pc-cygwin/gcc/Makefile: build/genmodes.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genmodes.o: end
host-i686-pc-cygwin/gcc/Makefile: build/errors.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/errors.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genmodes.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genmodes.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-modes-h: begin
host-i686-pc-cygwin/gcc/Makefile: s-modes-h: end
host-i686-pc-cygwin/gcc/Makefile: build/genconstants.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconstants.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gengenrtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengenrtl.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gengenrtl.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengenrtl.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-genrtl-h: begin
host-i686-pc-cygwin/gcc/Makefile: s-genrtl-h: end
host-i686-pc-cygwin/gcc/Makefile: build/gengtype.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengtype.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gengtype-lex.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengtype-lex.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gengtype-parse.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengtype-parse.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gengtype.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gengtype.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-gtype: begin
host-i686-pc-cygwin/gcc/Makefile: s-gtype: end
host-i686-pc-cygwin/gcc/Makefile: build/rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: build/read-rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/read-rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: build/ggc-none.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/ggc-none.o: end
host-i686-pc-cygwin/gcc/Makefile: build/vec.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/vec.o: end
host-i686-pc-cygwin/gcc/Makefile: s-modes-m: begin
host-i686-pc-cygwin/gcc/Makefile: s-modes-m: end
host-i686-pc-cygwin/gcc/Makefile: build/min-insn-modes.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/min-insn-modes.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gensupport.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gensupport.o: end
host-i686-pc-cygwin/gcc/Makefile: build/print-rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/print-rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genconstants.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconstants.exe: end
host-i686-pc-cygwin/gcc/Makefile: build/genmddeps.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genmddeps.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genmddeps.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genmddeps.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-mddeps: begin
host-i686-pc-cygwin/gcc/Makefile: s-mddeps: end
host-i686-pc-cygwin/gcc/Makefile: s-constants: begin
host-i686-pc-cygwin/gcc/Makefile: s-constants: end
host-i686-pc-cygwin/gcc/Makefile: build/genflags.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genflags.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genflags.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genflags.exe: end
host-i686-pc-cygwin/gcc/Makefile: build/genconditions.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconditions.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genconditions.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconditions.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-conditions: begin
host-i686-pc-cygwin/gcc/Makefile: s-conditions: end
host-i686-pc-cygwin/gcc/Makefile: cs-tm_p.h: begin
host-i686-pc-cygwin/gcc/Makefile: cs-tm_p.h: end
host-i686-pc-cygwin/gcc/Makefile: build/genpreds.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genpreds.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genpreds.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genpreds.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-preds-h: begin
host-i686-pc-cygwin/gcc/Makefile: s-preds-h: end
host-i686-pc-cygwin/gcc/Makefile: build/gencheck.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencheck.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gencheck.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencheck.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-check: begin
host-i686-pc-cygwin/gcc/Makefile: s-check: end
host-i686-pc-cygwin/gcc/Makefile: s-constrs-h: begin
host-i686-pc-cygwin/gcc/Makefile: s-constrs-h: end
host-i686-pc-cygwin/gcc/Makefile: build/gencondmd.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencondmd.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gencondmd.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencondmd.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-condmd: begin
host-i686-pc-cygwin/gcc/Makefile: s-condmd: end
host-i686-pc-cygwin/gcc/Makefile: c-lang.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-lang.o: end
host-i686-pc-cygwin/gcc/Makefile: stub-objc.o: begin
host-i686-pc-cygwin/gcc/Makefile: stub-objc.o: end
host-i686-pc-cygwin/gcc/Makefile: attribs.o: begin
host-i686-pc-cygwin/gcc/Makefile: attribs.o: end
host-i686-pc-cygwin/gcc/Makefile: c-errors.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-errors.o: end
host-i686-pc-cygwin/gcc/Makefile: c-lex.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-lex.o: end
host-i686-pc-cygwin/gcc/Makefile: c-pragma.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-pragma.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genconfig.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconfig.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genconfig.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genconfig.exe: end
host-i686-pc-cygwin/gcc/Makefile: c-decl.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-decl.o: end
host-i686-pc-cygwin/gcc/Makefile: c-typeck.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-typeck.o: end
host-i686-pc-cygwin/gcc/Makefile: c-convert.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-convert.o: end
host-i686-pc-cygwin/gcc/Makefile: c-aux-info.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-aux-info.o: end
host-i686-pc-cygwin/gcc/Makefile: c-common.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-common.o: end
host-i686-pc-cygwin/gcc/Makefile: c-opts.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-opts.o: end
host-i686-pc-cygwin/gcc/Makefile: c-format.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-format.o: end
host-i686-pc-cygwin/gcc/Makefile: c-semantics.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-semantics.o: end
host-i686-pc-cygwin/gcc/Makefile: c-incpath.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-incpath.o: end
host-i686-pc-cygwin/gcc/Makefile: cppdefault.o: begin
host-i686-pc-cygwin/gcc/Makefile: cppdefault.o: end
host-i686-pc-cygwin/gcc/Makefile: c-ppoutput.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-ppoutput.o: end
host-i686-pc-cygwin/gcc/Makefile: c-cppbuiltin.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-cppbuiltin.o: end
host-i686-pc-cygwin/gcc/Makefile: prefix.o: begin
host-i686-pc-cygwin/gcc/Makefile: prefix.o: end
host-i686-pc-cygwin/gcc/Makefile: c-objc-common.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-objc-common.o: end
host-i686-pc-cygwin/gcc/Makefile: c-dump.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-dump.o: end
host-i686-pc-cygwin/gcc/Makefile: c-pch.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-pch.o: end
host-i686-pc-cygwin/gcc/Makefile: c-parser.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-parser.o: end
host-i686-pc-cygwin/gcc/Makefile: c-gimplify.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-gimplify.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-mudflap.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-mudflap.o: end
host-i686-pc-cygwin/gcc/Makefile: c-pretty-print.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-pretty-print.o: end
host-i686-pc-cygwin/gcc/Makefile: c-omp.o: begin
host-i686-pc-cygwin/gcc/Makefile: c-omp.o: end
host-i686-pc-cygwin/gcc/Makefile: dummy-checksum.o: begin
host-i686-pc-cygwin/gcc/Makefile: dummy-checksum.o: end
host-i686-pc-cygwin/gcc/Makefile: main.o: begin
host-i686-pc-cygwin/gcc/Makefile: main.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genattrtab.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genattrtab.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genattrtab.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genattrtab.exe: end
host-i686-pc-cygwin/gcc/Makefile: build/genattr.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genattr.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genattr.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genattr.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-attrtab.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-attrtab.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genautomata.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genautomata.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genautomata.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genautomata.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-automata.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-automata.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genemit.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genemit.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genemit.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genemit.exe: end
host-i686-pc-cygwin/gcc/Makefile: build/gencodes.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencodes.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gencodes.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gencodes.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-emit.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-emit.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genextract.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genextract.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genextract.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genextract.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-extract.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-extract.o: end
host-i686-pc-cygwin/gcc/Makefile: s-modes: begin
host-i686-pc-cygwin/gcc/Makefile: s-modes: end
host-i686-pc-cygwin/gcc/Makefile: insn-modes.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-modes.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genopinit.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genopinit.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genopinit.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genopinit.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-opinit.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-opinit.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genoutput.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genoutput.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genoutput.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genoutput.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-output.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-output.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genpeep.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genpeep.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genpeep.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genpeep.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-peep.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-peep.o: end
host-i686-pc-cygwin/gcc/Makefile: s-preds: begin
host-i686-pc-cygwin/gcc/Makefile: s-preds: end
host-i686-pc-cygwin/gcc/Makefile: insn-preds.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-preds.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genrecog.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genrecog.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genrecog.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genrecog.exe: end
host-i686-pc-cygwin/gcc/Makefile: insn-recog.o: begin
host-i686-pc-cygwin/gcc/Makefile: insn-recog.o: end
host-i686-pc-cygwin/gcc/Makefile: ggc-page.o: begin
host-i686-pc-cygwin/gcc/Makefile: ggc-page.o: end
host-i686-pc-cygwin/gcc/Makefile: alias.o: begin
host-i686-pc-cygwin/gcc/Makefile: alias.o: end
host-i686-pc-cygwin/gcc/Makefile: alloc-pool.o: begin
host-i686-pc-cygwin/gcc/Makefile: alloc-pool.o: end
host-i686-pc-cygwin/gcc/Makefile: auto-inc-dec.o: begin
host-i686-pc-cygwin/gcc/Makefile: auto-inc-dec.o: end
host-i686-pc-cygwin/gcc/Makefile: bb-reorder.o: begin
host-i686-pc-cygwin/gcc/Makefile: bb-reorder.o: end
host-i686-pc-cygwin/gcc/Makefile: bitmap.o: begin
host-i686-pc-cygwin/gcc/Makefile: bitmap.o: end
host-i686-pc-cygwin/gcc/Makefile: bt-load.o: begin
host-i686-pc-cygwin/gcc/Makefile: bt-load.o: end
host-i686-pc-cygwin/gcc/Makefile: builtins.o: begin
host-i686-pc-cygwin/gcc/Makefile: builtins.o: end
host-i686-pc-cygwin/gcc/Makefile: caller-save.o: begin
host-i686-pc-cygwin/gcc/Makefile: caller-save.o: end
host-i686-pc-cygwin/gcc/Makefile: calls.o: begin
host-i686-pc-cygwin/gcc/Makefile: calls.o: end
host-i686-pc-cygwin/gcc/Makefile: cfg.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfg.o: end
host-i686-pc-cygwin/gcc/Makefile: cfganal.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfganal.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgbuild.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgbuild.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgcleanup.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgcleanup.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgexpand.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgexpand.o: end
host-i686-pc-cygwin/gcc/Makefile: cfghooks.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfghooks.o: end
host-i686-pc-cygwin/gcc/Makefile: cfglayout.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfglayout.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgloop.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgloop.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgloopanal.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgloopanal.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgloopmanip.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgloopmanip.o: end
host-i686-pc-cygwin/gcc/Makefile: cfgrtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: cfgrtl.o: end
host-i686-pc-cygwin/gcc/Makefile: combine.o: begin
host-i686-pc-cygwin/gcc/Makefile: combine.o: end
host-i686-pc-cygwin/gcc/Makefile: combine-stack-adj.o: begin
host-i686-pc-cygwin/gcc/Makefile: combine-stack-adj.o: end
host-i686-pc-cygwin/gcc/Makefile: convert.o: begin
host-i686-pc-cygwin/gcc/Makefile: convert.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gcov-iov.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/gcov-iov.o: end
host-i686-pc-cygwin/gcc/Makefile: build/gcov-iov.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/gcov-iov.exe: end
host-i686-pc-cygwin/gcc/Makefile: s-iov: begin
host-i686-pc-cygwin/gcc/Makefile: s-iov: end
host-i686-pc-cygwin/gcc/Makefile: coverage.o: begin
host-i686-pc-cygwin/gcc/Makefile: coverage.o: end
host-i686-pc-cygwin/gcc/Makefile: cse.o: begin
host-i686-pc-cygwin/gcc/Makefile: cse.o: end
host-i686-pc-cygwin/gcc/Makefile: cselib.o: begin
host-i686-pc-cygwin/gcc/Makefile: cselib.o: end
host-i686-pc-cygwin/gcc/Makefile: dbxout.o: begin
host-i686-pc-cygwin/gcc/Makefile: dbxout.o: end
host-i686-pc-cygwin/gcc/Makefile: dbgcnt.o: begin
host-i686-pc-cygwin/gcc/Makefile: dbgcnt.o: end
host-i686-pc-cygwin/gcc/Makefile: dce.o: begin
host-i686-pc-cygwin/gcc/Makefile: dce.o: end
host-i686-pc-cygwin/gcc/Makefile: ddg.o: begin
host-i686-pc-cygwin/gcc/Makefile: ddg.o: end
host-i686-pc-cygwin/gcc/Makefile: debug.o: begin
host-i686-pc-cygwin/gcc/Makefile: debug.o: end
host-i686-pc-cygwin/gcc/Makefile: df-core.o: begin
host-i686-pc-cygwin/gcc/Makefile: df-core.o: end
host-i686-pc-cygwin/gcc/Makefile: df-problems.o: begin
host-i686-pc-cygwin/gcc/Makefile: df-problems.o: end
host-i686-pc-cygwin/gcc/Makefile: df-scan.o: begin
host-i686-pc-cygwin/gcc/Makefile: df-scan.o: end
host-i686-pc-cygwin/gcc/Makefile: dfp.o: begin
host-i686-pc-cygwin/gcc/Makefile: dfp.o: end
host-i686-pc-cygwin/gcc/Makefile: diagnostic.o: begin
host-i686-pc-cygwin/gcc/Makefile: diagnostic.o: end
host-i686-pc-cygwin/gcc/Makefile: dojump.o: begin
host-i686-pc-cygwin/gcc/Makefile: dojump.o: end
host-i686-pc-cygwin/gcc/Makefile: dominance.o: begin
host-i686-pc-cygwin/gcc/Makefile: dominance.o: end
host-i686-pc-cygwin/gcc/Makefile: domwalk.o: begin
host-i686-pc-cygwin/gcc/Makefile: domwalk.o: end
host-i686-pc-cygwin/gcc/Makefile: double-int.o: begin
host-i686-pc-cygwin/gcc/Makefile: double-int.o: end
host-i686-pc-cygwin/gcc/Makefile: dse.o: begin
host-i686-pc-cygwin/gcc/Makefile: dse.o: end
host-i686-pc-cygwin/gcc/Makefile: dwarf2asm.o: begin
host-i686-pc-cygwin/gcc/Makefile: dwarf2asm.o: end
host-i686-pc-cygwin/gcc/Makefile: dwarf2out.o: begin
host-i686-pc-cygwin/gcc/Makefile: dwarf2out.o: end
host-i686-pc-cygwin/gcc/Makefile: ebitmap.o: begin
host-i686-pc-cygwin/gcc/Makefile: ebitmap.o: end
host-i686-pc-cygwin/gcc/Makefile: emit-rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: emit-rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: et-forest.o: begin
host-i686-pc-cygwin/gcc/Makefile: et-forest.o: end
host-i686-pc-cygwin/gcc/Makefile: except.o: begin
host-i686-pc-cygwin/gcc/Makefile: except.o: end
host-i686-pc-cygwin/gcc/Makefile: explow.o: begin
host-i686-pc-cygwin/gcc/Makefile: explow.o: end
host-i686-pc-cygwin/gcc/Makefile: expmed.o: begin
host-i686-pc-cygwin/gcc/Makefile: expmed.o: end
host-i686-pc-cygwin/gcc/Makefile: expr.o: begin
host-i686-pc-cygwin/gcc/Makefile: expr.o: end
host-i686-pc-cygwin/gcc/Makefile: final.o: begin
host-i686-pc-cygwin/gcc/Makefile: final.o: end
host-i686-pc-cygwin/gcc/Makefile: fixed-value.o: begin
host-i686-pc-cygwin/gcc/Makefile: fixed-value.o: end
host-i686-pc-cygwin/gcc/Makefile: fold-const.o: begin
host-i686-pc-cygwin/gcc/Makefile: fold-const.o: end
host-i686-pc-cygwin/gcc/Makefile: function.o: begin
host-i686-pc-cygwin/gcc/Makefile: function.o: end
host-i686-pc-cygwin/gcc/Makefile: fwprop.o: begin
host-i686-pc-cygwin/gcc/Makefile: fwprop.o: end
host-i686-pc-cygwin/gcc/Makefile: gcse.o: begin
host-i686-pc-cygwin/gcc/Makefile: gcse.o: end
host-i686-pc-cygwin/gcc/Makefile: s-genrtl: begin
host-i686-pc-cygwin/gcc/Makefile: s-genrtl: end
host-i686-pc-cygwin/gcc/Makefile: genrtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: genrtl.o: end
host-i686-pc-cygwin/gcc/Makefile: ggc-common.o: begin
host-i686-pc-cygwin/gcc/Makefile: ggc-common.o: end
host-i686-pc-cygwin/gcc/Makefile: gimple-low.o: begin
host-i686-pc-cygwin/gcc/Makefile: gimple-low.o: end
host-i686-pc-cygwin/gcc/Makefile: gimplify.o: begin
host-i686-pc-cygwin/gcc/Makefile: gimplify.o: end
host-i686-pc-cygwin/gcc/Makefile: global.o: begin
host-i686-pc-cygwin/gcc/Makefile: global.o: end
host-i686-pc-cygwin/gcc/Makefile: graph.o: begin
host-i686-pc-cygwin/gcc/Makefile: graph.o: end
host-i686-pc-cygwin/gcc/Makefile: graphds.o: begin
host-i686-pc-cygwin/gcc/Makefile: graphds.o: end
host-i686-pc-cygwin/gcc/Makefile: gtype-desc.o: begin
host-i686-pc-cygwin/gcc/Makefile: gtype-desc.o: end
host-i686-pc-cygwin/gcc/Makefile: haifa-sched.o: begin
host-i686-pc-cygwin/gcc/Makefile: haifa-sched.o: end
host-i686-pc-cygwin/gcc/Makefile: hooks.o: begin
host-i686-pc-cygwin/gcc/Makefile: hooks.o: end
host-i686-pc-cygwin/gcc/Makefile: ifcvt.o: begin
host-i686-pc-cygwin/gcc/Makefile: ifcvt.o: end
host-i686-pc-cygwin/gcc/Makefile: init-regs.o: begin
host-i686-pc-cygwin/gcc/Makefile: init-regs.o: end
host-i686-pc-cygwin/gcc/Makefile: integrate.o: begin
host-i686-pc-cygwin/gcc/Makefile: integrate.o: end
host-i686-pc-cygwin/gcc/Makefile: intl.o: begin
host-i686-pc-cygwin/gcc/Makefile: intl.o: end
host-i686-pc-cygwin/gcc/Makefile: jump.o: begin
host-i686-pc-cygwin/gcc/Makefile: jump.o: end
host-i686-pc-cygwin/gcc/Makefile: lambda-code.o: begin
host-i686-pc-cygwin/gcc/Makefile: lambda-code.o: end
host-i686-pc-cygwin/gcc/Makefile: lambda-mat.o: begin
host-i686-pc-cygwin/gcc/Makefile: lambda-mat.o: end
host-i686-pc-cygwin/gcc/Makefile: lambda-trans.o: begin
host-i686-pc-cygwin/gcc/Makefile: lambda-trans.o: end
host-i686-pc-cygwin/gcc/Makefile: langhooks.o: begin
host-i686-pc-cygwin/gcc/Makefile: langhooks.o: end
host-i686-pc-cygwin/gcc/Makefile: lcm.o: begin
host-i686-pc-cygwin/gcc/Makefile: lcm.o: end
host-i686-pc-cygwin/gcc/Makefile: lists.o: begin
host-i686-pc-cygwin/gcc/Makefile: lists.o: end
host-i686-pc-cygwin/gcc/Makefile: local-alloc.o: begin
host-i686-pc-cygwin/gcc/Makefile: local-alloc.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-doloop.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-doloop.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-init.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-init.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-invariant.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-invariant.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-iv.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-iv.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-unroll.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-unroll.o: end
host-i686-pc-cygwin/gcc/Makefile: loop-unswitch.o: begin
host-i686-pc-cygwin/gcc/Makefile: loop-unswitch.o: end
host-i686-pc-cygwin/gcc/Makefile: lower-subreg.o: begin
host-i686-pc-cygwin/gcc/Makefile: lower-subreg.o: end
host-i686-pc-cygwin/gcc/Makefile: mode-switching.o: begin
host-i686-pc-cygwin/gcc/Makefile: mode-switching.o: end
host-i686-pc-cygwin/gcc/Makefile: modulo-sched.o: begin
host-i686-pc-cygwin/gcc/Makefile: modulo-sched.o: end
host-i686-pc-cygwin/gcc/Makefile: omega.o: begin
host-i686-pc-cygwin/gcc/Makefile: omega.o: end
host-i686-pc-cygwin/gcc/Makefile: omp-low.o: begin
host-i686-pc-cygwin/gcc/Makefile: omp-low.o: end
host-i686-pc-cygwin/gcc/Makefile: optabs.o: begin
host-i686-pc-cygwin/gcc/Makefile: optabs.o: end
host-i686-pc-cygwin/gcc/Makefile: options.o: begin
host-i686-pc-cygwin/gcc/Makefile: options.o: end
host-i686-pc-cygwin/gcc/Makefile: opts-common.o: begin
host-i686-pc-cygwin/gcc/Makefile: opts-common.o: end
host-i686-pc-cygwin/gcc/Makefile: opts.o: begin
host-i686-pc-cygwin/gcc/Makefile: opts.o: end
host-i686-pc-cygwin/gcc/Makefile: params.o: begin
host-i686-pc-cygwin/gcc/Makefile: params.o: end
host-i686-pc-cygwin/gcc/Makefile: passes.o: begin
host-i686-pc-cygwin/gcc/Makefile: passes.o: end
host-i686-pc-cygwin/gcc/Makefile: pointer-set.o: begin
host-i686-pc-cygwin/gcc/Makefile: pointer-set.o: end
host-i686-pc-cygwin/gcc/Makefile: postreload-gcse.o: begin
host-i686-pc-cygwin/gcc/Makefile: postreload-gcse.o: end
host-i686-pc-cygwin/gcc/Makefile: postreload.o: begin
host-i686-pc-cygwin/gcc/Makefile: postreload.o: end
host-i686-pc-cygwin/gcc/Makefile: predict.o: begin
host-i686-pc-cygwin/gcc/Makefile: predict.o: end
host-i686-pc-cygwin/gcc/Makefile: pretty-print.o: begin
host-i686-pc-cygwin/gcc/Makefile: pretty-print.o: end
host-i686-pc-cygwin/gcc/Makefile: print-rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: print-rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: print-tree.o: begin
host-i686-pc-cygwin/gcc/Makefile: print-tree.o: end
host-i686-pc-cygwin/gcc/Makefile: profile.o: begin
host-i686-pc-cygwin/gcc/Makefile: profile.o: end
host-i686-pc-cygwin/gcc/Makefile: ra-conflict.o: begin
host-i686-pc-cygwin/gcc/Makefile: ra-conflict.o: end
host-i686-pc-cygwin/gcc/Makefile: real.o: begin
host-i686-pc-cygwin/gcc/Makefile: real.o: end
host-i686-pc-cygwin/gcc/Makefile: recog.o: begin
host-i686-pc-cygwin/gcc/Makefile: recog.o: end
host-i686-pc-cygwin/gcc/Makefile: reg-stack.o: begin
host-i686-pc-cygwin/gcc/Makefile: reg-stack.o: end
host-i686-pc-cygwin/gcc/Makefile: regclass.o: begin
host-i686-pc-cygwin/gcc/Makefile: regclass.o: end
host-i686-pc-cygwin/gcc/Makefile: regmove.o: begin
host-i686-pc-cygwin/gcc/Makefile: regmove.o: end
host-i686-pc-cygwin/gcc/Makefile: regrename.o: begin
host-i686-pc-cygwin/gcc/Makefile: regrename.o: end
host-i686-pc-cygwin/gcc/Makefile: regstat.o: begin
host-i686-pc-cygwin/gcc/Makefile: regstat.o: end
host-i686-pc-cygwin/gcc/Makefile: reload.o: begin
host-i686-pc-cygwin/gcc/Makefile: reload.o: end
host-i686-pc-cygwin/gcc/Makefile: reload1.o: begin
host-i686-pc-cygwin/gcc/Makefile: reload1.o: end
host-i686-pc-cygwin/gcc/Makefile: reorg.o: begin
host-i686-pc-cygwin/gcc/Makefile: reorg.o: end
host-i686-pc-cygwin/gcc/Makefile: resource.o: begin
host-i686-pc-cygwin/gcc/Makefile: resource.o: end
host-i686-pc-cygwin/gcc/Makefile: rtl-error.o: begin
host-i686-pc-cygwin/gcc/Makefile: rtl-error.o: end
host-i686-pc-cygwin/gcc/Makefile: rtl-factoring.o: begin
host-i686-pc-cygwin/gcc/Makefile: rtl-factoring.o: end
host-i686-pc-cygwin/gcc/Makefile: rtl.o: begin
host-i686-pc-cygwin/gcc/Makefile: rtl.o: end
host-i686-pc-cygwin/gcc/Makefile: rtlanal.o: begin
host-i686-pc-cygwin/gcc/Makefile: rtlanal.o: end
host-i686-pc-cygwin/gcc/Makefile: rtlhooks.o: begin
host-i686-pc-cygwin/gcc/Makefile: rtlhooks.o: end
host-i686-pc-cygwin/gcc/Makefile: sbitmap.o: begin
host-i686-pc-cygwin/gcc/Makefile: sbitmap.o: end
host-i686-pc-cygwin/gcc/Makefile: sched-deps.o: begin
host-i686-pc-cygwin/gcc/Makefile: sched-deps.o: end
host-i686-pc-cygwin/gcc/Makefile: sched-ebb.o: begin
host-i686-pc-cygwin/gcc/Makefile: sched-ebb.o: end
host-i686-pc-cygwin/gcc/Makefile: sched-rgn.o: begin
host-i686-pc-cygwin/gcc/Makefile: sched-rgn.o: end
host-i686-pc-cygwin/gcc/Makefile: sched-vis.o: begin
host-i686-pc-cygwin/gcc/Makefile: sched-vis.o: end
host-i686-pc-cygwin/gcc/Makefile: sdbout.o: begin
host-i686-pc-cygwin/gcc/Makefile: sdbout.o: end
host-i686-pc-cygwin/gcc/Makefile: see.o: begin
host-i686-pc-cygwin/gcc/Makefile: see.o: end
host-i686-pc-cygwin/gcc/Makefile: simplify-rtx.o: begin
host-i686-pc-cygwin/gcc/Makefile: simplify-rtx.o: end
host-i686-pc-cygwin/gcc/Makefile: sparseset.o: begin
host-i686-pc-cygwin/gcc/Makefile: sparseset.o: end
host-i686-pc-cygwin/gcc/Makefile: sreal.o: begin
host-i686-pc-cygwin/gcc/Makefile: sreal.o: end
host-i686-pc-cygwin/gcc/Makefile: stack-ptr-mod.o: begin
host-i686-pc-cygwin/gcc/Makefile: stack-ptr-mod.o: end
host-i686-pc-cygwin/gcc/Makefile: stmt.o: begin
host-i686-pc-cygwin/gcc/Makefile: stmt.o: end
host-i686-pc-cygwin/gcc/Makefile: stor-layout.o: begin
host-i686-pc-cygwin/gcc/Makefile: stor-layout.o: end
host-i686-pc-cygwin/gcc/Makefile: stringpool.o: begin
host-i686-pc-cygwin/gcc/Makefile: stringpool.o: end
host-i686-pc-cygwin/gcc/Makefile: struct-equiv.o: begin
host-i686-pc-cygwin/gcc/Makefile: struct-equiv.o: end
host-i686-pc-cygwin/gcc/Makefile: targhooks.o: begin
host-i686-pc-cygwin/gcc/Makefile: targhooks.o: end
host-i686-pc-cygwin/gcc/Makefile: timevar.o: begin
host-i686-pc-cygwin/gcc/Makefile: timevar.o: end
host-i686-pc-cygwin/gcc/Makefile: toplev.o: begin
host-i686-pc-cygwin/gcc/Makefile: toplev.o: end
host-i686-pc-cygwin/gcc/Makefile: tracer.o: begin
host-i686-pc-cygwin/gcc/Makefile: tracer.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-affine.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-affine.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-cfg.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-cfg.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-cfgcleanup.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-cfgcleanup.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-chrec.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-chrec.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-complex.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-complex.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-data-ref.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-data-ref.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-dfa.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-dfa.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-dump.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-dump.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-eh.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-eh.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-gimple.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-gimple.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-if-conv.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-if-conv.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-into-ssa.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-into-ssa.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-iterator.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-iterator.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-loop-linear.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-loop-linear.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-nested.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-nested.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-nrv.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-nrv.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-object-size.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-object-size.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-optimize.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-optimize.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-outof-ssa.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-outof-ssa.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-parloops.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-parloops.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-phinodes.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-phinodes.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-predcom.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-predcom.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-pretty-print.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-pretty-print.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-profile.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-profile.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-scalar-evolution.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-scalar-evolution.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-sra.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-sra.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-address.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-address.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-alias.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-alias.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-alias-warnings.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-alias-warnings.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ccp.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ccp.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-coalesce.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-coalesce.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-copy.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-copy.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-copyrename.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-copyrename.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dce.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dce.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dom.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dom.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dse.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-dse.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-forwprop.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-forwprop.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ifcombine.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ifcombine.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-live.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-live.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ch.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ch.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-im.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-im.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ivcanon.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ivcanon.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ivopts.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-ivopts.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-manip.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-manip.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-niter.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-niter.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-prefetch.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-prefetch.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-unswitch.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop-unswitch.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-loop.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-math-opts.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-math-opts.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-operands.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-operands.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-phiopt.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-phiopt.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-pre.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-pre.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-propagate.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-propagate.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-reassoc.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-reassoc.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-sccvn.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-sccvn.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-sink.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-sink.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-structalias.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-structalias.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ter.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-ter.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-threadedge.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-threadedge.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-threadupdate.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-threadupdate.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-uncprop.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa-uncprop.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssa.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssa.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-ssanames.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-ssanames.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-stdarg.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-stdarg.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-tailcall.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-tailcall.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vect-analyze.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vect-analyze.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vect-generic.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vect-generic.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vect-patterns.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vect-patterns.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vect-transform.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vect-transform.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vectorizer.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vectorizer.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vn.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vn.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-vrp.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-vrp.o: end
host-i686-pc-cygwin/gcc/Makefile: tree.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree.o: end
host-i686-pc-cygwin/gcc/Makefile: value-prof.o: begin
host-i686-pc-cygwin/gcc/Makefile: value-prof.o: end
host-i686-pc-cygwin/gcc/Makefile: var-tracking.o: begin
host-i686-pc-cygwin/gcc/Makefile: var-tracking.o: end
host-i686-pc-cygwin/gcc/Makefile: varasm.o: begin
host-i686-pc-cygwin/gcc/Makefile: varasm.o: end
host-i686-pc-cygwin/gcc/Makefile: varray.o: begin
host-i686-pc-cygwin/gcc/Makefile: varray.o: end
host-i686-pc-cygwin/gcc/Makefile: vec.o: begin
host-i686-pc-cygwin/gcc/Makefile: vec.o: end
host-i686-pc-cygwin/gcc/Makefile: version.o: begin
host-i686-pc-cygwin/gcc/Makefile: version.o: end
host-i686-pc-cygwin/gcc/Makefile: vmsdbgout.o: begin
host-i686-pc-cygwin/gcc/Makefile: vmsdbgout.o: end
host-i686-pc-cygwin/gcc/Makefile: web.o: begin
host-i686-pc-cygwin/gcc/Makefile: web.o: end
host-i686-pc-cygwin/gcc/Makefile: xcoffout.o: begin
host-i686-pc-cygwin/gcc/Makefile: xcoffout.o: end
host-i686-pc-cygwin/gcc/Makefile: bfin.o: begin
host-i686-pc-cygwin/gcc/Makefile: bfin.o: end
host-i686-pc-cygwin/gcc/Makefile: cgraph.o: begin
host-i686-pc-cygwin/gcc/Makefile: cgraph.o: end
host-i686-pc-cygwin/gcc/Makefile: cgraphbuild.o: begin
host-i686-pc-cygwin/gcc/Makefile: cgraphbuild.o: end
host-i686-pc-cygwin/gcc/Makefile: cgraphunit.o: begin
host-i686-pc-cygwin/gcc/Makefile: cgraphunit.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-cp.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-cp.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-inline.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-inline.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-prop.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-prop.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-pure-const.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-pure-const.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-reference.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-reference.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-struct-reorg.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-struct-reorg.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-type-escape.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-type-escape.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa-utils.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa-utils.o: end
host-i686-pc-cygwin/gcc/Makefile: ipa.o: begin
host-i686-pc-cygwin/gcc/Makefile: ipa.o: end
host-i686-pc-cygwin/gcc/Makefile: matrix-reorg.o: begin
host-i686-pc-cygwin/gcc/Makefile: matrix-reorg.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-inline.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-inline.o: end
host-i686-pc-cygwin/gcc/Makefile: tree-nomudflap.o: begin
host-i686-pc-cygwin/gcc/Makefile: tree-nomudflap.o: end
host-i686-pc-cygwin/gcc/Makefile: varpool.o: begin
host-i686-pc-cygwin/gcc/Makefile: varpool.o: end
host-i686-pc-cygwin/gcc/Makefile: libbackend.a: begin
host-i686-pc-cygwin/gcc/Makefile: libbackend.a: end
host-i686-pc-cygwin/gcc/Makefile: build/genchecksum.o: begin
host-i686-pc-cygwin/gcc/Makefile: build/genchecksum.o: end
host-i686-pc-cygwin/gcc/Makefile: build/genchecksum.exe: begin
host-i686-pc-cygwin/gcc/Makefile: build/genchecksum.exe: end
host-i686-pc-cygwin/gcc/Makefile: cc1-checksum.o: begin
host-i686-pc-cygwin/gcc/Makefile: cc1-checksum.o: end
host-i686-pc-cygwin/gcc/Makefile: cc1.exe: begin
host-i686-pc-cygwin/gcc/Makefile: cc1.exe: end
参考资料
host-i686-pc-cygwin/libiberty/Makefile解析( 2008-8-19 )
host-i686-pc-cygwin/fixincludes/Makefile分析( 2008-8-19 )
host-i686-pc-cygwin/zlib/Makefile分析( 2008-8-19 )
host-i686-pc-cygwin/libcpp/Makefile分析( 2008-8-19 )
host-i686-pc-cygwin/libdecnumber/Makefile分析( 2008-8-19 )