e8be1984bb
Initial porting to tizenrt-artik05x. Tizen RT is a lightweight RTOS-based platform to support low-end IoT devices. The project is under developing in github TizenRt repo. Artik05x is an IoT SoC solution that will be released soon. This PR contains the minimum porting that can print Hello world from jerryscript and a document for building and running. I used jerry_port.c and jerry_main.c in nuttx port and default port for porting base code. Also I used Make.defs and Makefile in working example in tizenrt for adding jerryscript configuration. JerryScript-DCO-1.0-Signed-off-by: Sanggyu Lee sg5.lee@samsung.com
166 lines
6.4 KiB
Plaintext
166 lines
6.4 KiB
Plaintext
############################################################################
|
|
# configs/stm32_tiny/nsh/Make.defs
|
|
#
|
|
# Copyright (C) 2011, 2012-2013 Gregory Nutt. All rights reserved.
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions
|
|
# are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
# notice, this list of conditions and the following disclaimer in
|
|
# the documentation and/or other materials provided with the
|
|
# distribution.
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
# used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
#
|
|
############################################################################
|
|
|
|
include ${TOPDIR}/.config
|
|
include ${TOPDIR}/tools/Config.mk
|
|
include ${TOPDIR}/arch/arm/src/armv7-r/Toolchain.defs
|
|
|
|
ifeq ($(CONFIG_BOOT_RUNFROMFLASH),y)
|
|
ifeq ($(CONFIG_BOARD_FOTA_SUPPORT),y)
|
|
LDSCRIPT_OTA1 = ld_s5jt200_flash_ota1.script
|
|
endif
|
|
LDSCRIPT = ld_s5jt200_flash.script
|
|
else
|
|
LDSCRIPT = ld_s5jt200.script
|
|
endif
|
|
ifeq ($(CONFIG_UCLIBCXX_HAVE_LIBSUPCXX),y)
|
|
LIBSUPXX = ${shell $(CC) --print-file-name=libsupc++.a}
|
|
EXTRA_LIBPATHS = -L "${shell dirname "$(LIBSUPXX)"}"
|
|
EXTRA_LIBS = -lsupc++
|
|
endif
|
|
|
|
ifeq ($(WINTOOL),y)
|
|
# Windows-native toolchains
|
|
DIRLINK = $(TOPDIR)/tools/copydir.sh
|
|
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
|
|
MKDEP = $(TOPDIR)/tools/mkwindeps.sh
|
|
ARCHINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}"
|
|
ARCHXXINCLUDES = -I. -isystem "${shell cygpath -w $(TOPDIR)/include}" -isystem "${shell cygpath -w $(TOPDIR)/include/cxx}" -isystem "${shell cygpath -w $(TOPDIR)/include/uClibc++}"
|
|
ARCHSCRIPT = -T "${shell cygpath -w $(TOPDIR)/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)}"
|
|
else
|
|
# Linux/Cygwin-native toolchain
|
|
MKDEP = $(TOPDIR)/tools/mkdeps$(HOSTEXEEXT)
|
|
ARCHINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/../framework/include
|
|
ARCHXXINCLUDES = -I. -isystem $(TOPDIR)/include -isystem $(TOPDIR)/include/cxx -isystem $(TOPDIR)/include/uClibc++
|
|
ARCHSCRIPT = -T$(TOPDIR)/../build/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT)
|
|
ifeq ($(CONFIG_BOARD_FOTA_SUPPORT),y)
|
|
ARCHSCRIPT_FOTA = -T$(TOPDIR)/../build/configs/$(CONFIG_ARCH_BOARD)/scripts/$(LDSCRIPT_OTA1)
|
|
endif
|
|
|
|
endif
|
|
|
|
CC = $(CROSSDEV)gcc
|
|
CXX = $(CROSSDEV)g++
|
|
CPP = $(CROSSDEV)gcc -E
|
|
LD = $(CROSSDEV)ld
|
|
AR = $(CROSSDEV)ar rcs
|
|
NM = $(CROSSDEV)nm
|
|
OBJCOPY = $(CROSSDEV)objcopy
|
|
OBJDUMP = $(CROSSDEV)objdump
|
|
|
|
ARCHCCVERSION = ${shell $(CC) -v 2>&1 | sed -n '/^gcc version/p' | sed -e 's/^gcc version \([0-9\.]\)/\1/g' -e 's/[-\ ].*//g' -e '1q'}
|
|
ARCHCCMAJOR = ${shell echo $(ARCHCCVERSION) | cut -d'.' -f1}
|
|
ARCHCCMINOR = ${shell echo $(ARCHCCVERSION) | cut -d'.' -f2}
|
|
|
|
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
|
|
ARCHOPTIMIZATION = -g
|
|
endif
|
|
|
|
ifneq ($(CONFIG_DEBUG_NOOPT),y)
|
|
ARCHOPTIMIZATION += $(MAXOPTIMIZATION) -fno-strict-aliasing -fno-strength-reduce -fomit-frame-pointer
|
|
endif
|
|
|
|
ifeq ($(CONFIG_FRAME_POINTER),y)
|
|
ARCHOPTIMIZATION += -fno-omit-frame-pointer -mapcs -mno-sched-prolog
|
|
endif
|
|
|
|
ifeq ($(CONFIG_ARM_UNWIND),y)
|
|
ARCHOPTIMIZATION += -fasynchronous-unwind-tables
|
|
endif
|
|
|
|
|
|
ARCHCFLAGS = -fno-builtin -mcpu=cortex-r4 -mfpu=vfpv3
|
|
ARCHCXXFLAGS = -fno-builtin -fexceptions -mcpu=cortex-r4 -mfpu=vfpv3
|
|
ifeq ($(QUICKBUILD),y)
|
|
ARCHWARNINGS = -Wall -Werror -Wstrict-prototypes -Wshadow -Wundef -Wno-implicit-function-declaration -Wno-unused-function -Wno-unused-but-set-variable
|
|
ARCHWARNINGSXX = -Wall -Werror -Wshadow -Wundef
|
|
else
|
|
#ARCHWARNINGS = -Wall -Werror -Wstrict-prototypes -Wshadow -Wundef -Wno-implicit-function-declaration -Wno-unused-function -Wno-unused-but-set-variable
|
|
#ARCHWARNINGSXX = -Wall -Werror -Wshadow -Wundef
|
|
ARCHWARNINGS = -Wall -Wstrict-prototypes -Wshadow -Wundef -Wno-implicit-function-declaration -Wno-unused-function -Wno-unused-but-set-variable
|
|
ARCHWARNINGSXX = -Wall -Wshadow -Wundef
|
|
# only version 4.9 supports color diagnostics
|
|
ifeq "$(ARCHMAJOR)" "4"
|
|
ifeq "$(ARCHMINOR)" "9"
|
|
ARCHWARNINGS += -fdiagnostics-color=auto
|
|
ARCHWARNINGSCC += -fdiagnostics-color=auto
|
|
endif
|
|
endif
|
|
|
|
endif
|
|
ARCHDEFINES =
|
|
ARCHPICFLAGS = -fpic -msingle-pic-base -mpic-register=r10
|
|
|
|
CFLAGS = $(ARCHCFLAGS) $(ARCHWARNINGS) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES) -pipe
|
|
CPICFLAGS = $(ARCHPICFLAGS) $(CFLAGS)
|
|
CXXFLAGS = $(ARCHCXXFLAGS) $(ARCHWARNINGSXX) $(ARCHOPTIMIZATION) $(ARCHCPUFLAGS) $(ARCHXXINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES) -pipe
|
|
CXXPICFLAGS = $(ARCHPICFLAGS) $(CXXFLAGS)
|
|
CPPFLAGS = $(ARCHINCLUDES) $(ARCHDEFINES) $(EXTRADEFINES)
|
|
AFLAGS = $(CFLAGS) -D__ASSEMBLY__
|
|
MAXOPTIMIZATION = -O2
|
|
|
|
|
|
NXFLATLDFLAGS1 = -r -d -warn-common
|
|
NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T$(TOPDIR)/binfmt/libnxflat/gnu-nxflat-pcrel.ld -no-check-sections
|
|
LDNXFLATFLAGS = -e main -s 2048
|
|
|
|
ASMEXT = .S
|
|
OBJEXT = .o
|
|
LIBEXT = .a
|
|
EXEEXT =
|
|
|
|
ifneq ($(CROSSDEV),arm-nuttx-elf-)
|
|
LDFLAGS += -nostartfiles -nodefaultlibs
|
|
endif
|
|
ifeq ($(CONFIG_DEBUG_SYMBOLS),y)
|
|
LDFLAGS += -g
|
|
endif
|
|
|
|
|
|
HOSTCC = gcc
|
|
HOSTINCLUDES = -I.
|
|
HOSTCFLAGS = -Wall -Wstrict-prototypes -Wshadow -Wundef -g -pipe
|
|
HOSTLDFLAGS =
|
|
|
|
#################### SIDK_S5JT200 DOWNLOAD LOGIC ###################################
|
|
# function : DOWNLOAD
|
|
# prototype : DOWNLOAD <arguments>
|
|
# arguments : [ALL | RESOURCE ]
|
|
# example : DOWNLOAD ALL; DOWNLOAD RESOURCE;
|
|
define DOWNLOAD
|
|
@$(TOPDIR)/../build/configs/$(CONFIG_ARCH_BOARD)/$(CONFIG_ARCH_BOARD)_download.sh $(1)
|
|
endef
|
|
#################### END #######################################################
|