Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-40280: Add --enable-wasm-dynamic-linking (GH-32253) | Christian Heimes | 2022-04-04 | 1 | -15/+66 |
| | |||||
* | bpo-47152: Move sources of the _sre module into a subdirectory (GH-32290) | Serhiy Storchaka | 2022-04-04 | 1 | -0/+1 |
| | |||||
* | bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads ↵ | Hood Chatham | 2022-04-03 | 1 | -0/+13 |
| | | | | | | (GH-32209) Co-authored-by: Christian Heimes <christian@python.org> Co-authored-by: Brett Cannon <brett@python.org> | ||||
* | bpo-40280: Emscripten fork_exec now fails early (GH-32224) | Christian Heimes | 2022-04-01 | 1 | -0/+3 |
| | |||||
* | bpo-40280: Add debug Emscripten flavors (GH-32233) | Christian Heimes | 2022-04-01 | 1 | -11/+17 |
| | |||||
* | bpo-45847: Port _tkinter to PY_STDLIB_MOD (GH-31698) | Erlend Egeberg Aasland | 2022-03-31 | 1 | -44/+73 |
| | | | | | - Remove ``--with-tclk-*`` options from `configure` - Use pkg-config to detect `_tkinter` dependencies (Tcl/Tk, X11) - Manual override via environment variables `TCLTK_CFLAGS` and `TCLTK_LIBS` | ||||
* | bpo-47095: Use libb2 to provide blake2 implementation (GH-32059) | Christian Heimes | 2022-03-26 | 1 | -1/+12 |
| | |||||
* | bpo-40280: Add wasm32-emscripten and wasm32-wasi SOABI (GH-32095) | Christian Heimes | 2022-03-24 | 1 | -0/+16 |
| | | | | | Shared extension on Emscripten now have suffix ``.cpython-311-wasm32-emscripten.so`` (JS loader) and ``.cpython-311-wasm32-emscripten.wasm`` (WebAssembly code). | ||||
* | bpo-32033: Finalize WASI configure options (GH-32053) | Christian Heimes | 2022-03-22 | 1 | -1/+23 |
| | |||||
* | bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986) | Christian Heimes | 2022-03-22 | 1 | -2/+40 |
| | | | | | | | | | | | - Add requires_fork and requires_subprocess to more tests - Skip extension import tests if dlopen is not available - Don't assume that _testcapi is a shared extension - Skip a lot of socket tests that don't work on Emscripten - Skip mmap tests, mmap emulation is incomplete - venv does not work yet - Cannot get libc from executable The "entire" test suite is now passing on Emscripten with EMSDK from git head (91 suites are skipped). | ||||
* | bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961) | Pablo Galindo Salgado | 2022-03-18 | 1 | -1/+1 |
| | |||||
* | bpo-46968: Fix faulthandler for Sapphire Rapids Xeon (GH-31789) | Oleksandr Pavlyk | 2022-03-11 | 1 | -1/+1 |
| | | | | | | | | | | | In Linux kernel 5.14 one can dynamically request size of altstacksize based on hardware capabilities with getauxval(AT_MINSIGSTKSZ). This changes allows for Python extension's request to Linux kernel to use AMX_TILE instruction set on Sapphire Rapids Xeon processor to succeed, unblocking use of the ISA in frameworks. Introduced HAVE_LINUX_AUXVEC_H in configure.ac and pyconfig.h.in Used cpython_autoconf:269 docker container to generate configure. | ||||
* | bpo-46933: Make pwd module optional (GH-31700) | Christian Heimes | 2022-03-07 | 1 | -60/+69 |
| | | | Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> | ||||
* | bpo-46860: Respect `--with-suffix` on case-insensitive file systems (GH-31593) | Brett Cannon | 2022-03-02 | 1 | -1/+1 |
| | | | Previously, case-insensitive file systems were forced to use `.exe` as the file suffix no matter what `--with-suffix` was set to. | ||||
* | bpo-40280: Address more test failures on Emscripten (GH-31050) | Christian Heimes | 2022-02-05 | 1 | -3/+12 |
| | | | Co-authored-by: Brett Cannon <brett@python.org> | ||||
* | bpo-46602: Do not append conftest.c (GH-31062) | adanhawth | 2022-02-02 | 1 | -2/+2 |
| | | | | | | | | The heredoc creation statements use >> to append conftest.c. This can cause tricky build issues if the file is not correctly removed prior to its name being reused (such name is reused several times for different contextual tests during the build). One such result from appending may cause #include <ac_nonexistent.h> to persist when testing to acquire PLATFORM_TRIPLET. This can then lead to downstream issues concerning SOABI. | ||||
* | bpo-46600: ./configure --with-pydebug uses -Og with clang (GH-31052) | Victor Stinner | 2022-02-01 | 1 | -7/+23 |
| | | | | Fix the test checking if the C compiler supports -Og option in the ./configure script to also use -Og on clang which supports it. | ||||
* | bpo-43112: detect musl as a separate SOABI (GH-24502) | Natanael Copa | 2022-01-28 | 1 | -0/+5 |
| | | | | | | | musl libc and gnu libc are not ABI compatible so we need set different SOABI for musl and not simply assume that all linux is linux-gnu. Replace linux-gnu with the detected os for the build from config.guess for linux-musl*. | ||||
* | bpo-46513: Remove AC_C_CHAR_UNSIGNED / __CHAR_UNSIGNED__ (GH-30851) | Christian Heimes | 2022-01-26 | 1 | -1/+0 |
| | |||||
* | bpo-40280: Get help() working and more (GH-30858) | Christian Heimes | 2022-01-24 | 1 | -5/+6 |
| | |||||
* | bpo-30512: Add CAN Socket support for NetBSD (GH-30066) | Thomas Klausner | 2022-01-21 | 1 | -1/+2 |
| | |||||
* | bpo-40280: Misc fixes for wasm32-emscripten (GH-30722) | Christian Heimes | 2022-01-20 | 1 | -0/+2 |
| | |||||
* | bpo-46045: Do not use POSIX semaphores on NetBSD (GH-30047) | Thomas Klausner | 2022-01-18 | 1 | -0/+3 |
| | | | This fixes hanging tests test_compileall,, test_multiprocessing_fork and test_concurrent_futures. | ||||
* | bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 (GH-30497) | Mark Dickinson | 2022-01-14 | 1 | -1/+1 |
| | |||||
* | bpo-40280: Build WASM stdlib bundle and more modules for node (GH-30597) | Christian Heimes | 2022-01-14 | 1 | -12/+32 |
| | |||||
* | bpo-44133: Link Python executable with object files (GH-30556) | Victor Stinner | 2022-01-13 | 1 | -33/+42 |
| | | | | | | | | | | | | | | When Python is built without --enable-shared, the "python" program is now linked to object files, rather than being linked to the Python library (libpython.a), to make sure that all symbols are exported. Previously, the linker omitted some symbols like the Py_FrozenMain() function. When Python is configured with --without-static-libpython, the Python static library (libpython.a) is no longer built. * Check --without-static-libpython earlier in configure.ac * Add LINK_PYTHON_OBJS and LINK_PYTHON_DEPS variables to Makefile. * test_capi now ensures that the "Py_FrozenMain" symbol is exported. | ||||
* | bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507) | Christian Heimes | 2022-01-13 | 1 | -4/+9 |
| | |||||
* | bpo-40280: Allow to compile _testcapi as builtin module (GH-30559) | Christian Heimes | 2022-01-12 | 1 | -2/+2 |
| | |||||
* | bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552) | Christian Heimes | 2022-01-12 | 1 | -6/+53 |
| | | | Co-authored-by: Ethan Smith <ethan@ethanhs.me> | ||||
* | bpo-46308: Fix unportable test(1) operator in configure script (GH-30490) | Thomas Klausner | 2022-01-09 | 1 | -1/+1 |
| | |||||
* | bpo-45723: Fix detection of epoll (#30449) | Christian Heimes | 2022-01-07 | 1 | -1/+1 |
| | |||||
* | bpo-46263: Don't use MULTIARCH on FreeBSD (#30410) | Christian Heimes | 2022-01-05 | 1 | -4/+9 |
| | |||||
* | bpo-40280: Add Tools/wasm with helpers for cross building (GH-29984) | Christian Heimes | 2021-12-18 | 1 | -5/+26 |
| | | | | Co-authored-by: Ethan Smith <ethan@ethanhs.me> Co-authored-by: Brett Cannon <brett@python.org> | ||||
* | bpo-46072: Add --with-pystats configure option to simplify gathering of VM ↵ | Mark Shannon | 2021-12-15 | 1 | -1/+16 |
| | | | | | | | | | stats (GH-30116) * Simplify specialization stats collection macros. * Add --enable-pystats option to configure. * Update specialization summary script to handle larger number of kinds | ||||
* | bpo-45949: Pure Python freeze module for cross builds (GH-29899) | Christian Heimes | 2021-12-13 | 1 | -26/+21 |
| | |||||
* | bpo-45723: Normalise configure user communication (GH-30024) | Erlend Egeberg Aasland | 2021-12-10 | 1 | -33/+33 |
| | |||||
* | bpo-45847: Don't override user overrides for CFLAGS/LIBS (GH-29967) | Christian Heimes | 2021-12-08 | 1 | -25/+29 |
| | |||||
* | bpo-45847: Revert Port _ctypes partly to PY_STDLIB_MOD (GH-29747) (GH-29969) | Christian Heimes | 2021-12-07 | 1 | -60/+2 |
| | |||||
* | bpo-45798: Let libmpdec decide which archs to build on macOS as done ↵ | Ned Deily | 2021-12-07 | 1 | -8/+3 |
| | | | | previously. (GH-29949) | ||||
* | bpo-45847: Fix uuid detection on macOS (GH-29946) | Christian Heimes | 2021-12-06 | 1 | -1/+13 |
| | |||||
* | bpo-45950: Fix macOS framework builds of _bootstrap_python (GH-29936) | Christian Heimes | 2021-12-06 | 1 | -3/+3 |
| | |||||
* | bpo-45847: Update whatsnew and add place holder entries for missing ↵ | Christian Heimes | 2021-12-04 | 1 | -0/+5 |
| | | | | extensions (GH-29914) | ||||
* | bpo-45847: Port _ctypes partly to PY_STDLIB_MOD (GH-29747) | Christian Heimes | 2021-12-04 | 1 | -1/+60 |
| | | | Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> | ||||
* | bpo-45950: Introduce Bootstrap Python again (#29859) | Christian Heimes | 2021-12-03 | 1 | -2/+13 |
| | | | | | | | | | The build system now uses a :program:`_bootstrap_python` interpreter for freezing and deepfreezing again. To speed up build process the build tools :program:`_bootstrap_python` and :program:`_freeze_module` are no longer build with LTO. Cross building depends on a build Python interpreter, which must have same version and bytecode as target host Python. | ||||
* | bpo-40280: Emscripten with_ensurepip=no, second attempt (GH-29884) | Christian Heimes | 2021-12-01 | 1 | -1/+1 |
| | |||||
* | bpo-40280: Emscripten defaults to --with-ensurepip=no (GH-29873) | Christian Heimes | 2021-12-01 | 1 | -1/+6 |
| | |||||
* | bpo-45881: configure --with-freeze-module --with-build-python (GH-29835) | Christian Heimes | 2021-11-29 | 1 | -23/+60 |
| | | | | Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> Co-authored-by: Ethan Smith <ethan@ethanhs.me> | ||||
* | bpo-45847: PY_STDLIB_MOD_SIMPLE now checks py_stdlib_not_available (GH-29844) | Christian Heimes | 2021-11-29 | 1 | -10/+18 |
| | |||||
* | bpo-40280: Emscripten systems use .wasm suffix by default (GH-29842) | Christian Heimes | 2021-11-29 | 1 | -9/+15 |
| | |||||
* | bpo-45723: Sort the grand AC_CHECK_HEADERS check (GH-29846) | Erlend Egeberg Aasland | 2021-11-29 | 1 | -15/+12 |
| | | | Automerge-Triggered-By: GH:tiran |