mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
use only the amount of extram needed
This commit is contained in:
parent
74267d94df
commit
cb717ed108
1 changed files with 3 additions and 1 deletions
|
|
@ -4,7 +4,9 @@ PROJECT:=$(shell basename ${PWD})
|
||||||
OPT=-Os
|
OPT=-Os
|
||||||
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S
|
SRCS=${PROJECT}.c ${TOPDIR}/apps/crt0.S
|
||||||
|
|
||||||
HOST_EXTRA=-i 4294967295
|
HEAP_SIZE=$(shell echo "320 * 200 * 4" | bc)
|
||||||
|
HOST_EXTRA=-e ${HEAP_SIZE} -i 9999999
|
||||||
|
|
||||||
all: all_common
|
all: all_common
|
||||||
test: all
|
test: all
|
||||||
${TOPDIR}/hosts/host-sdl/host-sdl ${HOST_EXTRA} ${PWD}/${PROJECT}.bin
|
${TOPDIR}/hosts/host-sdl/host-sdl ${HOST_EXTRA} ${PWD}/${PROJECT}.bin
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue