I have a React Native project. I recently updated to macOS Big Sur 11.3 and XCode Version 12.5 (12E262).
When I build the project in XCode I get the following error:
../ios/Pods/Headers/Public/Flipper-Folly/folly/functional/Invoke.h:22:10: fatal error: 'boost/preprocessor/control/expr_iif.hpp' file not found
#include <boost/preprocessor/control/expr_iif.hpp>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
When I browse to Pods folder, expr_iif.hpp
file exists.
I tried removing Pods
folder, Podfile.lock
, .xcworkspace
. Deleted npm cache
. Then ran pod install
.
But no luck.
This build-time error is thrown by Flipper-RSocket and Flipper-Folly.
I can provide further details if requested.
3
Answers
It completely removes Flipper, but here’s a workaround I used
I just had this issue and it happens when you have incompatible versions of Flipper pods.
This worked for me:
Podfile
to install Flipper like this:Podfile
andXcode
project o12.1
or newer:Podfile.lock
pod install --repo-update
You may also try fixing permissions if the above is not enough for you:
The error went away after this.
Instead of giving him the precise version I used the next line:
use_flipper!
Put it in Podfile and run: pod install –repo-update.
It worked for me!