Alexandre Julliard : kernel32: Lower the load address to accomodate the dll size.
Module: wine Branch: master Commit: 8f567028123cd7a3c8180f9ad2c867add34795e3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=8f567028123cd7a3c8180f9ad2... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Mar 28 15:57:35 2016 +0900 kernel32: Lower the load address to accomodate the dll size. Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/kernel32/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernel32/Makefile.in b/dlls/kernel32/Makefile.in index c09771d..1399859 100644 --- a/dlls/kernel32/Makefile.in +++ b/dlls/kernel32/Makefile.in @@ -3,7 +3,7 @@ MODULE = kernel32.dll IMPORTLIB = kernel32 IMPORTS = winecrt0 ntdll EXTRALIBS = $(COREFOUNDATION_LIBS) $(POLL_LIBS) -EXTRADLLFLAGS = -nodefaultlibs -Wb,-F,KERNEL32.dll -Wl,--image-base,0x7b800000 +EXTRADLLFLAGS = -nodefaultlibs -Wb,-F,KERNEL32.dll -Wl,--image-base,0x7b400000 C_SRCS = \ actctx.c \
participants (1)
-
Alexandre Julliard