We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755f50a commit 8032ecbCopy full SHA for 8032ecb
build.zig
@@ -532,6 +532,10 @@ fn addCmakeCfgOptionsToExe(
532
exe: *std.build.LibExeObjStep,
533
use_zig_libcxx: bool,
534
) !void {
535
+ if (exe.target.isDarwin()) {
536
+ // useful for package maintainers
537
+ exe.headerpad_max_install_names = true;
538
+ }
539
exe.addObjectFile(fs.path.join(b.allocator, &[_][]const u8{
540
cfg.cmake_binary_dir,
541
"zigcpp",
0 commit comments