diff options
author | Jonathan Schwender <55576758+jschwe@users.noreply.github.com> | 2024-12-05 12:12:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-05 11:12:03 +0000 |
commit | d93e6f76a10322eb450e53837ab1dbe1c3df66db (patch) | |
tree | 1c4867daa35516f23e0561d511d153e52b8b1593 | |
parent | c3a58f9c16895aaf137949944f4986ef67b2b68d (diff) | |
download | servo-d93e6f76a10322eb450e53837ab1dbe1c3df66db.tar.gz servo-d93e6f76a10322eb450e53837ab1dbe1c3df66db.zip |
Bump MACOSX_DEPLOYMENT_TARGET to 13.0 (#34484)
The lowest version we test servo on is macos 13.
This fixes some spurious compile errors on recent MacOS
versions, when compiling mozjs from source.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
-rw-r--r-- | .cargo/config.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index f08e8c6a42e..81e8e9feb67 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -29,7 +29,7 @@ linker = "lld-link.exe" linker = "lld-link.exe" [env] -MACOSX_DEPLOYMENT_TARGET = "10.10" +MACOSX_DEPLOYMENT_TARGET = "13.0" RUSTC_BOOTSTRAP = "crown,script,style_tests" [build] |