Commit c77a4c25 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Updated Python to 3.12.4

parent d46a92ac
...@@ -2,6 +2,24 @@ all: ...@@ -2,6 +2,24 @@ all:
mkdir tmp mkdir tmp
mount --bind tmp /tmp mount --bind tmp /tmp
tar xf Python-3.12.4.tar.xz
cd Python-3.12.4 && ./configure --build=$(CLFS_TARGET) --prefix=/usr --enable-shared --with-system-expat --with-system-ffi --with-ensurepip=yes --enable-optimizations
$(MAKE) -C Python-3.12.4
if [[ ! "$(BUILD_OPTIONS)" =~ no-tests ]] ; then \
$(MAKE) -C Python-3.12.4 test EXTRATESTOPTS="-j 1 -u all,-urlfetch --timeout=14400" ; \
fi
$(MAKE) -C Python-3.12.4 install
ln -sfv pip3.11 /usr/bin/pip3
rm -f $(HOME)/.python_history
rm -rf Python-3.12.4
umount /tmp
rm -rf tmp
3-11:
mkdir tmp
mount --bind tmp /tmp
tar xf Python-3.11.4.tar.xz 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 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 $(MAKE) -C Python-3.11.4
......
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