-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working with XCode 15.3 and Command Line Tools 15.3 (15E204a) #67
Comments
Thanks @Luckfried - we likely need to upgrade the tvOS version. Are the other targets (iOS, MacOS) building correctly? |
Update. XCode 15.2 (15C500b) works with the following library version. OPENSSL="3.0.12" # https://www.openssl.org/source/
LIBCURL="8.5.0" # https://curl.haxx.se/download.html
NGHTTP2="1.58.0" # https://nghttp2.org/ I'm upgrafing to XCode 15.3 to see what causes the break. I suspect we may need to change the min SDK versions. |
The error that is generated with XCode 15.3:
|
Fix required adding # Starting with XCode 15.3
LANG=C sed -i -- 's/static volatile intr_signal/static volatile int intr_signal;/' "./crypto/ui/ui_openssl.c" I discovered a second issue with latest cURL library (8.6.0) that now requires the libpsl library which is not available by default. We have not included this in prior version so I'm using the Now working with latest: |
The text was updated successfully, but these errors were encountered: