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
233bd86d
Commit
233bd86d
authored
Sep 09, 1997
by
Jim Wilson
Committed by
Jim Wilson
Sep 09, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CYGWIN32 support.
* g77.c (pexecute, doit): Add checks for __CYGWIN32__. From-SVN: r15183
parent
8f3d79e0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
gcc/f/ChangeLog.egcs
+4
-0
gcc/f/g77.c
+3
-3
No files found.
gcc/f/ChangeLog.egcs
View file @
233bd86d
Tue Sep 9 13:20:40 1997 Jim Wilson <wilson@cygnus.com>
* g77.c (pexecute, doit): Add checks for __CYGWIN32__.
Wed Aug 27 20:32:03 1997 Jeffrey A Law (law@cygnus.com)
Wed Aug 27 20:32:03 1997 Jeffrey A Law (law@cygnus.com)
* top.c (ffe_decode_option): Turn on flag_move_all_moveables
* top.c (ffe_decode_option): Turn on flag_move_all_moveables
...
...
gcc/f/g77.c
View file @
233bd86d
...
@@ -979,7 +979,7 @@ pexecute (search_flag, program, argv, not_last)
...
@@ -979,7 +979,7 @@ pexecute (search_flag, program, argv, not_last)
#endif
#endif
#if
!defined(__MSDOS__) && !defined(OS2) && !defined(_WIN32
)
#if
(!defined(__MSDOS__) && !defined(OS2) && !defined(_WIN32)) || defined (__CYGWIN32__
)
static
int
static
int
pexecute
(
search_flag
,
program
,
argv
,
not_last
)
pexecute
(
search_flag
,
program
,
argv
,
not_last
)
...
@@ -1084,7 +1084,7 @@ pexecute (search_flag, program, argv, not_last)
...
@@ -1084,7 +1084,7 @@ pexecute (search_flag, program, argv, not_last)
}
}
#endif
/* OS2 */
#endif
/* OS2 */
#if defined(_WIN32)
#if defined(_WIN32)
&& !defined (__CYGWIN32__)
static
int
static
int
pexecute
(
search_flag
,
program
,
argv
,
not_last
)
pexecute
(
search_flag
,
program
,
argv
,
not_last
)
...
@@ -1109,7 +1109,7 @@ doit (char *program, char **argv)
...
@@ -1109,7 +1109,7 @@ doit (char *program, char **argv)
#ifdef __MSDOS__
#ifdef __MSDOS__
status
=
pid
;
status
=
pid
;
#else
#else
#if
def _WIN32
#if
defined(_WIN32) && !defined(__CYGWIN32__)
pid
=
cwait
(
&
status
,
pid
,
WAIT_CHILD
);
pid
=
cwait
(
&
status
,
pid
,
WAIT_CHILD
);
#else
#else
pid
=
wait
(
&
status
);
pid
=
wait
(
&
status
);
...
...
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