From: Julian Waters <[email protected]>
The C runtime has the configure option --enable-delay-import-libs to
enable the creation of delay loaded libraries, however this option
does not work. Given such libraries can be useful to have for users
it would be helpful to properly support them.
mingw-w64-crt/ChangeLog:
* Makefile.am (AM_DLLTOOLFLAGS): Properly handle delay loaded library
name.
Signed-off-by: TheShermanTanker <[email protected]>
---
mingw-w64-crt/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mingw-w64-crt/Makefile.am b/mingw-w64-crt/Makefile.am
index 8960f7a6d..713015a96 100644
--- a/mingw-w64-crt/Makefile.am
+++ b/mingw-w64-crt/Makefile.am
@@ -51,7 +51,7 @@ if DLLTOOL_HAS_TEMP_PREFIX
AM_DLLTOOLFLAGS += --temp-prefix $(basename $@)
endif
if DELAY_IMPORT_LIBS
- AM_DLLTOOLFLAGS += --output-delaylib [email protected]
+ AM_DLLTOOLFLAGS += --output-delaylib $(basename $@).delayimp.a
endif
DTLIBARM32=$(DTDEFARM32) $(top_srcdir)/`echo $@ | $(SED)
's|/lib|/|;s|\.a|.def|'`
DTLIBARM64=$(DTDEFARM64) $(top_srcdir)/`echo $@ | $(SED)
's|/lib|/|;s|\.a|.def|'`
--
2.53.0.windows.2
_______________________________________________
Mingw-w64-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public