-
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
Avoid replacing the definition of CURRENT_RUSTC_VERSION
#135173
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,12 @@ use crate::RustcVersion; | |
/// `since` field of the `#[stable]` attribute. | ||
/// | ||
/// For more, see [this pull request](https://github.com/rust-lang/rust/pull/100591). | ||
pub const VERSION_PLACEHOLDER: &str = "CURRENT_RUSTC_VERSION"; | ||
pub const VERSION_PLACEHOLDER: &str = concat!("CURRENT_RUSTC_VERSIO", "N"); | ||
// Note that the `concat!` macro above prevents `src/tools/replace-version-placeholder` from | ||
// replacing the constant with the current version. Hardcoding the tool to skip this file doesn't | ||
// work as the file can (and at some point will) be moved around. | ||
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. lmaoooo |
||
// | ||
// Turning the `concat!` macro into a string literal will make Pietro cry. That'd be sad :( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. don't cry Pietro :( |
||
|
||
/// Represents the following attributes: | ||
/// | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,7 @@ fn main() { | |
let version_str = version_str.trim(); | ||
walk::walk_many( | ||
&[&root_path.join("compiler"), &root_path.join("library")], | ||
|path, _is_dir| { | ||
walk::filter_dirs(path) | ||
// We exempt these as they require the placeholder | ||
// for their operation | ||
|| path.ends_with("compiler/rustc_attr/src/builtin.rs") | ||
}, | ||
|path, _is_dir| walk::filter_dirs(path), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh nice, it even makes the actual code simpler. |
||
&mut |entry, contents| { | ||
if !contents.contains(VERSION_PLACEHOLDER) { | ||
return; | ||
|
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.
lmao