bootstrap-debug-lean.mk 537 B

123456789101112
  1. # This BUILD_CONFIG option is a bit like bootstrap-debug, but rather
  2. # than comparing stripped object files, it compares compiler internal
  3. # state during stage3. Both can be used simultaneously.
  4. # This makes it slower than bootstrap-debug alone, for there's
  5. # additional dumping and recompilation during stage3.
  6. # bootstrap-debug-big can avoid the recompilation, if plenty of disk
  7. # space is available.
  8. STAGE2_CFLAGS += -fcompare-debug=
  9. STAGE3_CFLAGS += -fcompare-debug
  10. do-compare = $(SHELL) $(srcdir)/contrib/compare-debug $$f1 $$f2