mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
14ec5237a1
- Copied the relevant parts of mipshal.mk from the toolchain - Cleaned up CFLAGS and more in Makefile.include - Added empty syscalls implementation which can be used to interface with the UHI system - Added a note on why -std=gnu99 is necessary for this CPU presently
11 lines
249 B
Makefile
11 lines
249 B
Makefile
export MEMORY_BASE=0x80000000
|
|
export MEMORY_SIZE=1M
|
|
export APP_START=0x80000000
|
|
|
|
include $(RIOTMAKE)/arch/mips.inc.mk
|
|
|
|
export LINKFLAGS += -Tuhi32.ld
|
|
export USEMODULE += periph
|
|
export USEMODULE += newlib
|
|
export USEMODULE += newlib_syscalls_mips_uhi
|