Commit c8c041d6ab681f2d8c9212c7486eab62251d5fcc
1 parent
739ec232
Exists in
master
and in
3 other branches
Fixing delayed implib.
Showing
1 changed file
with
3 additions
and
2 deletions
Show diff stats
Makefile.in
@@ -198,10 +198,11 @@ $(BINRLS)/$(LIBNAME).delayed.a: \ | @@ -198,10 +198,11 @@ $(BINRLS)/$(LIBNAME).delayed.a: \ | ||
198 | @echo $< ... | 198 | @echo $< ... |
199 | 199 | ||
200 | @@DLLTOOL@ \ | 200 | @@DLLTOOL@ \ |
201 | - -d $(BINRLS)/$(LIBNAME).def \ | 201 | + --input-def $(BINRLS)/$(LIBNAME).def \ |
202 | + --dllname $(LIBNAME).dll \ | ||
203 | + --kill-at \ | ||
202 | --output-delaylib $@ | 204 | --output-delaylib $@ |
203 | 205 | ||
204 | - | ||
205 | $(BINRLS)/$(SONAME): \ | 206 | $(BINRLS)/$(SONAME): \ |
206 | $(foreach SRC, $(basename $(SOURCES)), $(OBJRLS)/$(SRC).o) | 207 | $(foreach SRC, $(basename $(SOURCES)), $(OBJRLS)/$(SRC).o) |
207 | 208 |