| ... | ... | @@ -1562,6 +1562,7 @@ pub fn resolveInputs( |
| 1562 | 1562 | .reexport = an.query.reexport, |
| 1563 | 1563 | .must_link = an.query.must_link, |
| 1564 | 1564 | .hidden = an.query.hidden, |
| 1565 | .allow_so_scripts = an.query.allow_so_scripts, |
| 1565 | 1566 | .preferred_mode = link_mode, |
| 1566 | 1567 | .search_strategy = .no_fallback, |
| 1567 | 1568 | }, |
| ... | ... | @@ -1877,6 +1878,8 @@ fn resolvePathInputLib( |
| 1877 | 1878 | link_mode: std.builtin.LinkMode, |
| 1878 | 1879 | color: std.zig.Color, |
| 1879 | 1880 | ) Allocator.Error!AccessLibPathResult { |
| 1881 | try resolved_inputs.ensureUnusedCapacity(gpa, 1); |
| 1882 | |
| 1880 | 1883 | const test_path: Path = pq.path; |
| 1881 | 1884 | // In the case of .so files, they might actually be "linker scripts" |
| 1882 | 1885 | // that contain references to other libraries. |