Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 271 for GCCGO (0.03 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/gccgo.go

    // Copyright 2015 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 gccgo && !aix && !hurd
    
    package unix
    
    import "syscall"
    
    // We can't use the gc-syntax .s files for gccgo. On the plus side
    // much of the functionality can be written directly in Go.
    
    func realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r uintptr)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/depBase/gccgo.go

    // 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.
    
    //go:build gccgo
    
    package depBase
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 222 bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/gccgo.go

    	"cmd/go/internal/fsys"
    	"cmd/go/internal/load"
    	"cmd/go/internal/str"
    	"cmd/internal/pkgpath"
    )
    
    // The Gccgo toolchain.
    
    type gccgoToolchain struct{}
    
    var GccgoName, GccgoBin string
    var gccgoErr error
    
    func init() {
    	GccgoName = cfg.Getenv("GCCGO")
    	if GccgoName == "" {
    		GccgoName = "gccgo"
    	}
    	GccgoBin, gccgoErr = cfg.LookPath(GccgoName)
    }
    
    func (gccgoToolchain) compiler() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/test/issue9400/gccgo.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build gccgo
    
    package issue9400
    
    import (
    	"runtime"
    	"sync/atomic"
    )
    
    // The test for the gc compiler resets the stack pointer so that the
    // stack gets modified.  We don't have a way to do that for gccgo
    // without writing more assembly code, which we haven't bothered to
    // do.  So this is not much of a test.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 612 bytes
    - Viewed (0)
  5. src/internal/goroot/gccgo.go

    // Copyright 2018 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 gccgo
    
    package goroot
    
    import (
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // IsStandardPackage reports whether path is a standard package,
    // given goroot and compiler.
    func IsStandardPackage(goroot, compiler, path string) bool {
    	switch compiler {
    	case "gc":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 758 bytes
    - Viewed (0)
  6. src/go/build/gccgo.go

    // Copyright 2018 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 gccgo
    
    package build
    
    import "runtime"
    
    // getToolDir returns the default value of ToolDir.
    func getToolDir() string {
    	return envOr("GCCGOTOOLDIR", runtime.GCCGOTOOLDIR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 344 bytes
    - Viewed (0)
  7. src/cmd/dist/buildtag_test.go

    	x       string
    	matched bool
    	err     error
    }{
    	{"gc", true, nil},
    	{"gccgo", false, nil},
    	{"!gc", false, nil},
    	{"gc && gccgo", false, nil},
    	{"gc || gccgo", true, nil},
    	{"gc || (gccgo && !gccgo)", true, nil},
    	{"gc && (gccgo || !gccgo)", true, nil},
    	{"!(gc && (gccgo || !gccgo))", false, nil},
    	{"gccgo || gc", true, nil},
    	{"!(!(!(gccgo || gc)))", false, nil},
    	{"compiler_bootstrap", false, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 25 00:02:52 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_s390x.go

    func stfle() facilityList     { panic("not implemented for gccgo") }
    func kmQuery() queryResult    { panic("not implemented for gccgo") }
    func kmcQuery() queryResult   { panic("not implemented for gccgo") }
    func kmctrQuery() queryResult { panic("not implemented for gccgo") }
    func kmaQuery() queryResult   { panic("not implemented for gccgo") }
    func kimdQuery() queryResult  { panic("not implemented for gccgo") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_cache_link.txt

    go build -o $devnull -x main.go
    stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    # ... and then the linker again ...
    go build -o $devnull -x main.go
    ! stderr '(compile|gccgo)( |\.exe).*main\.go'
    stderr '(link|gccgo)( |\.exe)'
    
    # ... but the output binary can serve as a cache.
    go build -o main$GOEXE -x main.go
    stderr '(link|gccgo)( |\.exe)'
    go build -o main$GOEXE -x main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 644 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/gccgo_link_c.txt

    # cmd/cgo: undefined reference when linking a C-library using gccgo
    
    [!cgo] skip
    [!exec:gccgo] skip
    [cross] skip  # gccgo can't necessarily cross-compile, so don't assume it will reach the step where we expect it to fail
    
    ! go build -x -compiler gccgo
    stderr 'gccgo.*\-L [^ ]*alibpath \-lalib' # make sure that Go-inline "#cgo LDFLAGS:" ("-L alibpath -lalib") passed to gccgo linking stage
    ! stderr 'gccgo.*-lalib.*-lalib' # make sure -lalib is only passed once
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:38:51 UTC 2023
    - 617 bytes
    - Viewed (0)
Back to top