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:
Kagami Sascha Rosylight
2024-08-30 22:52:13 +00:00
parent 18a18bee1b
commit 3c748d90be
8 changed files with 11 additions and 11 deletions

4
Cargo.lock generated
View File

@@ -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
View File

@@ -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",
]

View File

@@ -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]

View File

@@ -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>"

View File

@@ -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

View File

@@ -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"

View File

@@ -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)
{