skip to Main Content

Xcode build failure due to Undefined symbol: __swift_FORCE_LOAD_$_swiftFileProvider

Building failed with Xcode 13beta for React Native 0.64.2 project. It is on macOS Big Sur. The detail of error is: Undefined symbols for architecture x86_64: "__swift_FORCE_LOAD_$_swiftFileProvider", referenced from: __swift_FORCE_LOAD_$_swiftFileProvider_$_YogaKit in libYogaKit.a(YGLayoutExtensions.o) (maybe you meant: __swift_FORCE_LOAD_$_swiftFileProvider_$_YogaKit) ld: symbol(s) not found…

VIEW QUESTION

grep in Debian and OSX different results

I have a Dockerfile and would like to grep AIRFLOW_VERSION from it: Dockerfile ARG AIRFLOW_VERSION="2.1.0" <---- This one This command works fine on my local machine (OSX): export AIRFLOW_VERSION=$(grep "ARG AIRFLOW_VERSION=" /Dockerfile | grep -Eo "d.d.d") echo $AIRFLOW_VERSION 2.1.0 But…

VIEW QUESTION
Back To Top
Search