Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
5729f58b
Commit
5729f58b
authored
Jun 17, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move the loader a bit higher in memory to leave more space for ntdll
and kernel32.
parent
03cc8c41
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
configure
configure
+4
-4
configure.ac
configure.ac
+3
-3
Makefile.in
loader/Makefile.in
+1
-1
No files found.
configure
View file @
5729f58b
...
...
@@ -13867,13 +13867,13 @@ echo "${ECHO_T}$ac_cv_c_export_dynamic" >&6
case
$host_cpu
in
*
i[3456789]86
*
)
echo
"
$as_me
:
$LINENO
: checking whether we can relocate the executable to 0x7
7
f00000"
>
&5
echo
$ECHO_N
"checking whether we can relocate the executable to 0x7
7
f00000...
$ECHO_C
"
>
&6
echo
"
$as_me
:
$LINENO
: checking whether we can relocate the executable to 0x7
b
f00000"
>
&5
echo
$ECHO_N
"checking whether we can relocate the executable to 0x7
b
f00000...
$ECHO_C
"
>
&6
if
test
"
${
ac_cv_ld_reloc_exec
+set
}
"
=
set
;
then
echo
$ECHO_N
"(cached)
$ECHO_C
"
>
&6
else
ac_wine_try_cflags_saved
=
$CFLAGS
CFLAGS
=
"
$CFLAGS
-Wl,--section-start,.interp=0x7
7
f00400"
CFLAGS
=
"
$CFLAGS
-Wl,--section-start,.interp=0x7
b
f00400"
cat
>
conftest.
$ac_ext
<<
_ACEOF
/* confdefs.h. */
_ACEOF
...
...
@@ -13925,7 +13925,7 @@ echo "$as_me:$LINENO: result: $ac_cv_ld_reloc_exec" >&5
echo
"
${
ECHO_T
}
$ac_cv_ld_reloc_exec
"
>
&6
if
test
"
$ac_cv_ld_reloc_exec
"
=
"yes"
then
LDEXECFLAGS
=
"
$LDEXECFLAGS
-Wl,--section-start,.interp=0x7
7
f00400"
LDEXECFLAGS
=
"
$LDEXECFLAGS
-Wl,--section-start,.interp=0x7
b
f00400"
fi
;;
esac
...
...
configure.ac
View file @
5729f58b
...
...
@@ -991,12 +991,12 @@ case $host_os in
case $host_cpu in
*i[[3456789]]86*)
AC_CACHE_CHECK([whether we can relocate the executable to 0x7
7
f00000], ac_cv_ld_reloc_exec,
[WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7
7
f00400],
AC_CACHE_CHECK([whether we can relocate the executable to 0x7
b
f00000], ac_cv_ld_reloc_exec,
[WINE_TRY_CFLAGS([-Wl,--section-start,.interp=0x7
b
f00400],
ac_cv_ld_reloc_exec="yes", ac_cv_ld_reloc_exec="no")])
if test "$ac_cv_ld_reloc_exec" = "yes"
then
LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7
7
f00400"
LDEXECFLAGS="$LDEXECFLAGS -Wl,--section-start,.interp=0x7
b
f00400"
fi
;;
esac
...
...
loader/Makefile.in
View file @
5729f58b
...
...
@@ -30,7 +30,7 @@ wine-glibc: glibc.o Makefile.in
$(CC)
-o
$@
glibc.o
$(LIBWINE)
$(LIBPORT)
$(LIBPTHREAD)
$(EXTRALIBS)
$(LDFLAGS)
wine-preloader
:
preloader.o Makefile.in
$(CC)
-o
$@
-static
-nostartfiles
-nodefaultlibs
-Wl
,-Ttext
=
0x7
8
000000 preloader.o
$(LIBPORT)
$(LDFLAGS)
$(CC)
-o
$@
-static
-nostartfiles
-nodefaultlibs
-Wl
,-Ttext
=
0x7
c
000000 preloader.o
$(LIBPORT)
$(LDFLAGS)
wine-kthread
:
$(KTHREAD_OBJS) Makefile.in
$(CC)
-o
$@
$(LDEXECFLAGS)
$(KTHREAD_OBJS)
$(LIBWINE)
$(LIBPORT)
$(EXTRALIBS)
$(LDFLAGS)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment