From 4c832a9195cfca5a2d840c30efc010da75f71b4b Mon Sep 17 00:00:00 2001 From: kkitayam <45088311+kkitayam@users.noreply.github.com> Date: Sat, 27 Mar 2021 22:20:15 +0900 Subject: [PATCH] Set newlib as the default library --- hw/bsp/gr_citrus/board.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hw/bsp/gr_citrus/board.mk b/hw/bsp/gr_citrus/board.mk index 241c12bc..39aef2e9 100644 --- a/hw/bsp/gr_citrus/board.mk +++ b/hw/bsp/gr_citrus/board.mk @@ -10,22 +10,23 @@ CFLAGS += \ # Cross Compiler for RX CROSS_COMPILE = rx-elf- +RX_NEWLIB ?= 1 + ifeq ($(CMDEXE),1) OPTLIBINC="$(shell for /F "usebackq delims=" %%i in (`where rx-elf-gcc`) do echo %%~dpi..\rx-elf\optlibinc)" else OPTLIBINC=$(shell dirname `which rx-elf-gcc`)../rx-elf/optlibinc endif -ifeq ($(RX_NEWLIB),0) +ifeq ($(RX_NEWLIB),1) +CFLAGS += -DSSIZE_MAX=__INT_MAX__ +else # setup for optlib CFLAGS += -nostdinc \ -isystem $(OPTLIBINC) \ -DLWIP_NO_INTTYPES_H LIBS += -loptc -loptm -else -# setup for newlib -LIBS += -lm endif MCU_DIR = hw/mcu/renesas/rx63n