| author | |
| committer | |
| log | a38a6914875ab3bda02fb1732467228ef876074e |
| tree | 9bcc1869e50e052f64c8293cf9f6d4a1a461e2ec |
| parent | c56b30f565966358abe8935e1f521f60660000b4 |
Fixes #9340.1 files changed, 1 insertions(+), 1 deletions(-)
src/Compilation.zig+1-1| ... | ... | @@ -991,7 +991,7 @@ pub fn create(gpa: *Allocator, options: InitOptions) !*Compilation { |
| 991 | 991 | break :blk lm; |
| 992 | 992 | } else default_link_mode; |
| 993 | 993 | |
| 994 | const dll_export_fns = if (options.dll_export_fns) |explicit| explicit else is_dyn_lib; | |
| 994 | const dll_export_fns = if (options.dll_export_fns) |explicit| explicit else is_dyn_lib or options.rdynamic; | |
| 995 | 995 | |
| 996 | 996 | const libc_dirs = try detectLibCIncludeDirs( |
| 997 | 997 | arena, |