Skip to content

Commit 543c9e2

Browse files
bootstrap: comment out the python port for now
Signed-off-by: Andy-Python-Programmer <[email protected]>
1 parent 3d3293f commit 543c9e2

File tree

2 files changed

+50
-50
lines changed

2 files changed

+50
-50
lines changed

aero.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ def run_in_emulator(args, iso_path):
396396
qemu_args = ['-cdrom', iso_path,
397397
'-cpu', 'qemu64,+la57' if args.la57 else 'qemu64',
398398
'-M', 'q35',
399-
'-m', '2G',
399+
'-m', '5G',
400400
'-smp', '1',
401401
'-serial', 'stdio']
402402

bootstrap.yml

Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -47,17 +47,17 @@ sources:
4747
patch-path-strip: 1
4848
version: '12.rolling'
4949

50-
- name: python
51-
subdir: 'bundled'
52-
patch-path-strip: 1
53-
git: 'https://github.com/python/cpython.git'
54-
tag: 'v3.8.2'
55-
version: '3.8.2'
56-
tools_required:
57-
- host-autoconf-v2.69
58-
- host-automake-v1.16
59-
regenerate:
60-
- args: ['autoreconf', '-f', '-i']
50+
# - name: python
51+
# subdir: 'bundled'
52+
# patch-path-strip: 1
53+
# git: 'https://github.com/python/cpython.git'
54+
# tag: 'v3.8.2'
55+
# version: '3.8.2'
56+
# tools_required:
57+
# - host-autoconf-v2.69
58+
# - host-automake-v1.16
59+
# regenerate:
60+
# - args: ['autoreconf', '-f', '-i']
6161

6262
tools:
6363
- name: host-autoconf-v2.69
@@ -103,16 +103,16 @@ tools:
103103
- args: ['make', 'install-strip']
104104
- args: ['ln', '-sf', '@PREFIX@/share/aclocal-1.16', '@PREFIX@/share/aclocal']
105105

106-
- name: host-python
107-
from_source: python
108-
configure:
109-
- args:
110-
- '@THIS_SOURCE_DIR@/configure'
111-
- '--prefix=@PREFIX@'
112-
compile:
113-
- args: ['make', '-j@PARALLELISM@']
114-
install:
115-
- args: ['make', 'install']
106+
# - name: host-python
107+
# from_source: python
108+
# configure:
109+
# - args:
110+
# - '@THIS_SOURCE_DIR@/configure'
111+
# - '--prefix=@PREFIX@'
112+
# compile:
113+
# - args: ['make', '-j@PARALLELISM@']
114+
# install:
115+
# - args: ['make', 'install']
116116

117117
- name: host-binutils
118118
from_source: binutils
@@ -360,34 +360,34 @@ packages:
360360
- args: ['make']
361361
- args: ['make', 'DESTDIR=@THIS_COLLECT_DIR@', 'install-strip']
362362

363-
- name: python
364-
from_source: python
365-
tools_required:
366-
- host-gcc
367-
- host-python
368-
pkgs_required:
369-
- mlibc
370-
configure:
371-
- args:
372-
- '@THIS_SOURCE_DIR@/configure'
373-
- '--host=x86_64-aero'
374-
- '--build=x86_64-linux-gnu'
375-
- '--prefix=/usr'
376-
- '--enable-shared'
377-
- '--with-sysroot=@SYSROOT_DIR@' # Set libtool's lt_sysroot.
378-
- '--with-system-ffi'
379-
- '--with-system-expat'
380-
- '--disable-ipv6'
381-
- '--without-ensurepip'
382-
environ:
383-
CONFIG_SITE: '@SOURCE_ROOT@/extra-files/python/python-config-site'
384-
PKG_CONFIG_SYSROOT_DIR: '@BUILD_ROOT@/system-root'
385-
PKG_CONFIG_LIBDIR: '@BUILD_ROOT@/system-root/usr/lib/pkgconfig:@BUILD_ROOT@/system-root/usr/share/pkgconfig'
386-
build:
387-
- args: ['make', '-j@PARALLELISM@']
388-
- args: ['make', 'install']
389-
environ:
390-
DESTDIR: '@THIS_COLLECT_DIR@'
363+
# - name: python
364+
# from_source: python
365+
# tools_required:
366+
# - host-gcc
367+
# - host-python
368+
# pkgs_required:
369+
# - mlibc
370+
# configure:
371+
# - args:
372+
# - '@THIS_SOURCE_DIR@/configure'
373+
# - '--host=x86_64-aero'
374+
# - '--build=x86_64-linux-gnu'
375+
# - '--prefix=/usr'
376+
# - '--enable-shared'
377+
# - '--with-sysroot=@SYSROOT_DIR@' # Set libtool's lt_sysroot.
378+
# - '--with-system-ffi'
379+
# - '--with-system-expat'
380+
# - '--disable-ipv6'
381+
# - '--without-ensurepip'
382+
# environ:
383+
# CONFIG_SITE: '@SOURCE_ROOT@/extra-files/python/python-config-site'
384+
# PKG_CONFIG_SYSROOT_DIR: '@BUILD_ROOT@/system-root'
385+
# PKG_CONFIG_LIBDIR: '@BUILD_ROOT@/system-root/usr/lib/pkgconfig:@BUILD_ROOT@/system-root/usr/share/pkgconfig'
386+
# build:
387+
# - args: ['make', '-j@PARALLELISM@']
388+
# - args: ['make', 'install']
389+
# environ:
390+
# DESTDIR: '@THIS_COLLECT_DIR@'
391391

392392
tasks:
393393
- name: sysroot

0 commit comments

Comments
 (0)