Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
jberryman
GHC
Commits
3917b929
Commit
3917b929
authored
Oct 07, 1998
by
simonm
Browse files
[project @ 1998-10-07 12:41:42 by simonm]
fix a couple of bugs in the text/data segment end symbol tests.
parent
9372c898
Changes
1
Hide whitespace changes
Inline
Side-by-side
aclocal.m4
View file @
3917b929
dnl $Id: aclocal.m4,v 1.
29
1998/10/0
5
1
4:15:3
2 simonm Exp $
dnl $Id: aclocal.m4,v 1.
30
1998/10/0
7
1
2:41:4
2 simonm Exp $
dnl
dnl Extra autoconf macros for the Glasgow fptools
dnl
...
...
@@ -460,12 +460,12 @@ not_done=1
for i in etext _etext __etext; do
FPTOOLS_IN_SCOPE($i,$i,fptools_cv_end_of_text)
if test "$fptools_cv_end_of_text" = yes; then
AC_DEFINE(TEXT_SECTION_END_MARKER, $i)
AC_DEFINE
_UNQUOTED
(TEXT_SECTION_END_MARKER, $i)
not_done=0
break
fi
done
if test "$not_done"; then
if test "$not_done"
= 1
; then
FPTOOLS_IN_SCOPE(etext asm("etext"),etext,fptools_cv_end_of_text);
if test "$fptools_cv_end_of_text" = yes; then
AC_DEFINE(TEXT_SECTION_END_MARKER, etext asm("etext"))
...
...
@@ -484,12 +484,12 @@ not_done=1
for i in end _end __end; do
FPTOOLS_IN_SCOPE($i,$i,fptools_cv_end_of_data)
if test "$fptools_cv_end_of_data" = yes; then
AC_DEFINE(DATA_SECTION_END_MARKER, $i)
AC_DEFINE
_UNQUOTED
(DATA_SECTION_END_MARKER, $i)
not_done=0
break
fi
done
if test "$not_done"; then
if test "$not_done"
= 1
; then
FPTOOLS_IN_SCOPE(end asm("end"),end,fptools_cv_end_of_data);
if test "$fptools_cv_end_of_data" = yes; then
AC_DEFINE(DATA_SECTION_END_MARKER, end asm("end"))
...
...
Write
Preview
Supports
Markdown
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