Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for GCCGO (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.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 && linux && amd64
    
    package unix
    
    import "syscall"
    
    //extern gettimeofday
    func realGettimeofday(*Timeval, *byte) int32
    
    func gettimeofday(tv *Timeval) (err syscall.Errno) {
    	r := realGettimeofday(tv, nil)
    	if r < 0 {
    		return syscall.GetErrno()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_internal.txt

    cd ../testinternal2
    env GO111MODULE=off
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package .*internal/w not allowed'
    env GO111MODULE=''
    
    [compiler:gccgo] skip # gccgo does not have GOROOT
    cd ../testinternal
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package net/http/internal not allowed'
    
    -- testinternal/go.mod --
    module testinternal
    
    go 1.16
    -- testinternal/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_gccgo_x86.c

    // 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 (386 || amd64 || amd64p32) && gccgo
    
    #include <cpuid.h>
    #include <stdint.h>
    #include <x86intrin.h>
    
    // Need to wrap __get_cpuid_count because it's declared as static.
    int
    gccgoGetCpuidCount(uint32_t leaf, uint32_t subleaf,
                       uint32_t *eax, uint32_t *ebx,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_importmap.txt

    env GO111MODULE=off
    
    # gccgo does not have standard packages.
    [compiler:gccgo] skip
    
    # fmt should have no rewritten imports.
    # The import from a/b should map c/d to a's vendor directory.
    go list -f '{{.ImportPath}}: {{.ImportMap}}' fmt a/b
    stdout 'fmt: map\[\]'
    stdout 'a/b: map\[c/d:a/vendor/c/d\]'
    
    # flag [fmt.test] should import fmt [fmt.test] as fmt
    # fmt.test should import testing [fmt.test] as testing
    # fmt.test should not import a modified os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 956 bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    				// Fake packages - nothing to build.
    				a.Mode = "built-in package"
    				a.Actor = nil
    				return a
    			}
    
    			// gccgo standard library is "fake" too.
    			if cfg.BuildToolchainName == "gccgo" {
    				// the target name is needed for cgo.
    				a.Mode = "gccgo stdlib"
    				a.Target = p.Target
    				a.Actor = nil
    				return a
    			}
    		}
    
    		return a
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top