From b5d54913196b42c858d54a11960ceff25729f072 Mon Sep 17 00:00:00 2001 From: Alex Hedges Date: Tue, 9 Aug 2022 16:53:28 -0400 Subject: [PATCH] Add instructions for compiling with OpenSSL 1.1.1 on CentOS 7 --- Common-build-problems.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Common-build-problems.md b/Common-build-problems.md index 6b926bf..6bb26ae 100644 --- a/Common-build-problems.md +++ b/Common-build-problems.md @@ -180,6 +180,14 @@ E.g. (invocations that worked for various people): pyenv install -v 3.4.3 ``` +* CentOS 7 with OpenSSL 1.1.1: + + ```sh + CPPFLAGS=-I/usr/include/openssl11 \ + LDFLAGS=-L/usr/lib64/openssl11 \ + pyenv install -v 3.10.6 + ``` + * Arch Linux: ```sh