Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DYLD_LIBRARY_PATH (0.23 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

            String runScriptText =
                  "#!/bin/sh"
                + "\nAPP_BASE_NAME=`dirname \"$0\"`"
                + "\nDYLD_LIBRARY_PATH=\"$APP_BASE_NAME/lib\""
                + "\nexport DYLD_LIBRARY_PATH"
                + "\nLD_LIBRARY_PATH=\"$APP_BASE_NAME/lib\""
                + "\nexport LD_LIBRARY_PATH"
                + "\nexec \"$APP_BASE_NAME/lib/" + executable.getName() + "\" \"$@\""
                + "\n";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/vcweb/script.go

    		"WINDIR",            // must be preserved on Windows to be able to run PowerShell command; golang.org/issue/30711
    		"ComSpec",           // must be preserved on Windows to be able to run Batch files; golang.org/issue/56555
    		"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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  3. src/net/http/cgi/host.go

    	"golang.org/x/net/http/httpguts"
    )
    
    var trailingPort = regexp.MustCompile(`:([0-9]+)$`)
    
    var osDefaultInheritEnv = func() []string {
    	switch runtime.GOOS {
    	case "darwin", "ios":
    		return []string{"DYLD_LIBRARY_PATH"}
    	case "android", "linux", "freebsd", "netbsd", "openbsd":
    		return []string{"LD_LIBRARY_PATH"}
    	case "hpux":
    		return []string{"LD_LIBRARY_PATH", "SHLIB_PATH"}
    	case "irix":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top