From b66911370b3a5376c8f383dc0a187ffe9c3bbeb2 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Wed, 17 Jan 2024 06:30:30 +0100 Subject: [PATCH] macho: forward parsed -compatibility_version to the linker --- src/main.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.zig b/src/main.zig index 857315346e..c8b0d95520 100644 --- a/src/main.zig +++ b/src/main.zig @@ -3218,6 +3218,7 @@ fn buildOutputType( .clang_passthrough_mode = clang_passthrough_mode, .clang_preprocessor_mode = clang_preprocessor_mode, .version = optional_version, + .compatibility_version = compatibility_version, .libc_installation = if (create_module.libc_installation) |*lci| lci else null, .verbose_cc = verbose_cc, .verbose_link = verbose_link,