-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
compiletest: include stage0-sysroot libstd dylib in recipe dylib search path #135389
Conversation
weirdly, i just got bootstrap itself failing due to not being able to find libstd (i was just trying to run i don't really know how to repro, maybe it has something to do with switching branches, or maybe there was some change to rpath calculation that needs to be reverted. also one time i had the opposite problem, where there were two possible versions of libstd, and bootstrap (or was it rustc?) couldn't decide which to use. |
Sometimes between compiler bumps and bootstrap changes you may need to |
that's a command implemented in the rust side of bootstrap, which i cannot build. i think i need to rebuild everything, which probably isn't happening today. |
yeah removing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems good to me other than a nit
…ch path To fix some of the failures in `COMPILETEST_FORCE_STAGE0=1 ./x test run-make --stage 0`.
18a10b9
to
1665b80
Compare
Addressed the nit. |
…iaskrgr Rollup of 5 pull requests Successful merges: - rust-lang#135266 (Remove emsdk version update from 1.84.0 relnotes) - rust-lang#135364 (Cleanup `suggest_binding_for_closure_capture_self` diag in borrowck) - rust-lang#135375 (allow rustdoc-js tests to be run at stage0) - rust-lang#135379 (Make (unstable API) `UniqueRc` invariant for soundness) - rust-lang#135389 (compiletest: include stage0-sysroot libstd dylib in recipe dylib search path) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#135389 - jieyouxu:fix-stage0-rustdoc-rmake, r=onur-ozkan compiletest: include stage0-sysroot libstd dylib in recipe dylib search path To fix some of the failures in `COMPILETEST_FORCE_STAGE0=1 ./x test run-make --stage 0`. Specifically, ``` COMPILETEST_FORCE_STAGE0=1 ./x test tests/run-make/rustdoc-default-output/ --stage 0 ``` should now pass. Fixes rust-lang#135373. (As in, make *some* of the `run-make` tests pass, other `run-make` tests fail for various reasons against stage0, and generally `run-make` tests are not guaranteed to pass at stage 0.) cc `@lolbinarycat` r? bootstrap
To fix some of the failures in
COMPILETEST_FORCE_STAGE0=1 ./x test run-make --stage 0
. Specifically,should now pass.
Fixes #135373. (As in, make some of the
run-make
tests pass, otherrun-make
tests fail for various reasons against stage0, and generallyrun-make
tests are not guaranteed to pass at stage 0.)cc @lolbinarycat
r? bootstrap