|
1 | 1 | #!/bin/bash
|
2 | 2 | #-------------------------------------------------------------------------------------------------------
|
3 | 3 | # Copyright (C) Microsoft. All rights reserved.
|
| 4 | +# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved. |
4 | 5 | # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
|
5 | 6 | #-------------------------------------------------------------------------------------------------------
|
6 | 7 |
|
@@ -127,7 +128,7 @@ CMAKE_EXPORT_COMPILE_COMMANDS="-DCMAKE_EXPORT_COMPILE_COMMANDS=ON"
|
127 | 128 | LIBS_ONLY_BUILD=
|
128 | 129 | ALWAYS_YES=
|
129 | 130 | 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) |
131 | 132 |
|
132 | 133 | UNAME_S=`uname -s`
|
133 | 134 | if [[ $UNAME_S =~ 'Linux' ]]; then
|
@@ -538,7 +539,7 @@ export TARGET_PATH
|
538 | 539 |
|
539 | 540 | if [[ $HAS_LTTNG == 1 ]]; then
|
540 | 541 | 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 |
542 | 543 | mkdir -p $TARGET_PATH/lttng
|
543 | 544 | (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/
|
544 | 545 | fi
|
|
553 | 554 | BUILD_DIRECTORY="${TARGET_PATH}/${BUILD_TYPE_DIR:0}"
|
554 | 555 | echo "Build path: ${BUILD_DIRECTORY}"
|
555 | 556 |
|
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'))") |
558 | 559 |
|
559 | 560 | ################# Write-barrier check/analyze run #################
|
560 | 561 | WB_FLAG=
|
|
0 commit comments