Staging
v0.5.1
https://github.com/python/cpython
Revision 30096c9365fcb7cc3c38c4d161eaf8f61ae5cfea authored by Miss Islington (bot) on 06 February 2020, 21:54:54 UTC, committed by GitHub on 06 February 2020, 21:54:54 UTC
To print the exports to stdout, the gendef command requires the option "-". Without this option, no output is generated.
(cherry picked from commit 2545fa87628b4caca519da8aeb0eeef368b9dc0d)

Co-authored-by: Baljak <baljci@hotmail.com>

1 parent 0d03a10
Raw File
Tip revision: 30096c9365fcb7cc3c38c4d161eaf8f61ae5cfea authored by Miss Islington (bot) on 06 February 2020, 21:54:54 UTC
Fix MinGW library generation command (GH-17917)
Tip revision: 30096c9
posix-deps-apt.sh
apt-get update

apt-get -yq install \
    build-essential \
    zlib1g-dev \
    libbz2-dev \
    liblzma-dev \
    libncurses5-dev \
    libreadline6-dev \
    libsqlite3-dev \
    libssl-dev \
    libgdbm-dev \
    tk-dev \
    lzma \
    lzma-dev \
    liblzma-dev \
    libffi-dev \
    uuid-dev \
    xvfb

if [ ! -z "$1" ]
then
  echo ##vso[task.prependpath]$PWD/multissl/openssl/$1
  echo ##vso[task.setvariable variable=OPENSSL_DIR]$PWD/multissl/openssl/$1
  python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $1 --system Linux
fi
back to top