|
Lines 174-185
fn build_asm_files() {
Link Here
|
| 174 |
} |
174 |
} |
| 175 |
|
175 |
|
| 176 |
fn rustc_version_check() { |
176 |
fn rustc_version_check() { |
| 177 |
// This should match the version in the CI |
|
|
| 178 |
const REQUIRED_VERSION: &str = "1.44.1"; |
| 179 |
if version().unwrap() < Version::parse(REQUIRED_VERSION).unwrap() { |
| 180 |
eprintln!("rav1e requires rustc >= {}.", REQUIRED_VERSION); |
| 181 |
exit(1); |
| 182 |
} |
| 183 |
} |
177 |
} |
| 184 |
|
178 |
|
| 185 |
#[cfg(feature = "asm")] |
179 |
#[cfg(feature = "asm")] |