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
0824d924
Commit
0824d924
authored
Feb 27, 2015
by
Kai Tietz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert change
From-SVN: r221058
parent
e5165b60
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
28 deletions
+0
-28
libgcc/ChangeLog
+0
-13
libgcc/config.in
+0
-3
libgcc/configure
+0
-0
libgcc/configure.ac
+0
-6
libgcc/libgcov-util.c
+0
-6
No files found.
libgcc/ChangeLog
View file @
0824d924
2015
-
02
-
27
Kai
Tietz
<
ktietz
@
redhat
.
com
>
PR
target
/
65038
*
config
.
in
:
Regenerated
.
*
configure
:
Likewise
.
*
configure
.
ac
(
AC_HEADER_STDC
):
Add
explicit
.
(
AC_CHECK_HEADERS
):
Check
for
default
headers
plus
for
ftw
.
h
one
.
*
libgcov
-
util
.
c
(
gcov_read_profile_dir
):
Disable
use
of
ftw
-
function
,
if
header
not
found
.
(
ftw_read_file
):
Don
't translate if ftw header isn'
t
present
.
2015
-
02
-
23
Thomas
Schwinge
<
thomas
@
codesourcery
.
com
>
PR
target
/
65181
...
...
libgcc/config.in
View file @
0824d924
...
...
@@ -3,9 +3,6 @@
/* Define to 1 if the target assembler supports thread-local storage. */
#undef HAVE_CC_TLS
/* Define to 1 if you have the <ftw.h> header file. */
#undef HAVE_FTW_H
/* Define if _Unwind_GetIPInfo is available. */
#undef HAVE_GETIPINFO
...
...
libgcc/configure
View file @
0824d924
This diff is collapsed.
Click to expand it.
libgcc/configure.ac
View file @
0824d924
...
...
@@ -47,12 +47,6 @@ AC_SUBST(libgcc_topdir)
AC_CONFIG_AUX_DIR($libgcc_topdir)
AC_CONFIG_HEADER(auto-target.h:config.in)
AC_CHECK_HEADERS(inttypes.h \
stdint.h stdlib.h \
ftw.h unistd.h sys/stat.h sys/types.h \
string.h strings.h memory.h)
AC_HEADER_STDC
AC_ARG_ENABLE(shared,
[ --disable-shared don't provide a shared libgcc],
[
...
...
libgcc/libgcov-util.c
View file @
0824d924
...
...
@@ -52,9 +52,7 @@ void gcov_set_verbose (void)
#include "obstack.h"
#include <unistd.h>
#ifdef HAVE_FTW_H
#include <ftw.h>
#endif
static
void
tag_function
(
unsigned
,
unsigned
);
static
void
tag_blocks
(
unsigned
,
unsigned
);
...
...
@@ -382,7 +380,6 @@ read_gcda_file (const char *filename)
return
obj_info
;
}
#ifdef HAVE_FTW_H
/* This will be called by ftw(). It opens and read a gcda file FILENAME.
Return a non-zero value to stop the tree walk. */
...
...
@@ -420,7 +417,6 @@ ftw_read_file (const char *filename,
return
0
;
}
#endif
/* Initializer for reading a profile dir. */
...
...
@@ -455,9 +451,7 @@ gcov_read_profile_dir (const char* dir_name, int recompute_summary ATTRIBUTE_UNU
fnotice
(
stderr
,
"%s is not a directory
\n
"
,
dir_name
);
return
NULL
;
}
#ifdef HAVE_FTW_H
ftw
(
"."
,
ftw_read_file
,
50
);
#endif
ret
=
chdir
(
pwd
);
free
(
pwd
);
...
...
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