From d93e6f76a10322eb450e53837ab1dbe1c3df66db Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:12:03 +0100 Subject: [PATCH] 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 --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]