Skip to content

Commit

Permalink
cmake: Allow to select python3 from env
Browse files Browse the repository at this point in the history
This will be useful for next debian release shipping python3

Change-Id: Ie3a9e8ea9152247efa85a4e87bd121016a466795
Bug: jerryscript-project#1945
Bug-Debian: https://bugs.debian.org/936738
IoT.js-DCO-1.0-Signed-off-by: Philippe Coval rzr@users.sf.net
  • Loading branch information
rzr committed Jul 24, 2020
1 parent 4ec6746 commit 096f414
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion cmake/iotjs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -372,13 +372,17 @@ else()
set(JS2C_PREPROCESS_ARGS -E -dD)
endif()

if(NOT DEFINED PYTHON)
set(PYTHON "python")
endif()

string (REPLACE ";" "," IOTJS_JS_MODULES_STR "${IOTJS_JS_MODULES}")
add_custom_command(
OUTPUT ${IOTJS_SOURCE_DIR}/iotjs_js.c ${IOTJS_SOURCE_DIR}/iotjs_js.h
COMMAND ${CMAKE_C_COMPILER} ${JS2C_PREPROCESS_ARGS} ${IOTJS_MODULE_DEFINES}
${IOTJS_SOURCE_DIR}/iotjs_magic_strings.h
> ${IOTJS_SOURCE_DIR}/iotjs_magic_strings.in
COMMAND python ${ROOT_DIR}/tools/js2c.py
COMMAND ${PYTHON} ${ROOT_DIR}/tools/js2c.py
ARGS --buildtype=${JS2C_RUN_MODE}
--modules "${IOTJS_JS_MODULES_STR}"
${JS2C_SNAPSHOT_ARG}
Expand Down
2 changes: 1 addition & 1 deletion deps/jerry
Submodule jerry updated 805 files

0 comments on commit 096f414

Please sign in to comment.