Skip to content
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

Xcode 13 : Instance method requires that 'DispatchQueue' conform to 'Scheduler' #1059

Closed
xNarCiik opened this issue Sep 16, 2021 · 18 comments
Closed
Labels

Comments

@xNarCiik
Copy link

Hello there,

I have a problem for compile in release mode with the latest Xcode 13 version.

Here a screen of the build errors
Capture d’écran 2021-09-16 à 12 40 43

My current IOS min version is 10.0 & swift version 5.0. I use the latest commit of the master.

I can build correctly if I change the min version to 11.0 in the project and pod file. Anybody have an idea of why I have this errors ?

Thanks in advance

@Anthony-Todd-CGI
Copy link

Anthony-Todd-CGI commented Sep 16, 2021

Hi,

I've had the same issue compiling for ios 15 using the gold master version of Xcode.
I have fixed it in one project that used GRDB cocoa pod by updating the project min iOS version to 12. this bypassed the need to compile for armv7.
I still have this issue for a project that uses SPM because the package builds for iOS 10 which requires armv7 even though the project is for ios13+.

I suspect this may have something to do with the new Swift Document feature.

I hope this is of some help.

@jtouzy
Copy link

jtouzy commented Sep 16, 2021

Same here, can't build in Release mode (ok in Debug mode), using GRDB as SPM dependency.
Project with min version iOS 14.

It looks like combine-schedulers library had the same problem, they fixed it in 0.5.2, just by changing their min version to 13.0...
https://github.com/pointfreeco/combine-schedulers/releases/tag/0.5.2

@foxware00
Copy link

foxware00 commented Sep 20, 2021

@xNarCiik this is actually a known issue in XCode 13, they've not fixed it in the release notes

Swift libraries depending on Combine may fail to build for targets including armv7 and i386 architectures. (82183186, 82189214)

Workaround: Use an updated version of the library that isn’t impacted (if available) or remove armv7 and i386 support (for example, increase the deployment target of the library to iOS 11 or higher).

Given GRDB targets iOS 10, it's not on GRDB to bump the deployment target. There are a few workarounds on this bug here which was facing similar issues in earlier betas. #1033

@conmulligan
Copy link

I was able to work around this by forking the repo and bumping the iOS deployment target to iOS 11:

conmulligan@293188a

@brunomunizaf
Copy link

@conmulligan i'm using your fork and I still have the same issue, my project is >13

@jtouzy
Copy link

jtouzy commented Sep 22, 2021

@brunomunizaf I've forked it here, tagged 5.11.1 and works fine for me, for a temporary fix
(min target iOS 13.0 - Combine release). My projet is >14

@groue groue added the support label Sep 22, 2021
@brunomunizaf
Copy link

@jtouzy my bad it was actually combine-schedulers from point-free that was failing, this workaround does fix for GRDB. thanks

@gabors
Copy link

gabors commented Sep 23, 2021

@groue Thanks for the great framework.
Was curious if there will be a workaround for Xcode 13 that doesn't involve upping the min OS version to 13?
Our suite of apps currently support 11+ and we would prefer to not require newer OS at this time.
We don't use Combine.
Thanks!

@groue
Copy link
Owner

groue commented Sep 23, 2021

Hello @gabors, I'm quite annoyed by this behavior of Xcode 13. I will act shortly but meanwhile I'm still looking for the best option. I'm quite sorry about the inconvenience, believe me.

@gabors
Copy link

gabors commented Sep 23, 2021

Hello @gabors, I'm quite annoyed by this behavior of Xcode 13. I will act shortly but meanwhile I'm still looking for the best option. I'm quite sorry about the inconvenience, believe me.

Hi @groue Really appreciate all your hard work!

groue added a commit that referenced this issue Sep 25, 2021
Xcode 13, make test_install_SPM_ios_release
groue added a commit that referenced this issue Sep 25, 2021
This drops support for 32 bit devices
Fix #1059
Fix #1033
groue added a commit that referenced this issue Sep 25, 2021
Xcode 13, make test_install_SPM_ios_release
@groue groue closed this as completed in 6724862 Sep 25, 2021
@groue
Copy link
Owner

groue commented Sep 25, 2021

The issue should be fixed in GRDB v5.12.0, which has dropped support for 32-bits devices by bumping the minimum iOS version to 11.0.

@gabors
Copy link

gabors commented Sep 25, 2021

The issue should be fixed in GRDB v5.12.0, which has dropped support for 32-bits devices by bumping the minimum iOS version to 11.0.

Thanks so much.

@ksemianov
Copy link

@groue do you plan to bump iOS version for RxGRDB as well?

@groue
Copy link
Owner

groue commented Sep 25, 2021

Thanks for reminding me of it 👍

@groue
Copy link
Owner

groue commented Sep 26, 2021

@ksemianov, I'm not sure an RxGRDB update is necessary. Please open an issue if it is.

@ksemianov
Copy link

@groue I've opened an issue RxSwiftCommunity/RxGRDB#68

@ksemianov
Copy link

Looks like Xcode 13.2 is going to contain a fix allowing build on iOS 10.0

Fixed an issue that prevented Swift libraries depending on Combine from building for targets including armv7 and i386 architectures. (82183186, 82189214)

@groue
Copy link
Owner

groue commented Oct 28, 2021

Thanks Apple, but it's too late ;-) Support for iOS 10 and 32-bits devices was dropped in GRDB 5.12.0 because of this. Users who want it back in Xcode 13.2 can revert 6724862 in their fork (and deal with the consequence).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

9 participants