Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lchflags (0.18 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. Makefile

    	@echo "Building minio binary to './minio'"
    	@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
    
    hotfix-vars:
    	$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. doc/next/5-toolchain.md

    a cost of an additional 0.1% text and binary size.  This is currently only implemented
    on 386 and amd64 because it has not shown an improvement on other platforms.
    Hot block alignment can be disabled with `-gcflags=[<packages>=]-d=alignhot=0`
    
    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/help/helpdoc.go

    		C code.
    	CGO_CFLAGS_ALLOW
    		A regular expression specifying additional flags to allow
    		to appear in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CFLAGS_DISALLOW
    		A regular expression specifying flags that must be disallowed
    		from appearing in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top