10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aa5c75 commit cdd1351Copy full SHA for cdd1351
builders/macos-python-builder.psm1
@@ -41,8 +41,8 @@ class macOSPythonBuilder : NixPythonBuilder {
41
### Link to documentation (https://cpython-devguide.readthedocs.io/setup/#build-dependencies)
42
Write-Host "openssl path: $(brew --prefix openssl)"
43
if ($this.Version -lt "3.7.0") {
44
- $env:LDFLAGS = "-L$(brew --prefix openssl)/lib"
45
- $env:CFLAGS = "-I$(brew --prefix openssl)/include"
+ $env:LDFLAGS = "-L/usr/local/opt/openssl@1.1/lib" #"-L$(brew --prefix openssl)/lib"
+ $env:CFLAGS = "-I/usr/local/opt/openssl@1.1/include" #"-I$(brew --prefix openssl)/include"
46
} else {
47
$configureString += " --with-openssl=/usr/local/opt/openssl@1.1"
48
}
0 commit comments