Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[[email protected]] yoga/style/Style.h file not found #46208

Open
birdofpreyru opened this issue Aug 25, 2024 · 14 comments
Open

[[email protected]] yoga/style/Style.h file not found #46208

birdofpreyru opened this issue Aug 25, 2024 · 14 comments

Comments

@birdofpreyru
Copy link
Contributor

Description

Attempting to upgrade my react-native-static-server library from [email protected] to [email protected], building for iOS, new arch, getting the error with yoga:
image

Interestingly, I've already upgraded a couple of other libs the same way, without having this issue.

Steps to reproduce

Clone birdofpreyru/react-native-static-server@6f6c899 , try to build the Example App in the library codebase (in the /example folder) for iOS.

React Native Version

0.75.2

Affected Platforms

Runtime - iOS, Build - MacOS

Output of npx react-native info

N/A

Stacktrace or Logs

N/A

Reproducer

N/A

Screenshots and Videos

No response

@okwasniewski
Copy link
Contributor

Hey,

Have you tried to remove run rm -rf Pods Podfile.lock build in the iOS folder?

I'm assuming this is an issue with Codegen generated ShadowNodes.cpp file which should be re-generated after clearing all the caches.

@birdofpreyru
Copy link
Contributor Author

@okwasniewski I tried it now, it does not help :(

@cipolleschi
Copy link
Contributor

I was cloning the project, checking out the dev-16 branch and try to run it, but I'm struggling to reach your error.

When I build from Xcode, I get:

Screenshot 2024-08-28 at 11 25 43

which is weird as I created symlink for node, npm and npx in /urs/local/bin which is accessible by Xcode.

I also tried to build with

yarn ios --verbose

and that's the error I get:
Screenshot 2024-08-28 at 11 29 02

Are you using CMake to build other stuffs?


For what concern the "missing" file... A new app from the template works fine from the template.
Do you have any special configuration? I see that the Xcode Scheme is a Custom one (not Release, nor Debug). I think that there is something funny in the configuration that needs to be updated to 0.75 to make it work.

Another thing you can try is to add these lines in this file

   if ENV['USE_FRAMEWORKS']
      header_search_path = header_search_path + [
        "\"$(PODS_TARGET_SRCROOT)/react/renderer/textlayoutmanager/platform/ios\"",
        "\"$(PODS_TARGET_SRCROOT)/react/renderer/components/textinput/platform/ios\"",
        "\"$(PODS_TARGET_SRCROOT)/react/renderer/components/view/platform/cxx\"",
      ]
    end

    ss.dependency             folly_dep_name, folly_version
+   ss.dependency			  yoga
    ss.compiler_flags       = folly_compiler_flags + ' ' + boost_compiler_flags
    ss.source_files         = "react/renderer/core/**/*.{m,mm,cpp,h}"

The ShadowNode.cpp is included by react/renderer/core and the core subspec contains it.
Weirdly, the React-Fabric pod does not depends on yoga even though files from it ends up importing Yoga files and even though it has visibility on the private headers from yoga....

@birdofpreyru
Copy link
Contributor Author

@cipolleschi

I was cloning the project, checking out the dev-16 branch and try to run it, but I'm struggling to reach your error. <...>

Sorry, I forgot to mention you need to git submodule update --init --recursive in the codebase root, to clone & checkout a couple of git submodules it depends upon.

Do you have any special configuration? I see that the Xcode Scheme is a Custom one (not Release, nor Debug)

In theory, that Custom configuration is the same as Debug or Release (I don't remember now, which one exactly), it just tests the build does not break with non-standard configuration name (it used to happen at some point, because CMake was looking at wrong folders).

The library's Podspec (https://github.com/birdofpreyru/react-native-static-server/blob/master/dr-pogodin-react-native-static-server.podspec) has a bunch of custom stuff to orchestrate CMake part of the build... perhaps I need to double-check how it differs from the clean version from the template.

@cipolleschi
Copy link
Contributor

Thanks for the context. I tried to spend some more time on the issue: using yarn ios --verbose I can build up until the yoga/style/Style.h file not found error.

Screenshot 2024-08-28 at 13 43 19

However, not being able to use Xcode makes it hard because I don't have the import chain and so I can't find which file is importing Yoga.

The yoga/style/Style.h is a private header and it is definitely there and properly configured... We might have missed to add one search_path somewhere.

@birdofpreyru could you please expand the error in your xcode so I can see the import chain?

361236586-c5990450-b5e2-4613-88d7-6145ae548a94

@birdofpreyru
Copy link
Contributor Author

image here you are @cipolleschi

@cipolleschi
Copy link
Contributor

cipolleschi commented Aug 28, 2024

Does the react-native-static-server library also have Components other than modules?
Because I can see that it generates a RNReactNativeStaticServerSpec folder with some component codegen but it is mostly empty...

Also, who is running these commands:
Screenshot 2024-08-28 at 16 01 56

These are not part of our usual cycle. Could it be Bob?

@cipolleschi
Copy link
Contributor

If I change the codegenConfig in the package.json like this:

 "codegenConfig": {
    "name": "RNReactNativeStaticServerSpec",
+    "type": "modules",
-     "type": "all",
    "jsSrcsDir": "src",
    "windows": {
      "namespace": "winrt::ReactNativeStaticServer",
      "outputDirectory": "windows/ReactNativeStaticServer/codegen"
    },
    "outputDir": {
      "ios": "ios/generated",
      "android": "android/generated"
    },
    "android": {
      "javaPackageName": "com.drpogodin.reactnativestaticserver"
    },
    "includesGeneratedCode": true
  },

It works. I think that Bob is doing some weird stuff there.
Simulator Screenshot - iPhone 15 Pro - 2024-08-28 at 15 58 38

@birdofpreyru
Copy link
Contributor Author

@cipolleschi Awesome! I'll double-check later it does not break the build for other target platforms.

For record, "type": "all" comes from the library template created by create-react-native-library. Not sure now, should be this issue moved to its repo, or should it stay here, how do we handle it to fix the root cause?

By the way, you asked for repro in #46201 — here you got it, if you just press Send a message to the React Native layer button, it will attempt to send a message to RN and show an alert, and that does not show up, as the alert fails with the error I reported in #46201 (though, when build for Android, obviously I had no chance to try it on iOS yet :)

@cipolleschi
Copy link
Contributor

Not sure now, should be this issue moved to its repo, or should it stay here, how do we handle it to fix the root cause?

the "all" alternative is supported by codegen. But I think that they are doing some shenanigans on top of what we do with codegen and that somehow breaks it.

It's probably a good idea to move the issue to their repo or to create a new one there.
I'll reach out to them tomorrow to see if they know something about it.

By the way, #46201 (comment) for repro in #46201 — here you got it, if you just press Send a message to the React Native layer button, it will attempt to send a message to RN and show an alert, and that does not show up, as the alert fails with the error I reported in #46201 (though, when build for Android, obviously I had no chance to try it on iOS yet :)

thanks, I'll try to look into it soon (although I'm more an iOS guy. 😅 )

@memosize
Copy link

it is also shows at 0.76.1

@cipolleschi
Copy link
Contributor

cipolleschi commented Oct 31, 2024

it is also shows at 0.76.1

@memosize what is shown in 0.76.1? The error?

@memosize
Copy link

memosize commented Nov 2, 2024

it is also shows at 0.76.1

@memosize what is shown in 0.76.1? The error?

image if I'm not add header search path like this

@clarkquinatadcan
Copy link

it is also shows at 0.76.1

I had the same issue on RN 0.76.1. Adding this to the Podfile fixed the issue for me.

  # Path to the Yoga headers in Private
  private_yoga_headers = "#{installer.sandbox.root}/Headers/Private/Yoga"
  # Path to the Yoga headers in Public
  public_yoga_headers = "#{installer.sandbox.root}/Headers/Public/Yoga"

  # Copy the Yoga headers from Private to Public
  FileUtils.mkdir_p(public_yoga_headers) unless Dir.exist?(public_yoga_headers)
  system("rsync -a #{private_yoga_headers}/ #{public_yoga_headers}")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants