Argument list too long: recursive header expansion failed at
See original GitHub issueI’m receiving the following message when try to build my project
Argument list too long: recursive header expansion failed at /Users/my-project/node_modules/react-native-intercom/iOS/../../../ios/Pods/React/node_modules/react-tools/src/renderers/dom/shared.
I’m trying to link the project manually
Any ideas?
Thank you in advanced
Issue Analytics
- State:
- Created 7 years ago
- Reactions:5
- Comments:17 (1 by maintainers)
Top Results From Across the Web
Argument list too long: recursive header expansion failed #1407
Which implementation are you using. I'm using RNCamera. Steps to reproduce. following documentation ( npm install react-native-camera --save); react-native ...
Read more >Argument list too long: recursive header expansion failed
I ran into a similar issue and had to go in and remove a few header search paths, as described here:.
Read more >You have to edit your Framework Search Paths of ... - Medium
You have to edit your Framework Search Paths of RNCamera.xcodeproj. Go to,. “Argument list too long: recursive header expansion failed at…
Read more >Argument list too long: recursive header expansion failed ...
Coding example for the question Argument list too long: recursive header expansion failed react-native-fcm (React Native)
Read more >Issuehunt
Argument list too long: recursive header expansion failed #1407 · Which implementation are you using · Steps to reproduce · Expected behaviour ·...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It looks like this library recursively searches through
$(SRCROOT)/../../../ios (recursive)
by default, which can contain a ton of files. Changing the Framework Search Path to$(SRCROOT)/../../../ios/Pods (recursive)
solves the problem for me.Here’s the line of code.
And here’s what my Framework Search Paths look like, post-fix:
FYI, it was my DerivedData folder that was making my arguments list blow up. If I manually nuked that and then did a build it would work fine, but once that folder existed (and it’s got many, many files in it) builds would fail as well as cleans with an error message like @ferbass had originally.
works for me