| author | |
| committer | |
| log | b74f2924102fe06addb688dc5fd039dc2756f619 |
| tree | 2458f38c54fa77f642dc41658f3cf89c7af506ea |
| parent | 3701697a0a586e630a2452dea29951f0051a47fd |
This reverts commit 3701697a0a586e630a2452dea29951f0051a47fd.
The commit introduced a regression when building stage2 on nixOS where
the linker would fail to find relevant LLVM dynamic libraries as some
search dirs were missing.1 files changed, 4 insertions(+), 0 deletions(-)
src/main.zig+4| ... | ... | @@ -2197,6 +2197,10 @@ fn buildOutputType( |
| 2197 | 2197 | clang_argv.appendAssumeCapacity(framework_dir); |
| 2198 | 2198 | framework_dirs.appendAssumeCapacity(framework_dir); |
| 2199 | 2199 | } |
| 2200 | ||
| 2201 | for (paths.lib_dirs.items) |lib_dir| { | |
| 2202 | try lib_dirs.append(lib_dir); | |
| 2203 | } | |
| 2200 | 2204 | for (paths.rpaths.items) |rpath| { |
| 2201 | 2205 | try rpath_list.append(rpath); |
| 2202 | 2206 | } |