-
Notifications
You must be signed in to change notification settings - Fork 23
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
Tag v1.3.0 doesn't compile on macOS #94
Comments
@cvanaret I found how to fix it by installing a SDK of macOS 10.15 but I have this new error now:
|
Missing include fixed in #98. |
@cvanaret It will put less presure on the hard drive and you can just rename If it works, we can things like this and I don't to have a look next week 🤞 |
Same deal, unfortunately... 2024-11-16T23:44:24.2102182Z [23:44:24] ---> mv /opt/${target}/${target}/sys-root/System /opt/${target}/${target}/sys-root/System_old
2024-11-16T23:44:24.9305679Z [23:44:24] mv: can't remove '/opt/x86_64-apple-darwin14/x86_64-apple-darwin14/sys-root/System/Library/Printers/Libraries': I/O error
2024-11-16T23:44:24.9312185Z [23:44:24] mv: can't remove '/opt/x86_64-apple-darwin14/x86_64-apple-darwin14/sys-root/System/Library/Frameworks/Tcl.framework/Versions/8.4/Headers/tcl-private': I/O error
2024-11-16T23:44:24.9317349Z [23:44:24] mv: can't remove '/opt/x86_64-apple-darwin14/x86_64-apple-darwin14/sys-root/System/Library/Frameworks/Tcl.framework/Versions/8.5/Headers/tcl-private': I/O error
... Not urgent though! We'll sort this out next week 👍 |
@amontoison Good news: I managed to create the release (but I cheated a bit)! if (x.has_value()) {
// use x.value()
} which is not compatible with macOS < 10.14, you can write: if (x.has_value()) {
// use *x
} So I made these changes (#101) and reverted your changes in |
Reason: std::optional::value() is not available on macOS < 10.14
The text was updated successfully, but these errors were encountered: