-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Linking error with incremental compilation on windows. #39644
Labels
A-incr-comp
Area: Incremental compilation
C-bug
Category: This is a bug.
O-windows
Operating system: Windows
O-windows-msvc
Toolchain: MSVC, Operating system: Windows
Comments
The command is over the 32K command line limit enforced by Windows. Clearly we just need to switch to using command files to pass arguments to the linker. https://msdn.microsoft.com/en-us/library/9xch38h8.aspx |
Servo hit the same issue: servo/servo#15565 (comment) |
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Feb 17, 2017
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Feb 17, 2017
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Feb 17, 2017
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Feb 22, 2017
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Feb 24, 2017
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Mar 4, 2017
* On Windows where it’s buggy rust-lang/rust#39644 * On our arm32 CI which doesn’t have enough RAM #15565 (comment)
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Mar 4, 2017
* On Windows where it’s buggy: rust-lang/rust#39644 * On our CI cross-compiling to ARM, these builders don’t have enough RAM: #15565 (comment)
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Mar 4, 2017
* On Windows where it’s buggy: rust-lang/rust#39644 * On our CI cross-compiling to ARM Linux or Android, these builders don’t have enough RAM: #15565 (comment)
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Mar 6, 2017
* On Windows where it’s buggy: rust-lang/rust#39644 * On our CI cross-compiling to ARM Linux or Android, these builders don’t have enough RAM: #15565 (comment)
SimonSapin
added a commit
to servo/servo
that referenced
this issue
Mar 11, 2017
* On Windows where it’s buggy: rust-lang/rust#39644 * On our CI cross-compiling to ARM Linux or Android, these builders don’t have enough RAM: #15565 (comment)
steveklabnik
added
O-windows
Operating system: Windows
O-windows-msvc
Toolchain: MSVC, Operating system: Windows
labels
Mar 23, 2017
Oh wow, this is the first time I see this -- cc me. |
I believe this was fixed in #44094 |
This was referenced Feb 11, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-incr-comp
Area: Incremental compilation
C-bug
Category: This is a bug.
O-windows
Operating system: Windows
O-windows-msvc
Toolchain: MSVC, Operating system: Windows
Using
rustc 1.16.0-nightly (24055d0f2 2017-01-31)
withCARGO_INCREMENTAL=1
on Windows 8.1 with my project (which usually takes 45 seconds to build):Here the complete output:
Related to #33844.
The text was updated successfully, but these errors were encountered: