Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 142 for GCCGO (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test/README.md

    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
  7. test/fixedbugs/issue23870.go

    // compile
    
    // Copyright 2022 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.
    
    // Crashed gccgo.
    
    package p
    
    var F func() [0]struct{
    	A int
    }
    
    var i int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:32:27 UTC 2022
    - 265 bytes
    - Viewed (0)
  8. test/fixedbugs/issue23868.go

    // compile
    
    // Copyright 2022 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.
    
    // Crashed gccgo.
    
    package p
    
    var F func([0]int) int
    var G func() [0]int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 03:32:04 UTC 2022
    - 274 bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    }
    
    // gccgoToSymbol converts a name to a mangled symbol for gccgo.
    func gccgoToSymbol(ppath string) string {
    	if gccgoMangler == nil {
    		var err error
    		cmd := os.Getenv("GCCGO")
    		if cmd == "" {
    			cmd, err = exec.LookPath("gccgo")
    			if err != nil {
    				fatalf("unable to locate gccgo: %v", err)
    			}
    		}
    		gccgoMangler, err = pkgpath.ToSymbolFunc(cmd, *objDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue8828.go

    // Copyright 2014 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.
    
    //go:build cgo
    
    // Issue 8828: compiling a file with -compiler=gccgo fails if a .c file
    // has the same name as compiled directory.
    
    package cgotest
    
    import "cmd/cgo/internal/test/issue8828"
    
    func p() {
    	issue8828.Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 382 bytes
    - Viewed (0)
Back to top