Skip to content

Commit

Permalink
fix: do not define stack size for nanos
Browse files Browse the repository at this point in the history
Co-authored-by: Carlo Sala <[email protected]>
  • Loading branch information
ftheirs and carlosala committed Dec 8, 2023
1 parent c7500c3 commit 5c933fa
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions makefiles/Makefile.devices
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,8 @@ else
APP_LOAD_PARAMS += --appFlags 0x000
endif

ifeq ($(NANOS_STACK_SIZE),)
APP_STACK_SIZE:=3150
else
APP_STACK_SIZE:= $(NANOS_STACK_SIZE)
ifneq ($(NANOS_STACK_SIZE),)
$(error NANOS_STACK_SIZE is deprecated. Remove NANOS_STACK_SIZE definition in app/Makefile)
endif

ICONNAME:=$(CURDIR)/nanos_icon.gif
Expand Down

0 comments on commit 5c933fa

Please sign in to comment.