From: Rémi Bernon <rbernon(a)codeweavers.com> Making sure it also emits .cfi and .seh directives and generates unwind tables for the delay import thunks. --- tools/makedep.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/makedep.c b/tools/makedep.c index a042621cec7..5b06c8c2c26 100644 --- a/tools/makedep.c +++ b/tools/makedep.c @@ -3410,6 +3410,7 @@ static void output_import_lib( struct makefile *make, unsigned int arch ) output_filename( "--export" ); output_filename( spec_file ); output_filenames_obj_dir( make, make->implib_files[arch] ); + if (arch) output_filenames( dll_flags ); output( "\n" ); if (!arch && is_native_arch_disabled( make )) return; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1001