1
0
mirror of https://github.com/golang/go synced 2024-11-20 01:14:40 -07:00

http/cgi: pass down environment variables for irix and solaris

Used by gccgo.

R=bradfitz
CC=golang-dev
https://golang.org/cl/4435080
This commit is contained in:
Ian Lance Taylor 2011-04-29 10:38:07 -07:00
parent 95f544a199
commit 2e7d6729d4

View File

@ -36,7 +36,9 @@ var osDefaultInheritEnv = map[string][]string{
"darwin": []string{"DYLD_LIBRARY_PATH"},
"freebsd": []string{"LD_LIBRARY_PATH"},
"hpux": []string{"LD_LIBRARY_PATH", "SHLIB_PATH"},
"irix": []string{"LD_LIBRARY_PATH", "LD_LIBRARYN32_PATH", "LD_LIBRARY64_PATH"},
"linux": []string{"LD_LIBRARY_PATH"},
"solaris": []string{"LD_LIBRARY_PATH", "LD_LIBRARY_PATH_32", "LD_LIBRARY_PATH_64"},
"windows": []string{"SystemRoot", "COMSPEC", "PATHEXT", "WINDIR"},
}