Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upLinks to deprecated Rust documentation in HACKING_QUICKSTART.md #23088
Comments
|
Go ahead and submit a PR to fix the link in HACKING_QUICKSTART.
Probably better to file another issue to investigate why you have to do that. |
|
re PKG_CONFIG_PATH. Just saw that: #23087 - and https://github.com/servo/servo/issues?utf8=✓&q=is%3Aissue+is%3Aopen+PKG_CONFIG_PATH |
|
@paulrouget aha ok yeah those issues do seem to be the same. Must've not searched very well first... Will address the links later today. Thanks! |
ISSUE-23088: updated deprecated links in HACKING_QUICKSTART Replaced two links in `HACKING_QUICKSTART.md`: "match" now points to the rust-by-example match page and "patterns" points to the rust book 2.0 overview of structural pattern matching. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #23088 <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because they represent docs changes only <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23092) <!-- Reviewable:end -->
ISSUE-23088: updated deprecated links in HACKING_QUICKSTART Replaced two links in `HACKING_QUICKSTART.md`: "match" now points to the rust-by-example match page and "patterns" points to the rust book 2.0 overview of structural pattern matching. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #23088 <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because they represent docs changes only <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23092) <!-- Reviewable:end -->
ISSUE-23088: updated deprecated links in HACKING_QUICKSTART Replaced two links in `HACKING_QUICKSTART.md`: "match" now points to the rust-by-example match page and "patterns" points to the rust book 2.0 overview of structural pattern matching. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [X] These changes fix #23088 <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because they represent docs changes only <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/23092) <!-- Reviewable:end -->
I was reading through
HACKING_QUICKSTART.mdtoday while trying to get my dev environment set up. I noticed in this section, the links to "match" and "pattern" both link to the deprecated "first edition" Rust book.Not sure if this ought to be another issue, but I also spent some time stuck getting
servoto build for the first time before discovering that I needed to run this:export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig", which isn't mentioned in theREADME.md. I'm not sure how particular that is to my experience, but it does seem likepkg-configon OSX does not know how to findlibffiby default, and theservobuild script requires this to work in order to check the version ofgstreamer.I'd actually really appreciate it if this issue was assigned to me, if that's alright, as I am just starting here and I think it would be a solid way to get acquainted with the PR process for
servo. Thanks!