Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
5729f58b
Commit
5729f58b
authored
19 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Move the loader a bit higher in memory to leave more space for ntdll
and kernel32.
parent
03cc8c41
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
configure
+4
-4
4 additions, 4 deletions
configure
configure.ac
+3
-3
3 additions, 3 deletions
configure.ac
loader/Makefile.in
+1
-1
1 addition, 1 deletion
loader/Makefile.in
with
8 additions
and
8 deletions
configure
+
4
−
4
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
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
3
−
3
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
...
...
This diff is collapsed.
Click to expand it.
loader/Makefile.in
+
1
−
1
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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment