Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 96 for GCCGO (0.05 sec)

  1. src/cmd/go/testdata/script/cover_cgo_extra_test.txt

    [short] skip
    [!cgo] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test coverage on cgo code. This test case has an external
    # test that tests the code and an in-package test file with
    # no test cases.
    
    go test -short -cover cgocover3
    stdout  'coverage:.*[1-9][0-9.]+%'
    ! stderr '[^0-9]0\.0%'
    
    -- go.mod --
    module cgocover3
    
    go 1.16
    -- p.go --
    package p
    
    /*
    void
    f(void)
    {
    }
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 584 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_profile.txt

    [compiler:gccgo] skip 'gccgo has no standard packages'
    [short] skip
    
    # Check go test -cpuprofile creates errors.test
    go test -cpuprofile errors.prof errors
    exists -exec errors.test$GOEXE
    
    # Check go test -cpuprofile -o myerrors.test creates errors.test
    go test -cpuprofile errors.prof -o myerrors.test$GOEXE errors
    exists -exec myerrors.test$GOEXE
    
    # Check go test -mutexprofile creates errors.test
    go test -mutexprofile errors.prof errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 637 bytes
    - Viewed (0)
  3. src/cmd/go/internal/tool/tool.go

    		// If it's windows, don't show the .exe suffix.
    		name = strings.TrimSuffix(strings.ToLower(name), cfg.ToolExeSuffix())
    
    		// The tool directory used by gccgo will have other binaries
    		// in addition to go tools. Only display go tools here.
    		if cfg.BuildToolchainName == "gccgo" && !isGccgoTool(name) {
    			continue
    		}
    		fmt.Println(name)
    	}
    }
    
    func impersonateDistList(args []string) (handled bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. src/go/types/gccgosizes.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This is a copy of the file generated during the gccgo build process.
    // Last update 2019-01-22.
    
    package types
    
    var gccgoArchSizes = map[string]*StdSizes{
    	"386":         {4, 4},
    	"alpha":       {8, 8},
    	"amd64":       {8, 8},
    	"amd64p32":    {4, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue16016.go

    	switch v := vals[0].(type) {
    	case string:
    		_ = v
    	}
    }
    
    type R struct{ *T }
    
    type Q interface {
    	Foo([]interface{})
    }
    
    func main() {
    	var count = 10000
    	if runtime.Compiler == "gccgo" {
    		// On targets without split-stack libgo allocates
    		// a large stack for each goroutine. On 32-bit
    		// systems this test can run out of memory.
    		const intSize = 32 << (^uint(0) >> 63) // 32 or 64
    		if intSize < 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:39:06 UTC 2024
    - 877 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_cache_trimpath.txt

    env GO111MODULE=on
    
    # Set up fresh GOCACHE.
    env GOCACHE=$WORK/gocache
    mkdir $GOCACHE
    
    cd $WORK
    go build -o a.out
    
    # Varying -trimpath should cause a rebuild.
    go build -x -o a.out -trimpath
    stderr '(compile|gccgo)( |\.exe)'
    stderr 'link( |\.exe)'
    
    # Two distinct versions of the same module with identical content should
    # still be cached separately.
    # Verifies golang.org/issue/35412.
    go get example.com/stack@v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 865 bytes
    - Viewed (0)
  7. src/internal/cfg/cfg.go

    	CGO_CXXFLAGS
    	CGO_CXXFLAGS_ALLOW
    	CGO_CXXFLAGS_DISALLOW
    	CGO_ENABLED
    	CGO_FFLAGS
    	CGO_FFLAGS_ALLOW
    	CGO_FFLAGS_DISALLOW
    	CGO_LDFLAGS
    	CGO_LDFLAGS_ALLOW
    	CGO_LDFLAGS_DISALLOW
    	CXX
    	FC
    	GCCGO
    	GO111MODULE
    	GO386
    	GOAMD64
    	GOARCH
    	GOARM
    	GOARM64
    	GOBIN
    	GOCACHE
    	GOCACHEPROG
    	GOENV
    	GOEXE
    	GOEXPERIMENT
    	GOFLAGS
    	GOGCCFLAGS
    	GOHOSTARCH
    	GOHOSTOS
    	GOINSECURE
    	GOMIPS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 01:33:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/go/build/doc.go

    //
    // If DIR is a directory listed in the Go path, a package with
    // source in DIR/src/foo/bar can be imported as "foo/bar" and
    // has its compiled form installed to "DIR/pkg/GOOS_GOARCH/foo/bar.a"
    // (or, for gccgo, "DIR/pkg/gccgo/foo/libbar.a").
    //
    // The bin/ directory holds compiled commands.
    // Each command is named for its source directory, but only
    // using the final element, not the entire path. That is, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/syscall_aix_gccgo.go

    // the dependency between them. (See golang.org/issue/32102)
    // Moreover, this file will be used during the building of
    // gccgo's libgo and thus must not used a CGo method.
    
    //go:build aix && gccgo
    
    package cpu
    
    import (
    	"syscall"
    )
    
    //extern getsystemcfg
    func gccgoGetsystemcfg(label uint32) (r uint64)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 syscall.Errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 726 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cache_vet.txt

    env GO111MODULE=off
    
    [short] skip
    [GODEBUG:gocacheverify=1] skip
    [compiler:gccgo] skip  # gccgo has no standard packages
    
    # Start with a clean build cache:
    # test failures may be masked if the cache has just the right entries already.
    env GOCACHE=$WORK/cache
    
    # Run 'go vet os/user' once to warm up the cache.
    go vet os/user
    
    # Check that second vet reuses cgo-derived inputs.
    # The first command could be build instead of vet,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 721 bytes
    - Viewed (0)
Back to top