Commit 2966b437 by Geoffrey Noer Committed by Jeff Law

* i386/xm-cygwin.h: change DIR_SEPARATOR to forward slash.

From-SVN: r24445
parent 2c74fb2b
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
......
......@@ -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 { \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment