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
460dcab4
Commit
460dcab4
authored
Jun 14, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(find_a_file): Try EXECUTABLE_SUFFIX first, then file without the
suffix. From-SVN: r7459
parent
d008e26c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
23 deletions
+37
-23
gcc/gcc.c
+37
-23
No files found.
gcc/gcc.c
View file @
460dcab4
...
...
@@ -1626,19 +1626,13 @@ find_a_file (pprefix, name, mode)
{
if
(
machine_suffix
)
{
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
machine_suffix
);
strcat
(
temp
,
name
);
if
(
access
(
temp
,
mode
)
==
0
)
{
if
(
pl
->
used_flag_ptr
!=
0
)
*
pl
->
used_flag_ptr
=
1
;
return
temp
;
}
/* Some systems have a suffix for executable files.
So try appending that. */
So try appending that
first
. */
if
(
file_suffix
[
0
]
!=
0
)
{
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
machine_suffix
);
strcat
(
temp
,
name
);
strcat
(
temp
,
file_suffix
);
if
(
access
(
temp
,
mode
)
==
0
)
{
...
...
@@ -1647,13 +1641,10 @@ find_a_file (pprefix, name, mode)
return
temp
;
}
}
}
/* Certain prefixes are tried with just the machine type,
not the version. This is used for finding as, ld, etc. */
if
(
just_machine_suffix
&&
pl
->
require_machine_suffix
==
2
)
{
/* Now try just the name. */
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
just_
machine_suffix
);
strcat
(
temp
,
machine_suffix
);
strcat
(
temp
,
name
);
if
(
access
(
temp
,
mode
)
==
0
)
{
...
...
@@ -1661,10 +1652,19 @@ find_a_file (pprefix, name, mode)
*
pl
->
used_flag_ptr
=
1
;
return
temp
;
}
}
/* Certain prefixes are tried with just the machine type,
not the version. This is used for finding as, ld, etc. */
if
(
just_machine_suffix
&&
pl
->
require_machine_suffix
==
2
)
{
/* Some systems have a suffix for executable files.
So try appending that. */
So try appending that
first
. */
if
(
file_suffix
[
0
]
!=
0
)
{
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
just_machine_suffix
);
strcat
(
temp
,
name
);
strcat
(
temp
,
file_suffix
);
if
(
access
(
temp
,
mode
)
==
0
)
{
...
...
@@ -1673,12 +1673,9 @@ find_a_file (pprefix, name, mode)
return
temp
;
}
}
}
/* Certain prefixes can't be used without the machine suffix
when the machine or version is explicitly specified. */
if
(
!
pl
->
require_machine_suffix
)
{
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
just_machine_suffix
);
strcat
(
temp
,
name
);
if
(
access
(
temp
,
mode
)
==
0
)
{
...
...
@@ -1686,10 +1683,18 @@ find_a_file (pprefix, name, mode)
*
pl
->
used_flag_ptr
=
1
;
return
temp
;
}
}
/* Certain prefixes can't be used without the machine suffix
when the machine or version is explicitly specified. */
if
(
!
pl
->
require_machine_suffix
)
{
/* Some systems have a suffix for executable files.
So try appending that. */
So try appending that
first
. */
if
(
file_suffix
[
0
]
!=
0
)
{
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
name
);
strcat
(
temp
,
file_suffix
);
if
(
access
(
temp
,
mode
)
==
0
)
{
...
...
@@ -1698,6 +1703,15 @@ find_a_file (pprefix, name, mode)
return
temp
;
}
}
strcpy
(
temp
,
pl
->
prefix
);
strcat
(
temp
,
name
);
if
(
access
(
temp
,
mode
)
==
0
)
{
if
(
pl
->
used_flag_ptr
!=
0
)
*
pl
->
used_flag_ptr
=
1
;
return
temp
;
}
}
}
...
...
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