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
bec42276
Commit
bec42276
authored
May 14, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r981
parent
8d53f193
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
gcc/cccp.c
+11
-1
No files found.
gcc/cccp.c
View file @
bec42276
...
@@ -524,6 +524,10 @@ static struct file_name_list *dont_repeat_files = 0;
...
@@ -524,6 +524,10 @@ static struct file_name_list *dont_repeat_files = 0;
around the entire contents, and ->control_macro gives the macro name. */
around the entire contents, and ->control_macro gives the macro name. */
static
struct
file_name_list
*
all_include_files
=
0
;
static
struct
file_name_list
*
all_include_files
=
0
;
/* Directory prefix that should replace `/usr' in the standard
include file directories. */
static
char
*
include_prefix
;
/* Global list of strings read in from precompiled files. This list
/* Global list of strings read in from precompiled files. This list
is kept in the order the strings are read in, with new strings being
is kept in the order the strings are read in, with new strings being
added at the end through stringlist_tailp. We use this list to output
added at the end through stringlist_tailp. We use this list to output
...
@@ -1002,6 +1006,12 @@ main (argc, argv)
...
@@ -1002,6 +1006,12 @@ main (argc, argv)
else
else
pend_files
[
i
]
=
argv
[
i
+
1
],
i
++
;
pend_files
[
i
]
=
argv
[
i
+
1
],
i
++
;
}
}
if
(
!
strcmp
(
argv
[
i
],
"-iprefix"
))
{
if
(
i
+
1
==
argc
)
fatal
(
"Filename missing after -iprefix option"
);
else
include_prefix
=
argv
[
++
i
];
}
/* Add directory to end of path for includes. */
/* Add directory to end of path for includes. */
if
(
!
strcmp
(
argv
[
i
],
"-idirafter"
))
{
if
(
!
strcmp
(
argv
[
i
],
"-idirafter"
))
{
struct
file_name_list
*
dirtmp
;
struct
file_name_list
*
dirtmp
;
...
@@ -1511,7 +1521,7 @@ main (argc, argv)
...
@@ -1511,7 +1521,7 @@ main (argc, argv)
tack on the standard include file dirs to the specified list */
tack on the standard include file dirs to the specified list */
if
(
!
no_standard_includes
)
{
if
(
!
no_standard_includes
)
{
struct
default_include
*
p
=
include_defaults
;
struct
default_include
*
p
=
include_defaults
;
char
*
specd_prefix
=
getenv
(
"GCC_EXEC_PREFIX"
)
;
char
*
specd_prefix
=
include_prefix
;
char
*
default_prefix
=
savestring
(
GCC_INCLUDE_DIR
);
char
*
default_prefix
=
savestring
(
GCC_INCLUDE_DIR
);
int
default_len
=
0
;
int
default_len
=
0
;
/* Remove the `include' from /usr/local/lib/gcc.../include. */
/* Remove the `include' from /usr/local/lib/gcc.../include. */
...
...
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