File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 6
6
# nonsense.)
7
7
# Usage: build-debug-python.sh <version> <install prefix> <venv location>
8
8
#
9
- # Running it locally might look something like: mkdir -p ~/src /cpython && cd ~/src /cpython && ~/src/mypyc/scripts/build-debug-python.sh 3.6.6 ~/src /cpython ~/src/mypyc/env-debug
9
+ # Running it locally might look something like: mkdir -p ~/tmp /cpython-debug && cd ~/tmp /cpython-debug && ~/src/mypyc/scripts/build-debug-python.sh 3.6.6 ~/tmp /cpython-debug ~/src/mypyc/env-debug
10
10
11
11
VERSION=$1
12
12
PREFIX=$2
@@ -29,6 +29,6 @@ cd Python-$VERSION
29
29
CPPFLAGS=" $CPPFLAGS " LDFLAGS=" $LDFLAGS " ./configure CFLAGS=" -DPy_DEBUG -DPy_TRACE_REFS -DPYMALLOC_DEBUG" --with-pydebug --prefix=$PREFIX
30
30
make -j4
31
31
make install
32
- $PREFIX /bin/pip3 install virtualenv
32
+ $PREFIX /bin/python3 -m pip install virtualenv
33
33
$PREFIX /bin/python3 -m virtualenv $VENV
34
34
ln -s python3-config $PREFIX /bin/python-config
You can’t perform that action at this time.
0 commit comments