Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for GCCGO (0.09 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/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)
  3. 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)
  4. 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)
  5. src/internal/goroot/gc.go

    func (gd *gccgoDirs) init() {
    	gccgo := os.Getenv("GCCGO")
    	if gccgo == "" {
    		gccgo = "gccgo"
    	}
    	bin, err := exec.LookPath(gccgo)
    	if err != nil {
    		return
    	}
    
    	allDirs, err := exec.Command(bin, "-print-search-dirs").Output()
    	if err != nil {
    		return
    	}
    	versionB, err := exec.Command(bin, "-dumpversion").Output()
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_trimpath.txt

    cmp -q paths-a.exe paths-b.exe
    
    
    # Same sequence of tests but with gccgo.
    # gccgo does not support builds in module mode.
    [!exec:gccgo] stop
    [cross] stop  # gccgo can't necessarily cross-compile
    env GOPATH=$WORK/a
    
    # A binary built with gccgo without -trimpath should contain the current
    # GOPATH and GOROOT.
    go build -compiler=gccgo -o paths-dbg.exe paths
    exec ./paths-dbg.exe paths-dbg.exe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue11656.go

    // doesn't go into the Go runtime.
    
    // wasm does not work, because the linear memory is not executable.
    
    // This test doesn't work on gccgo/GoLLVM, because they will not find
    // any unwind information for the artificial function, and will not be
    // able to unwind past that point.
    
    //go:build !windows && !wasm && !gccgo
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 700 bytes
    - Viewed (0)
  8. test/fixedbugs/issue11326b.go

    // run
    
    // Does not work with gccgo, which uses a smaller (but still permitted)
    // exponent size.
    //go:build !gccgo
    
    // 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.
    
    package main
    
    // Tests for golang.org/issue/11326.
    
    func main() {
    	{
    		const n = 1e646456992
    		const d = 1e646456991
    		x := n / d
    		if x != 10.0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 821 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/gccgo_c.c

    // license that can be found in the LICENSE file.
    
    //go:build gccgo && !aix && !hurd
    
    #include <errno.h>
    #include <stdint.h>
    #include <unistd.h>
    
    #define _STRINGIFY2_(x) #x
    #define _STRINGIFY_(x) _STRINGIFY2_(x)
    #define GOSYM_PREFIX _STRINGIFY_(__USER_LABEL_PREFIX__)
    
    // Call syscall from C code because the gccgo support for calling from
    // Go to C does not support varargs functions.
    
    struct ret {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_gc_x86.go

    //go:build (386 || amd64 || amd64p32) && gc
    
    package cpu
    
    // cpuid is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    func cpuid(eaxArg, ecxArg uint32) (eax, ebx, ecx, edx uint32)
    
    // xgetbv with ecx = 0 is implemented in cpu_x86.s for gc compiler
    // and in cpu_gccgo.c for gccgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 499 bytes
    - Viewed (0)
Back to top