'"Undefined symbol: protocol descriptor for Swift.ExpressibleByFloatLiteral" issue while installing react native on macOS Big Sur

I was trying to install React Native on my system, and found that it failed to install CocoaPods dependencies which is required by that template error.

sudo arch -x86_64 gem install ffi fixed this issue but ended up with event-config.h" file not found error.

I changed the changed the flipper version in pod file to use_flipper!({'Flipper'=>'0.76.0'}) and then I reached to the error mentioned above. Any help on this issue would be appreciated.

node version : 15.10.0
react-native version: 0.63.4
Xcode version: 12.4

Error description below:

Showing Recent Messages

Could not find or use auto-linked library 'swiftCoreGraphics'
Could not find or use auto-linked library 'swiftUIKit'
Could not find or use auto-linked library 'swiftDarwin'
Could not find or use auto-linked library 'swiftFoundation'
Could not find or use auto-linked library 'swiftMetal'
Could not find or use auto-linked library 'swiftObjectiveC'
Could not find or use auto-linked library 'swiftCoreFoundation'
Could not find or use auto-linked library 'swiftDispatch'
Could not find or use auto-linked library 'swiftCoreImage'
Could not find or use auto-linked library 'swiftQuartzCore'
Could not find or use auto-linked library 'swiftCore'
Could not find or use auto-linked library 'swiftSwiftOnoneSupport'
Undefined symbol: protocol descriptor for Swift.ExpressibleByFloatLiteral
Undefined symbol: associated type descriptor for Swift.ExpressibleByIntegerLiteral.IntegerLiteralType

Undefined symbol: associated conformance descriptor for Swift.ExpressibleByIntegerLiteral.Swift.ExpressibleByIntegerLiteral.IntegerLiteralType: Swift._ExpressibleByBuiltinIntegerLiteral

Undefined symbol: method descriptor for Swift.ExpressibleByFloatLiteral.init(floatLiteral: A.FloatLiteralType) -> A

Undefined symbol: protocol descriptor for Swift.ExpressibleByIntegerLiteral
Undefined symbol: value witness table for Builtin.Int32
Undefined symbol: __swift_FORCE_LOAD_$_swiftCoreImage
Undefined symbol: associated type descriptor for Swift.ExpressibleByFloatLiteral.FloatLiteralType
Undefined symbol: __swift_FORCE_LOAD_$_swiftQuartzCore
Undefined symbol: __swift_FORCE_LOAD_$_swiftDispatch
Undefined symbol: method descriptor for Swift.ExpressibleByIntegerLiteral.init(integerLiteral: A.IntegerLiteralType) -> A
Undefined symbol: __swift_FORCE_LOAD_$_swiftCoreFoundation
Undefined symbol: protocol witness table for Swift.Int : Swift._ExpressibleByBuiltinIntegerLiteral in Swift
Undefined symbol: __swift_FORCE_LOAD_$_swiftObjectiveC
Undefined symbol: __swift_FORCE_LOAD_$_swiftCoreGraphics
Undefined symbol: _swift_getForeignTypeMetadata
Undefined symbol: __swift_FORCE_LOAD_$_swiftFoundation
Undefined symbol: associated conformance descriptor for Swift.ExpressibleByFloatLiteral.Swift.ExpressibleByFloatLiteral.FloatLiteralType: Swift._ExpressibleByBuiltinFloatLiteral
Undefined symbol: __swift_FORCE_LOAD_$_swiftUIKit
Undefined symbol: __swift_FORCE_LOAD_$_swiftMetal
Undefined symbol: Swift.Float.init(Swift.Double) -> Swift.Float
Undefined symbol: __swift_FORCE_LOAD_$_swiftDarwin
Undefined symbol: protocol witness table for Swift.Float : Swift._ExpressibleByBuiltinFloatLiteral in Swift


Solution 1:[1]

You need to exclude architecture arm64 if you are using M1 mac. Please check this image

Also add this code at the end of the pod file

post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"
      end
    end
  end

Do pod install, Clean the build folder and restart the build it will resolve the issue.

Update: for xCode 13 use the following configurations: if you are facing Command PhaseScriptExecution failed with a nonzero exit code in react native xcode 13

Command PhaseScriptExecution failed with a nonzero exit code in react native xcode 13

Solution 2:[2]

What really worked for me, only add this Excluded Architectures and you will be fine, if you are using a Mac with M1 of course

enter image description here

Solution 3:[3]

If you are on m1 Mac

  • run arch -x86_64 pod install in iOS folder
  • run Xcode with Rosetta
  • clean build
  • run again

Solution 4:[4]

I managed to resolve this issue by adding an empty swift file to the project in Xcode. This had the side effect of creating a bridging header file which (for me at least) got my project to compile.

Solution 5:[5]

What ended up working for me is removing the LIBRARY_SEARCH_PATHS from Xcode...

https://github.com/facebook/react-native/issues/31438#issuecomment-865180401

Solution 6:[6]

When using Dipan Sharmas solution I couldn't build for devices or "Any iOS Device" anymore. What resolved this issue for me was just excluding arm64 for the "Any iOS Simulator SDK" instead of excluding it in the upper level. Even removing arm64 from the upper level of excluded architectures, did not get the project building again for Devices and "Any iOS Device". Had to pull an older project file from my git. Working "Excluded Architectures" settings on Apple Silicon M1

Solution 7:[7]

This is caused because your project contains frameworks/libraries of both Swift and Objective c.

Add a swift file(If you see Objective C files already in your project) or Objective C file(If you see Objective C files already in your project). Select the targets those give above error.

This step will ask to create a bridging header. Create bridging header Say yes and compile and run.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Ben Hur Martins
Solution 3 Mikias
Solution 4 rickerbh
Solution 5 Nicolas Braun
Solution 6 Chr. Kuhn
Solution 7 Vin