Commit 69a2e1dc authored by Russ Cox's avatar Russ Cox

gc: better windows detection

R=ken2
CC=golang-dev
https://golang.org/cl/944043
parent 8553b9c6
......@@ -1241,10 +1241,3 @@ int duintptr(Sym *s, int off, uint64 v);
int duintxx(Sym *s, int off, uint64 v, int wid);
void genembedtramp(Type*, Type*, Sym*);
int gen_as_init(Node*);
enum {
SysUnix = 1<<1,
SysWindows = 1<<2,
};
int systemtype(int);
......@@ -8,6 +8,8 @@
#include <ar.h>
extern int yychar;
int windows;
void lexfini(void);
void yytinit(void);
......@@ -81,7 +83,10 @@ main(int argc, char *argv[])
if(getwd(pathname, 999) == 0)
strcpy(pathname, "/???");
if(systemtype(SysWindows)) {
if(isalpha(pathname[0]) && pathname[1] == ':') {
// On Windows.
windows = 1;
// Canonicalize path by converting \ to / (Windows accepts both).
for(p=pathname; *p; p++)
if(*p == '\\')
......@@ -247,9 +252,9 @@ addidir(char* dir)
int
islocalname(Strlit *name)
{
if(systemtype(SysUnix) && name->len >= 1 && name->s[0] == '/')
if(!windows && name->len >= 1 && name->s[0] == '/')
return 1;
if(systemtype(SysWindows) && name->len >= 3 &&
if(windows && name->len >= 3 &&
isalpha(name->s[0]) && name->s[1] == ':' && name->s[2] == '/')
return 1;
if(name->len >= 2 && strncmp(name->s, "./", 2) == 0)
......@@ -1673,13 +1678,3 @@ mkpackage(char* pkgname)
outfile = smprint("%s.%c", namebuf, thechar);
}
}
int
systemtype(int sys)
{
#ifdef __MINGW32__
return sys&SysWindows;
#else
return sys&SysUnix;
#endif
}
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