* autoload.cc (LoadDllprime): Scrap use of .linkonce and just use an ifdef

guard to load .foo_init into data segment.
* dcrt0.cc (initial_env): Allow colon or space as CYGWIN_DEBUG separator for
consistency.
This commit is contained in:
Christopher Faylor
2005-03-10 14:41:50 +00:00
parent 35b4534efe
commit 491e84c601
3 changed files with 15 additions and 3 deletions

View File

@@ -552,7 +552,7 @@ initial_env ()
len = GetModuleFileName (NULL, buf1, CYG_MAX_PATH);
strlwr (buf1);
strlwr (buf);
char *p = strchr (buf, ':');
char *p = strpbrk (buf, ":=");
if (!p)
p = (char *) "gdb.exe -nw";
else