From 3e0fe63e636165c03b25bc8cdb3e669db3aba5f8 Mon Sep 17 00:00:00 2001 From: Stephen Gutekanst Date: Sun, 25 Jun 2023 00:38:28 -0700 Subject: [PATCH] gpu-dawn: update mac target help message Signed-off-by: Stephen Gutekanst --- libs/gpu-dawn/sdk.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/gpu-dawn/sdk.zig b/libs/gpu-dawn/sdk.zig index 44ca3ac8..14581665 100644 --- a/libs/gpu-dawn/sdk.zig +++ b/libs/gpu-dawn/sdk.zig @@ -237,8 +237,8 @@ pub fn Sdk(comptime deps: anytype) type { std.log.err(" use -Ddawn-from-source=true or set `Options.from_source = true`\n", .{}); if (target.os.tag == .macos) { std.log.err("", .{}); - if (target.cpu.arch.isX86()) std.log.err("-> Did you mean to use -Dtarget=x86_64-macos.12 ?", .{}); - if (target.cpu.arch.isAARCH64()) std.log.err("-> Did you mean to use -Dtarget=aarch64-macos.12 ?", .{}); + if (target.cpu.arch.isX86()) std.log.err("-> Did you mean to use -Dtarget=x86_64-macos.12.0...13.1-none ?", .{}); + if (target.cpu.arch.isAARCH64()) std.log.err("-> Did you mean to use -Dtarget=aarch64-macos.12.0...13.1-none ?", .{}); } std.process.exit(1); }