Home
last modified time | relevance | path

Searched +full:cpython +full:- +full:bin +full:- +full:deps (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/PCbuild/
Dreadme.txt2 -----------------
9 2. Run "build.bat" to build Python in 32-bit Release configuration.
10 3. (Optional, but recommended) Run the test suite with "rt.bat -q".
14 ------------------------------------------
16 This directory is used to build CPython for Microsoft Windows NT version
21 command-line builds, Visual Studio 2015 may also be used.)
31 used to build standard x86-compatible 32-bit binaries, output into the
32 win32 sub-directory. The x64 platform is used for building 64-bit AMD64
33 (aka x86_64 or EM64T) binaries, output into the amd64 sub-directory.
34 The Itanium (IA-64) platform is no longer supported.
[all …]
Dget_externals.bat15 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
16 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts
17 if "%~1"=="--no-libffi" (set IncludeLibffi=false) & shift & goto CheckOpts
18 if "%~1"=="--tkinter-src" (set IncludeTkinterSrc=true) & shift & goto CheckOpts
19 if "%~1"=="--openssl-src" (set IncludeSSLSrc=true) & shift & goto CheckOpts
20 if "%~1"=="--libffi-src" (set IncludeLibffiSrc=true) & shift & goto CheckOpts
21 if "%~1"=="--python" (set PYTHON=%2) & shift & shift & goto CheckOpts
22 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts
23 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts
24 if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts
[all …]
Dget_external.py1 #!/usr/bin/env python3
13 repo = f'cpython-{"bin" if binary else "source"}-deps'
35 p.add_argument('-v', '--verbose', action='store_true')
36 p.add_argument('-b', '--binary', action='store_true',
38 p.add_argument('-O', '--organization',
39 help='Organization owning the deps repos', default='python')
40 p.add_argument('-e', '--externals-dir', type=pathlib.Path,
/external/python/cffi/c/libffi_arm64/
DREADME1 Libffi package for ARM64 is copied from cpython binary dependencies
3 https://github.com/python/cpython-bin-deps/archive/libffi.zip
5 The library file has been renamed from libffi-7.lib to ffi.lib to avoid special casing
/external/python/cpython3/.azure-pipelines/
Dposix-steps.yml9 - checkout: self
14 - script: sudo setfacl -Rb /home/vsts
17 - script: ${{ parameters.sudo_dependencies }} ./.azure-pipelines/posix-deps-${{ parameters.dependen…
20 - script: ./configure --with-pydebug
21 displayName: 'Configure CPython (debug)'
23 - script: make -j4
24 displayName: 'Build CPython'
26 - ${{ if eq(parameters.coverage, 'true') }}:
27 - script: ./python -m venv venv && ./venv/bin/python -m pip install -U coverage
30 - script: ./venv/bin/python -m test.pythoninfo
[all …]
/external/python/cpython2/PCbuild/
Dget_external.py1 #!/usr/bin/env python3
11 repo = f'cpython-{"bin" if binary else "source"}-deps'
33 p.add_argument('-v', '--verbose', action='store_true')
34 p.add_argument('-b', '--binary', action='store_true',
36 p.add_argument('-O', '--organization',
37 help='Organization owning the deps repos', default='python')
38 p.add_argument('-e', '--externals-dir', type=pathlib.Path,
Dget_externals.bat12 if "%~1"=="--no-tkinter" (set IncludeTkinter=false) & shift & goto CheckOpts
13 if "%~1"=="--no-openssl" (set IncludeSSL=false) & shift & goto CheckOpts
14 if "%~1"=="--python" (set PYTHON_FOR_BUILD=%2) & shift & shift & goto CheckOpts
15 if "%~1"=="--organization" (set ORG=%2) & shift & shift & goto CheckOpts
16 if "%~1"=="-c" (set DO_CLEAN=true) & shift & goto CheckOpts
17 if "%~1"=="--clean" (set DO_CLEAN=true) & shift & goto CheckOpts
18 if "%~1"=="--clean-only" (set DO_FETCH=false) & goto clean
48 set libraries=%libraries% bzip2-1.0.6
49 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% bsddb-4.7.25.0
50 if NOT "%IncludeSSL%"=="false" set libraries=%libraries% openssl-1.0.2p
[all …]
Dreadme.txt2 -----------------
8 get_externals.bat (build.bat -e) will download and use Python via
10 3. Run "build.bat -e" to build Python in 32-bit Release configuration.
11 4. (Optional, but recommended) Run the test suite with "rt.bat -q".
15 ------------------------------------------
58 used to build standard x86-compatible 32-bit binaries, output into this
59 directory. The x64 platform is used for building 64-bit AMD64 (aka
60 x86_64 or EM64T) binaries, output into the amd64 sub-directory. The
61 Itanium (IA-64) platform is no longer supported.
66 to using ./configure --with-pydebug on UNIX. All binaries built
[all …]
/external/python/cpython3/.azure-pipelines/windows-release/
Dmingw-lib.yml2 DllToolOpt: -m i386:x86-64
3 #DllToolOpt: -m i386 --as-flags=--32
6 - powershell: |
7 …git clone https://github.com/python/cpython-bin-deps --branch binutils --single-branch --depth 1 -…
8 gci "bin\$(Arch)\python*.dll" | %{
9 & "binutils\gendef.exe" $_ | Out-File -Encoding ascii tmp.def
10 …& "binutils\dlltool.exe" --dllname $($_.BaseName).dll --def tmp.def --output-lib "$($_.Directory)\…
Dgpg-sign.yml8 - task: DownloadSecureFile@1
14 - powershell: |
15 …git clone https://github.com/python/cpython-bin-deps --branch gpg --single-branch --depth 1 --prog…
16 gpg/gpg2.exe --import "$(gpgkey.secureFilePath)"
17 (gci -File ${{ parameters.Files }}).FullName | %{
18 gpg/gpg2.exe -ba --batch --passphrase ${{ parameters.GPGPassphrase }} $_
24 - powershell: |
25 $p = gps "gpg-agent" -EA 0
/external/skia/infra/bots/
Dtasks.json3 "Build-Debian10-Clang-arm-Debug-Android": {
5 "Build-Debian10-Clang-arm-Debug-Android"
8 "Build-Debian10-Clang-arm-Debug-Android_Vulkan": {
10 "Build-Debian10-Clang-arm-Debug-Android_Vulkan"
13 "Build-Debian10-Clang-arm-Debug-Chromebook_GLES": {
15 "Build-Debian10-Clang-arm-Debug-Chromebook_GLES"
18 "Build-Debian10-Clang-arm-Release-Android": {
20 "Build-Debian10-Clang-arm-Release-Android"
23 "Build-Debian10-Clang-arm-Release-Android_API26": {
25 "Build-Debian10-Clang-arm-Release-Android_API26"
[all …]
/external/python/setuptools/
DCHANGES.rst2 -------
13 * #3202: Changed behaviour of auto-discovery to not explicitly expand ``package_dir``
14 for flat-layouts and to not use relative paths starting with ``./``.
22 * #3211: Disabled auto-discovery when distribution class has a ``configuration``
24 configuration=...)``). This is done to ensure extension-only packages created
27 behaviour to avoid accidental multiple top-level packages in a flat-layout.
31 still likely to observe the auto-discovery behavior, which may halt the
35 To disable auto-discovery please explicitly set either ``packages`` or
36 ``py_modules``. Alternatively you can also configure :ref:`custom-discovery`.
40 -------
[all …]
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst2 .. date: 2019-11-18-16-17-56
4 .. release date: 2019-11-19
13 .. date: 2019-11-14-16-13-23
22 .. date: 2019-10-08-19-29-55
23 .. nonce: QL7s0-
31 .. date: 2019-09-25-13-21-09
36 rendering the document page as HTML. (Contributed by Dong-hee Na in
42 .. date: 2019-09-23-21-02-46
47 CVE-2019-15903.
52 .. date: 2019-08-27-01-13-05
[all …]