Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LIBRARY_PATH (0.28 sec)

  1. src/cmd/go/internal/vcweb/script.go

    		"DYLD_LIBRARY_PATH", // must be preserved on macOS systems to find shared libraries
    		"LD_LIBRARY_PATH",   // must be preserved on Unix systems to find shared libraries
    		"LIBRARY_PATH",      // allow override of non-standard static library paths
    		"PYTHONPATH",        // may be needed by hg to find imported modules
    	} {
    		if v, ok := os.LookupEnv(k); ok {
    			env = append(env, k+"="+v)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    	"WINDIR",             // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    	"C_INCLUDE_PATH",     // allow override non-standard include paths
    	"CC",                 // don't lose user settings when invoking cgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top