diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2024-04-07 21:19:12 -0400 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2024-04-08 13:20:14 -0400 |
| commit | fcdb7027e9f606cf0f4415daee73cb717affe69e (patch) | |
| tree | 8bbcc034da247436ae77b10fb19321cb443d49a7 /build.zig | |
| parent | 0c83fa2fd03fec86c4e36075978646f202deec32 (diff) | |
| download | zig-fcdb7027e9f606cf0f4415daee73cb717affe69e.tar.gz zig-fcdb7027e9f606cf0f4415daee73cb717affe69e.zip | |
haiku: fix linking issues
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -747,6 +747,9 @@ fn addCmakeCfgOptionsToExe( try addCxxKnownPath(b, cfg, exe, b.fmt("libstdc++.{s}", .{lib_suffix}), null, need_cpp_includes); try addCxxKnownPath(b, cfg, exe, b.fmt("libgcc_eh.{s}", .{lib_suffix}), null, need_cpp_includes); }, + .haiku => { + try addCxxKnownPath(b, cfg, exe, b.fmt("libstdc++.{s}", .{lib_suffix}), null, need_cpp_includes); + }, else => {}, } } |
