| author | |
| committer | |
| log | a45c0c503383d6312d676d114e4067efcac46791 |
| tree | ba960f7b8ce0837a8ba4b9a197b0b93372cf0227 |
| parent | 7b9612a92245ccb3be3cac1690fc0a58077336c7 |
Fixes #9340.1 files changed, 1 insertions(+), 1 deletions(-)
src/Compilation.zig+1-1| ... | ... | @@ -963,7 +963,7 @@ pub fn create(gpa: *Allocator, options: InitOptions) !*Compilation { |
| 963 | 963 | break :blk lm; |
| 964 | 964 | } else default_link_mode; |
| 965 | 965 | |
| 966 | const dll_export_fns = if (options.dll_export_fns) |explicit| explicit else is_dyn_lib; | |
| 966 | const dll_export_fns = if (options.dll_export_fns) |explicit| explicit else is_dyn_lib or options.rdynamic; | |
| 967 | 967 | |
| 968 | 968 | const libc_dirs = try detectLibCIncludeDirs( |
| 969 | 969 | arena, |