Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lchflags (0.19 sec)

  1. src/cmd/go/internal/work/exec.go

    			// -static -pie doesn't make sense, and causes link errors.
    			// Issue 26197.
    			n := make([]string, 0, len(ldflags)-1)
    			for _, flag := range ldflags {
    				if flag != "-static" {
    					n = append(n, flag)
    				}
    			}
    			ldflags = n
    		}
    	}
    	if err := b.gccld(a, objdir, dynobj, ldflags, linkobj); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		appendSetting("-gccgoflags", gccgoflags)
    	}
    	if gcflags := BuildGcflags.String(); gcflags != "" && cfg.BuildContext.Compiler == "gc" {
    		appendSetting("-gcflags", gcflags)
    	}
    	if ldflags := BuildLdflags.String(); ldflags != "" {
    		// https://go.dev/issue/52372: only include ldflags if -trimpath is not set,
    		// since it can include system paths through various linker flags (notably
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //		'cmd args /path/to/asm <arguments for asm>'.
    //		The TOOLEXEC_IMPORTPATH environment variable will be set,
    //		matching 'go list -f {{.ImportPath}}' for the package being built.
    //
    // The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a
    // space-separated list of arguments to pass to an underlying tool
    // during the build. To embed spaces in an element in the list, surround
    // it with either single or double quotes. The argument list may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg syscall (freebsd-arm), const TCP_VENDOR ideal-int
    pkg syscall (freebsd-arm), const TIOCTIMESTAMP = 1074820185
    pkg syscall (freebsd-arm), func Accept4(int, int) (int, Sockaddr, error)
    pkg syscall (freebsd-arm), func Fchflags(int, int) error
    pkg syscall (freebsd-arm), func FcntlFlock(uintptr, int, *Flock_t) error
    pkg syscall (freebsd-arm), func SendmsgN(int, []uint8, []uint8, Sockaddr, int) (int, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
Back to top