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
e6157ab4
Commit
e6157ab4
authored
31 years ago
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): If -v, print header search dir list.
From-SVN: r5087
parent
d3ab9753
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
gcc/cccp.c
+15
-0
No files found.
gcc/cccp.c
View file @
e6157ab4
...
...
@@ -998,6 +998,8 @@ main (argc, argv)
/* Non-0 means don't output the preprocessed program. */
int
inhibit_output
=
0
;
/* Non-0 means -v, so print the full set of include dirs. */
int
verbose
=
0
;
/* File name which deps are being written to.
This is 0 if deps are being written to stdout. */
...
...
@@ -1329,6 +1331,7 @@ main (argc, argv)
TARGET_VERSION
;
#endif
fprintf
(
stderr
,
"
\n
"
);
verbose
=
1
;
break
;
case
'H'
:
...
...
@@ -1704,6 +1707,18 @@ main (argc, argv)
if
(
first_system_include
==
0
)
first_system_include
=
after_include
;
/* With -v, print the list of dirs to search. */
if
(
verbose
)
{
struct
file_name_list
*
p
;
fprintf
(
stderr
,
"#include
\"
...
\"
search starts here:
\n
"
);
for
(
p
=
include
;
p
;
p
=
p
->
next
)
{
if
(
p
==
first_bracket_include
)
fprintf
(
stderr
,
"#include <...> search starts here:
\n
"
);
fprintf
(
stderr
,
" %s
\n
"
,
p
->
fname
);
}
fprintf
(
stderr
,
"End of search list.
\n
"
);
}
/* Scan the -imacros files before the main input.
Much like #including them, but with no_output set
so that only their macro definitions matter. */
...
...
This diff is collapsed.
Click to expand it.
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