7583b63a6e
This patch contains a project in which you can run a small js test inside the Arduino101. Follows the Nuttx implementation to replicate a command line in the Quark SE Lakemont architecture. Everything is self contained in the targets/arduino_101 folder. It has only been tested with the arduino 101 at the moment. Check the README.md for a more detailed explanation of how to compile and run it. - Command line javascript run test. Use test to get a default test. Write any valid javascript in the shell and get it resolved and executed - Support for qemu - Added extra verbose mode on the demo function - Support to build factory images that can be flashed with dfu-util - Added a few extra examples on the README about commands that work. Small fixes to readme and libc_support.c (#1) - Added a few more instructions to the README.md for arduino_101 - Added the stdint.h include in libc_support.c - Added parameter to check-vera.sh to check a specific folder - Cleared the libc function duplication JerryScript-DCO-1.0-Signed-off-by: Sergio Martinez sergio.martinez.rodriguez@intel.com
58 lines
1.3 KiB
Makefile
58 lines
1.3 KiB
Makefile
# Copyright © 2016 Intel Corporation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# use TAB-8
|
|
.DEFAULT_GOAL := all
|
|
|
|
ifndef ZEPHYR_BASE
|
|
$(error Missing zephyr base)
|
|
endif
|
|
|
|
# For testing without real hardware use qemu_x86 instead of arduino_101
|
|
BOARD ?= arduino_101
|
|
|
|
O ?= $(PROJECT_BASE)/outdir
|
|
|
|
ZEPHYR ?= $(ZEPHYR_BASE)
|
|
TYPE ?= release
|
|
JERRYHEAP ?= 16
|
|
|
|
ZEPHYRINC = $(ZEPHYR_BASE)/include
|
|
ZEPHYRLIB = $(ZEPHYR_BASE)/lib
|
|
|
|
SOURCE_DIR = ./targets/arduino_101/src
|
|
|
|
export JERRY_INCLUDE = $(CURDIR)/jerry-core/
|
|
|
|
MDEF_FILE = $(realpath $(SOURCE_DIR)/../prj.mdef)
|
|
CONF_FILE = $(realpath $(SOURCE_DIR)/../prj.conf)
|
|
|
|
ifdef V
|
|
$(info Zephyr)
|
|
$(info SOURCE_DIR=$(SOURCE_DIR))
|
|
$(info JERRY_INCLUDE=$(JERRY_INCLUDE))
|
|
$(info CONF_FILE =$(CONF_FILE))
|
|
endif
|
|
|
|
KERNEL_TYPE = micro
|
|
|
|
KBUILD_VERBOSE = $(V)
|
|
|
|
APP = main-zephyr.c
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|
|
|
|
.PHONY = showconfig
|
|
|