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
93ea10ba
Commit
93ea10ba
authored
Feb 10, 1999
by
Mumit Khan
Committed by
Jeff Law
Feb 10, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* collect2.c (collect_execute): Remove cygwin-specific code.
From-SVN: r25123
parent
ff2a6c32
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
gcc/ChangeLog
+4
-0
gcc/collect2.c
+0
-9
No files found.
gcc/ChangeLog
View file @
93ea10ba
Wed
Feb
10
10
:
05
:
23
1999
Mumit
Khan
<
khan
@xraylith
.
wisc
.
edu
>
*
collect2
.
c
(
collect_execute
)
:
Remove
cygwin
-
specific
code
.
Tue
Feb
9
17
:
27
:
29
GMT
1999
Nathan
Sidwell
<
nathan
@acm
.
org
>
*
system
.
h
(
_
,
N_
)
:
Remove
dummy
i18n
macros
.
...
...
gcc/collect2.c
View file @
93ea10ba
...
...
@@ -48,9 +48,6 @@ Boston, MA 02111-1307, USA. */
#include "demangle.h"
#include "obstack.h"
#include "intl.h"
#ifdef __CYGWIN__
#include <process.h>
#endif
/* Obstack allocation and deallocation routines. */
#define obstack_chunk_alloc xmalloc
...
...
@@ -1733,7 +1730,6 @@ collect_execute (prog, argv, redir)
if
(
argv
[
0
]
==
0
)
fatal
(
"cannot find `%s'"
,
prog
);
#ifndef __CYGWIN__
pid
=
vfork
();
if
(
pid
==
-
1
)
fatal_perror
(
VFORK_STRING
);
...
...
@@ -1752,11 +1748,6 @@ collect_execute (prog, argv, redir)
execvp
(
argv
[
0
],
argv
);
fatal_perror
(
"execvp %s"
,
prog
);
}
#else
pid
=
_spawnvp
(
_P_NOWAIT
,
argv
[
0
],
argv
);
if
(
pid
==
-
1
)
fatal
(
"spawnvp failed"
);
#endif
}
static
void
...
...
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