* 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:
@@ -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
|
||||
|
Reference in New Issue
Block a user