Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 271 for GCCGO (0.03 sec)

  1. 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)
  2. test/fixedbugs/bug485.go

    // run
    
    // 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.
    
    // Gccgo chose the wrong embedded method when the same type appeared
    // at different levels and the correct choice was not the first
    // appearance of the type in a depth-first search.
    
    package main
    
    type embedded string
    
    func (s embedded) val() string {
    	return string(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 624 bytes
    - Viewed (0)
  3. test/fixedbugs/bug274.go

    // terminated with a semicolon. No semicolon is present for the labeled
    // statements and because the last token is a colon ":", no semicolon is
    // inserted automatically.
    //
    // Both gccgo and gofmt correctly refuse this program as is and accept it
    // when the semicolons are present.
    
    // This is a test case for issue 777 ( https://golang.org/issue/777 ).
    
    package main
    
    func main() {
    	switch 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 888 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. test/fixedbugs/issue4618.go

    func main() {
    	nf := testing.AllocsPerRun(100, F)
    	ng := testing.AllocsPerRun(100, G)
    	if int(nf) > 1 {
    		fmt.Printf("AllocsPerRun(100, F) = %v, want 1\n", nf)
    		os.Exit(1)
    	}
    	if int(ng) != 0 && (runtime.Compiler != "gccgo" || int(ng) != 1) {
    		fmt.Printf("AllocsPerRun(100, G) = %v, want 0\n", ng)
    		os.Exit(1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 652 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 (1)
  8. test/fixedbugs/bug500.go

    // run
    
    // Copyright 2016 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.
    
    // Gccgo generated incorrect GC info when a global variable was
    // initialized to a slice of a value containing pointers.  The initial
    // backing array for the slice was allocated in the .data section,
    // which is fine, but the backing array was not registered as a GC
    // root.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 21:29:37 UTC 2016
    - 694 bytes
    - Viewed (0)
  9. test/fixedbugs/issue34577.go

    // compiledir
    
    // 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.
    
    // Issue 34577: gccgo compiler error emitting export data
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 17:26:20 UTC 2019
    - 250 bytes
    - Viewed (0)
  10. test/fixedbugs/bug432.go

    // compile
    
    // Copyright 2012 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.
    
    // gccgo crashed compiling this.
    
    package p
    
    var v struct{ I }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 30 15:42:21 UTC 2012
    - 255 bytes
    - Viewed (0)
Back to top