swiftlang/swift-package-manager
View on GitHub[SR-8671] ARG_MAX limit exceeded when compiles huge project
Open
#5341 opened on Aug 31, 2018
buggood first issue
Description
| Previous ID | SR-8671 |
| Radar | rdar://problem/43940293 |
| Original Reporter | Pogonets (JIRA User) |
| Type | Bug |
Attachment: Download
| Votes | 3 |
| Component/s | Package Manager |
| Labels | Bug, StarterBug |
| Assignee | None |
| Priority | Medium |
md5: 7fd3bd1478f560273a7837164b9d76a9
Issue Description:
macOS have a relative small ARG_MAX limit (256kb)
When you compile huge project with SwiftPM they pass all sources one by one as arguments. Each file is passed as absolute path. And with count of files ~1000 (800 in our case) command line args become too long to even start command.
Error message is meaningless by the way
unable to spawn process (File exists)
This issue even easier to reach when linking multiple swift modules to single dynamic library (all object files from all modules passed to compiler as single line).
This is pretty common issue for build tools and usually solved with response files. Response files supported by clang, ld.gold and many other tools.