Skip to content

Commit 3c094de

Browse files
committed
python version agnostic
1 parent 312a878 commit 3c094de

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

bin/ch/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
find_package (Python COMPONENTS Interpreter)
12
add_custom_target(dbg_controller_h
2-
COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/jstoc.py ${CMAKE_CURRENT_SOURCE_DIR}/DbgController.js controllerScript
3+
COMMAND ${Python_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/jstoc.py ${CMAKE_CURRENT_SOURCE_DIR}/DbgController.js controllerScript
34
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
45
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/jstoc.py ${CMAKE_CURRENT_SOURCE_DIR}/DbgController.js
56
)

build.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22
#-------------------------------------------------------------------------------------------------------
33
# Copyright (C) Microsoft. All rights reserved.
4+
# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
45
# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
56
#-------------------------------------------------------------------------------------------------------
67

@@ -127,7 +128,7 @@ CMAKE_EXPORT_COMPILE_COMMANDS="-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
127128
LIBS_ONLY_BUILD=
128129
ALWAYS_YES=
129130
CCACHE_NAME=
130-
PYTHON2_BINARY=$(which python2.7 || which python2 || which python 2> /dev/null)
131+
PYTHON_BINARY=$(which python3 || which python || which python2.7 || which python2 || which python 2> /dev/null)
131132

132133
UNAME_S=`uname -s`
133134
if [[ $UNAME_S =~ 'Linux' ]]; then
@@ -538,7 +539,7 @@ export TARGET_PATH
538539

539540
if [[ $HAS_LTTNG == 1 ]]; then
540541
CHAKRACORE_ROOT=`dirname $0`
541-
"$PYTHON2_BINARY" $CHAKRACORE_ROOT/tools/lttng.py --man $CHAKRACORE_ROOT/manifests/Microsoft-Scripting-Chakra-Instrumentation.man --intermediate $TARGET_PATH/intermediate
542+
"$PYTHON_BINARY" $CHAKRACORE_ROOT/tools/lttng.py --man $CHAKRACORE_ROOT/manifests/Microsoft-Scripting-Chakra-Instrumentation.man --intermediate $TARGET_PATH/intermediate
542543
mkdir -p $TARGET_PATH/lttng
543544
(diff -q $TARGET_PATH/intermediate/lttng/jscriptEtw.h $TARGET_PATH/lttng/jscriptEtw.h && echo "jscriptEtw.h up to date; skipping") || cp $TARGET_PATH/intermediate/lttng/* $TARGET_PATH/lttng/
544545
fi
@@ -553,8 +554,8 @@ fi
553554
BUILD_DIRECTORY="${TARGET_PATH}/${BUILD_TYPE_DIR:0}"
554555
echo "Build path: ${BUILD_DIRECTORY}"
555556

556-
BUILD_RELATIVE_DIRECTORY=$("$PYTHON2_BINARY" -c "import os.path;print \
557-
os.path.relpath('${CHAKRACORE_DIR}', '$BUILD_DIRECTORY')")
557+
BUILD_RELATIVE_DIRECTORY=$("$PYTHON_BINARY" -c "from __future__ import print_function; import os.path;\
558+
print(os.path.relpath('${CHAKRACORE_DIR}', '$BUILD_DIRECTORY'))")
558559

559560
################# Write-barrier check/analyze run #################
560561
WB_FLAG=

0 commit comments

Comments
 (0)