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
2966b437
Commit
2966b437
authored
Dec 30, 1998
by
Geoffrey Noer
Committed by
Jeff Law
Dec 30, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386/xm-cygwin.h: change DIR_SEPARATOR to forward slash.
From-SVN: r24445
parent
2c74fb2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
gcc/ChangeLog
+4
-0
gcc/config/i386/xm-cygwin.h
+8
-3
No files found.
gcc/ChangeLog
View file @
2966b437
Wed
Dec
30
22
:
50
:
13
1998
Geoffrey
Noer
<
noer
@cygnus
.
com
>
*
i386
/
xm
-
cygwin
.
h
:
change
DIR_SEPARATOR
to
forward
slash
.
1998
-
12
-
30
Andreas
Schwab
<
schwab
@issan
.
cs
.
uni
-
dortmund
.
de
>
*
loop
.
c
(
check_dbra_loop
)
:
While
reversing
the
loop
,
if
the
...
...
gcc/config/i386/xm-cygwin.h
View file @
2966b437
...
...
@@ -27,11 +27,16 @@ Boston, MA 02111-1307, USA. */
#define HAVE_RINDEX 1
#define HAVE_INDEX 1
/* Even though we support "/", allow "\" since everybody tests both. */
#define DIR_SEPARATOR '\\'
/* We support both "/" and "\" since everybody tests both but we
default to "/". This is important because if gcc produces Win32
paths containing backslashes, make and configure may treat the
backslashes as escape characters. Many Win32 programs use forward
slashes so using a forward slash shouldn't be problematic from the
perspective of wanting gcc to produce native Win32 paths. */
#define DIR_SEPARATOR '/'
/* If we allow both '/' and '\' as dir separators, then
allow both unix and win32 PATH syntax */
allow both unix and win32 PATH syntax
.
*/
#undef GET_ENV_PATH_LIST
#define GET_ENV_PATH_LIST(VAR,NAME) \
do { \
...
...
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