Skip to content

Commit

Permalink
perf: set max allocs per node to 50000
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabolus committed Jul 24, 2022
1 parent a3322cf commit 679ee7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ LCCFLAGS_gg =
LCCFLAGS += $(LCCFLAGS_$(EXT)) # This adds the current platform specific LCC Flags

LCCFLAGS += -Wl-j -Wm-yoA -Wm-ya4 -autobank -Wb-ext=.rel -Wb-v # MBC + Autobanking related flags
LCCFLAGS += -debug -Wa-l -Wl-m -Wf--debug -Wl-y -Wl-w -Wm-yS
LCCFLAGS += -v # Uncomment for lcc verbose output
LCCFLAGS += -debug -Wa-l -Wl-m -Wf--debug -Wl-y -Wl-w -Wm-yS # Debugging related flags
LCCFLAGS += -Wf--max-allocs-per-node50000 # Optimization related flags
LCCFLAGS += -v # Verboseness related flags

# You can set the name of the ROM file here
PROJECTNAME = portfolio
Expand Down

0 comments on commit 679ee7a

Please sign in to comment.