Commit af2fec50 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Added Python 3.10 and 3.11

parent 14862eda
all:
tar xf Python-3.11.4.tar.xz
cd Python-3.11.4 && ./configure --build=$(CLFS_TARGET) --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations
$(MAKE) -C Python-3.11.4
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C Python-3.11.4 test EXTRATESTOPTS="-j 1 -u all,-urlfetch --timeout=14400" ; \
fi
$(MAKE) -C Python-3.11.4 install
ln -sfv pip3.11 /usr/bin/pip3
rm -f $(HOME)/.python_history
rm -rf Python-3.11.4
3-10:
tar xf Python-3.10.5.tar.xz
cd Python-3.10.5 && ./configure --build=$(CLFS_TARGET) --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations
$(MAKE) -C Python-3.10.5
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C Python-3.10.5 test EXTRATESTOPTS="-j 1 -u all,-urlfetch --timeout=14400" ; \
fi
$(MAKE) -C Python-3.10.5 install
ln -sfv pip3.10 /usr/bin/pip3
rm -f $(HOME)/.python_history
rm -rf Python-3.10.5
3-9:
tar xf Python-3.9.5.tar.xz
patch -Np1 -d Python-3.9.5 < Python-3.9.5-fix_test.patch
cd Python-3.9.5 && ./configure --build=$(CLFS_TARGET) --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment