Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
74ee1642
Commit
74ee1642
authored
Jun 08, 2004
by
Per Bothner
Committed by
Per Bothner
Jun 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: New --enable-mapped-location sets USE_MAPPED_LOCATION.
From-SVN: r82809
parent
898c05b8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
1 deletions
+34
-1
gcc/ChangeLog
+4
-0
gcc/config.in
+3
-0
gcc/configure
+18
-1
gcc/configure.ac
+9
-0
No files found.
gcc/ChangeLog
View file @
74ee1642
2004-06-08 Per Bothner <per@bothner.com>
* configure.ac: New --enable-mapped-location sets USE_MAPPED_LOCATION.
2004-06-08 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2004-06-08 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* toplev.c (floor_log2_wide): Correct casts for 64-bit hosts.
* toplev.c (floor_log2_wide): Correct casts for 64-bit hosts.
...
...
gcc/config.in
View file @
74ee1642
...
@@ -542,6 +542,9 @@
...
@@ -542,6 +542,9 @@
/* Define if gcc should use -lunwind. */
/* Define if gcc should use -lunwind. */
#undef USE_LIBUNWIND_EXCEPTIONS
#undef USE_LIBUNWIND_EXCEPTIONS
/* Define if location_t is fileline integer cookie. */
#undef USE_MAPPED_LOCATION
/* Define to be the last portion of registry key on windows hosts. */
/* Define to be the last portion of registry key on windows hosts. */
#undef WIN32_REGISTRY_KEY
#undef WIN32_REGISTRY_KEY
...
...
gcc/configure
View file @
74ee1642
...
@@ -869,6 +869,7 @@ Optional Features:
...
@@ -869,6 +869,7 @@ Optional Features:
enable only specific categories of checks.
enable only specific categories of checks.
Categories are: misc,tree,rtl,rtlflag,gc,gcac,fold;
Categories are: misc,tree,rtl,rtlflag,gc,gcac,fold;
default is misc,tree,gc,rtlflag
default is misc,tree,gc,rtlflag
--enable-mapped-location location_t is fileline integer cookie
--enable-coverage=LEVEL
--enable-coverage=LEVEL
enable compiler\'s code coverage collection.
enable compiler\'s code coverage collection.
Use to measure compiler performance and locate
Use to measure compiler performance and locate
...
@@ -4583,6 +4584,22 @@ fi
...
@@ -4583,6 +4584,22 @@ fi
# Check whether --enable-mapped-location or --disable-mapped-location was given.
if
test
"
${
enable_mapped_location
+set
}
"
=
set
;
then
enableval
=
"
$enable_mapped_location
"
else
enable_mapped_location
=
no
fi
;
if
test
"
$enable_mapped_location
"
=
yes
;
then
cat
>>
confdefs.h
<<
\
_ACEOF
#define USE_MAPPED_LOCATION 1
_ACEOF
fi
# Enable code coverage collection
# Enable code coverage collection
# Check whether --enable-coverage or --disable-coverage was given.
# Check whether --enable-coverage or --disable-coverage was given.
if
test
"
${
enable_coverage
+set
}
"
=
set
;
then
if
test
"
${
enable_coverage
+set
}
"
=
set
;
then
...
@@ -5234,7 +5251,7 @@ if test "${gcc_cv_prog_makeinfo_modern+set}" = set; then
...
@@ -5234,7 +5251,7 @@ if test "${gcc_cv_prog_makeinfo_modern+set}" = set; then
else
else
ac_prog_version
=
`
$MAKEINFO
--version
2>&1 |
ac_prog_version
=
`
$MAKEINFO
--version
2>&1 |
sed
-n
's/^.*GNU texinfo.* \([0-9][0-9.]*\).*$/\1/p'
`
sed
-n
's/^.*GNU texinfo.* \([0-9][0-9.]*\).*$/\1/p'
`
echo
"configure:52
37
: version of makeinfo is
$ac_prog_version
"
>
&5
echo
"configure:52
54
: version of makeinfo is
$ac_prog_version
"
>
&5
case
$ac_prog_version
in
case
$ac_prog_version
in
''
)
gcc_cv_prog_makeinfo_modern
=
no
;;
''
)
gcc_cv_prog_makeinfo_modern
=
no
;;
4.[2-9]
*
)
4.[2-9]
*
)
...
...
gcc/configure.ac
View file @
74ee1642
...
@@ -513,6 +513,15 @@ fi
...
@@ -513,6 +513,15 @@ fi
AC_SUBST(valgrind_path_defines)
AC_SUBST(valgrind_path_defines)
AC_SUBST(valgrind_command)
AC_SUBST(valgrind_command)
AC_ARG_ENABLE(mapped-location,
[ --enable-mapped-location location_t is fileline integer cookie],,
enable_mapped_location=no)
if test "$enable_mapped_location" = yes ; then
AC_DEFINE(USE_MAPPED_LOCATION, 1,
[Define if location_t is fileline integer cookie.])
fi
# Enable code coverage collection
# Enable code coverage collection
AC_ARG_ENABLE(coverage,
AC_ARG_ENABLE(coverage,
[ --enable-coverage[=LEVEL]
[ --enable-coverage[=LEVEL]
...
...
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