Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for extldflags (2.07 sec)

  1. src/cmd/link/internal/ld/main.go

    )
    
    func init() {
    	flag.Var(&rpath, "r", "set the ELF dynamic linker search `path` to dir1:dir2:...")
    	flag.Var(&flagExtld, "extld", "use `linker` when linking in external mode")
    	flag.Var(&flagExtldflags, "extldflags", "pass `flags` to external linker")
    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. Makefile.core.mk

    fmt: format-go format-python tidy-go
    
    ifeq ($(DEBUG),1)
    # gobuild script uses custom linker flag to set the variables.
    RELEASE_LDFLAGS=''
    else
    RELEASE_LDFLAGS='-extldflags -static -s -w'
    endif
    
    # List of all binaries to build
    # We split the binaries into "agent" binaries and standard ones. This corresponds to build "agent".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    	cmd.Dir = tmpdir
    
    	// Add enough arguments to push cmd/link into creating a response file.
    	var sb strings.Builder
    	sb.WriteString(`'-ldflags=all="-extldflags=`)
    	for i := 0; i < sys.ExecArgLengthLimit/len("-g"); i++ {
    		if i > 0 {
    			sb.WriteString(" ")
    		}
    		sb.WriteString("-g")
    	}
    	sb.WriteString(`"'`)
    	cmd = testenv.CleanCmdEnv(cmd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    the host linker. The default value for the host linker is $CC, split
    into fields, or else "gcc". The specific host linker command line can
    be overridden using command line flags: cmd/link -extld=clang
    -extldflags='-ggdb -O3'. If any package in a build includes a .cc or
    other file compiled by the C++ compiler, the go tool will use the
    -extld option to set the host linker to the C++ compiler.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. operator/pkg/manifest/shared.go

    	logger clog.Logger,
    ) (*iopv1alpha1.IstioOperator, error) {
    	extraFlags := make([]string, 0)
    	if manifestsPath != "" {
    		extraFlags = append(extraFlags, fmt.Sprintf("installPackagePath=%s", manifestsPath))
    	}
    	if revision != "" {
    		extraFlags = append(extraFlags, fmt.Sprintf("revision=%s", revision))
    	}
    	_, mergedIOP, err := OverlayYAMLStrings(profile, userIOPStr, extraFlags, false, client, logger)
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    		mustNotSelect(t, mustGetLabels(t, pdbRev, "spec.selector.matchLabels"), podLabels15)
    	})
    }
    
    // TestLDFlags checks whether building mesh command with
    // -ldflags "-X istio.io/istio/pkg/version.buildHub=myhub -X istio.io/istio/pkg/version.buildVersion=mytag"
    // results in these values showing up in a generated manifest.
    func TestLDFlags(t *testing.T) {
    	tmpHub, tmpTag := version.DockerInfo.Hub, version.DockerInfo.Tag
    	defer func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top