diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 09:03:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-17 09:03:11 +0000 |
commit | dd5097e155f5380998ee81a7afb1a241df5df770 (patch) | |
tree | 13860e4bbb3aba054d735643c3d3cf651de11e36 /gfx/qcms/build.rs | |
parent | Adding upstream version 115.11.0esr. (diff) | |
download | firefox-esr-dd5097e155f5380998ee81a7afb1a241df5df770.tar.xz firefox-esr-dd5097e155f5380998ee81a7afb1a241df5df770.zip |
Adding upstream version 115.12.0esr.upstream/115.12.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'gfx/qcms/build.rs')
-rw-r--r-- | gfx/qcms/build.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gfx/qcms/build.rs b/gfx/qcms/build.rs new file mode 100644 index 0000000000..6810a8828e --- /dev/null +++ b/gfx/qcms/build.rs @@ -0,0 +1,7 @@ +extern crate version_check as rustc; + +fn main() { + if rustc::is_min_version("1.78.0").unwrap_or(false) { + println!("cargo:rustc-cfg=stdsimd_split"); + } +} |