simulation.mk 308 B

12345678
  1. # NOTE: Configure whether to initialize BSS section to zero during startup
  2. # Set to 0 to skip BSS initialization (requires BSS section to be pre-zeroed)
  3. # Default behavior is to perform BSS initialization
  4. SIMULATION_BSSZERO ?=
  5. ifeq ($(SIMULATION_BSSZERO),0)
  6. COMMON_FLAGS += -DCFG_SIMULATION_BSSZERO=0
  7. endif