Bug 1913645 - Update glslopt to 0.1.11 to fix aarch64 host build r=jnicol,supply-chain-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D220703
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -2469,9 +2469,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "glslopt"
|
||||
version = "0.1.10"
|
||||
version = "0.1.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ee5be629003d587bab188f3e2e3b010aa2cde7c41ec967b3a244f388d4d81877"
|
||||
checksum = "913662ae8335df058d56e00f11340b20fa82e03e0276587797ef325ab01e50d4"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
4
gfx/wr/Cargo.lock
generated
4
gfx/wr/Cargo.lock
generated
@@ -1114,9 +1114,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "glslopt"
|
||||
version = "0.1.10"
|
||||
version = "0.1.11"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "ee5be629003d587bab188f3e2e3b010aa2cde7c41ec967b3a244f388d4d81877"
|
||||
checksum = "913662ae8335df058d56e00f11340b20fa82e03e0276587797ef325ab01e50d4"
|
||||
dependencies = [
|
||||
"cc",
|
||||
]
|
||||
|
||||
@@ -23,7 +23,7 @@ sw_compositor = ["swgl"]
|
||||
|
||||
[build-dependencies]
|
||||
build-parallel = "0.1.2"
|
||||
glslopt = "0.1.10"
|
||||
glslopt = "0.1.11"
|
||||
webrender_build = { version = "0.0.2", path = "../webrender_build" }
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -256,7 +256,7 @@ who = "Jamie Nicol <jnicol@mozilla.com>"
|
||||
criteria = "safe-to-deploy"
|
||||
user-id = 84794 # Jamie Nicol (jamienicol)
|
||||
start = "2020-04-07"
|
||||
end = "2024-04-25"
|
||||
end = "2025-08-30"
|
||||
|
||||
[[wildcard-audits.io-surface]]
|
||||
who = "Bobby Holley <bobbyholley@gmail.com>"
|
||||
|
||||
@@ -240,8 +240,8 @@ user-login = "badboy"
|
||||
user-name = "Jan-Erik Rediger"
|
||||
|
||||
[[publisher.glslopt]]
|
||||
version = "0.1.10"
|
||||
when = "2024-02-13"
|
||||
version = "0.1.11"
|
||||
when = "2024-08-30"
|
||||
user-id = 84794
|
||||
user-login = "jamienicol"
|
||||
user-name = "Jamie Nicol"
|
||||
|
||||
File diff suppressed because one or more lines are too long
2
third_party/rust/glslopt/Cargo.toml
vendored
2
third_party/rust/glslopt/Cargo.toml
vendored
@@ -12,7 +12,7 @@
|
||||
[package]
|
||||
edition = "2018"
|
||||
name = "glslopt"
|
||||
version = "0.1.10"
|
||||
version = "0.1.11"
|
||||
authors = ["Jamie Nicol <jnicol@mozilla.com>"]
|
||||
description = "Optimizes GLSL shader code"
|
||||
readme = "README.md"
|
||||
|
||||
@@ -55,7 +55,7 @@ extern "C" {
|
||||
*/
|
||||
#ifdef HAVE___BUILTIN_FFS
|
||||
#define ffs __builtin_ffs
|
||||
#elif defined(_MSC_VER) && (_M_IX86 || _M_ARM || _M_AMD64 || _M_IA64)
|
||||
#elif defined(_MSC_VER) && (_M_IX86 || _M_ARM || _M_AMD64 || _M_ARM64 || _M_IA64)
|
||||
static inline
|
||||
int ffs(int i)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user