You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current Behavior
From the project root, make build-ios fails with the following message:
error: unable to attach DB: error: accessing build database "...": database is locked Possibly there are two concurrent builds running in the same filesystem location.
Expected behavior/code
The build should succeed.
Environment
OS: macOS 11.1 (Big Sur)
Architecture: arm64 (Apple silicon)
CMake version: 3.19
Possible Solution
This issue has been discussed at the cmake project repository. There is an easy fix: add the argument -T buildsystem=1 at the end of line 133 of the makefile.
The text was updated successfully, but these errors were encountered:
I installed cmake 3.19.1 and Xcode 12.4 (12D4e) on my x64 mac and was able to reproduce this issue, but I then explicitly removed the -GXcode call and it appears to be working again. I don't have an M1 mac so I'm not sure this is a good test. Can you try with the below configuration and lmk if that works?
Bug Report
Current Behavior
From the project root,
make build-ios
fails with the following message:Expected behavior/code
The build should succeed.
Environment
Possible Solution
This issue has been discussed at the cmake project repository. There is an easy fix: add the argument
-T buildsystem=1
at the end of line 133 of the makefile.The text was updated successfully, but these errors were encountered: