Home > OS >  RCT-FOLLY - Thread-local storage is not supported for the current target
RCT-FOLLY - Thread-local storage is not supported for the current target

Time:11-19

When I try to build my react-native project in Xcode I get this error from RCT-Folly:

{path}/App/ios/Pods/RCT-Folly/folly/container/detail/F14Table.cpp:41:10: Thread-local storage is not supported for the current target

{path}/App/ios/Pods/RCT-Folly/folly/container/detail/F14Table.cpp:56:10: Thread-local storage is not supported for the current target

I'm not really sure what is going on so im not sure what information I need to provide but here is my Podfile:

    require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'

platform :ios, '11.0'

target 'Aware' do
  config = use_native_modules!

  use_react_native!(
    :path => config[:reactNativePath],
    # to enable hermes on iOS, change `false` to `true` and then install pods
    :hermes_enabled => false
  )

  pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
  pod 'Firebase/AnalyticsWithoutAdIdSupport'
 # pod 'RCT-Folly', :podspec => '../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec'
 # pod 'React-callinvoker"', :podspec => '../node_modules/react-native/ReactCommon/callinvoker.podspec'
   

  target 'AwareTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable the next line.
  #use_flipper!()

  post_install do |installer|
    react_native_post_install(installer)
  end
end

I have tried:

  • reinstall: Xcode, node_modules, pod and project
  • deleting: build folder, DerivedData, package-lock.json, Podfile.lock

CodePudding user response:

I had the same problem, and here's what I did to fix it

https://github.com/tanersener/react-native-ffmpeg/issues/148#issuecomment-633371018

  • Related