Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 838 for ncgo (0.13 sec)

  1. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    go build -x runtime/cgo
    [!short] stderr '[/\\]cgo'$GOEXE'["]? .* -importpath runtime/cgo'
    
    # https://go.dev/issue/47215: a missing $(go env CC) caused the precompiled net
    # to be stale. But as of https://go.dev/cl/452457 the precompiled libraries are
    # no longer installed anyway! Since we're requiring a C compiler in order to
    # build and use cgo libraries in the standard library, we should make sure it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/darwin_lto_library_ldflag.txt

    [!GOOS:darwin] skip
    [!cgo] skip
    
    ! go build
    stderr 'invalid flag in #cgo LDFLAGS: -lto_library'
    
    -- go.mod --
    module ldflag
    
    -- main.go --
    package main
    
    // #cgo CFLAGS: -flto
    // #cgo LDFLAGS: -lto_library bad.dylib
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:41:16 UTC 2024
    - 241 bytes
    - Viewed (0)
  3. src/runtime/rt0_linux_ppc64.s

    	XOR	R0, R0 // Note, newer kernels may not always set R0 to 0.
    	MOVD	$runtime·rt0_go(SB), R12
    	MOVD	R12, CTR
    	MOVBZ	runtime·iscgo(SB), R5
    	CMP	R5, $0
    	BEQ	nocgo
    	BR	(CTR)
    nocgo:
    	MOVD	0(R1), R3 // argc
    	ADD	$8, R1, R4 // argv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 847 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_static.txt

    # This test requires external linking. Assume that if cgo is supported
    # then external linking works.
    [!cgo] skip 'requires a C linker'
    
    # Only run on Unix systems.
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # Ordinary build should work.
    go build
    exec ./hello
    stdout Hello
    
    # Building with -linkmode=external should not say anything about
    # runtime/cgo (issue #31544).
    go build -ldflags=-linkmode=external
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 22:03:35 UTC 2023
    - 926 bytes
    - Viewed (0)
  5. src/syscall/mkall.sh

    	mksyscall="./mksyscall_libc.pl -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_pkgconfig_error.txt

    [!cgo] skip 'test verifies cgo pkg-config errors'
    [!exec:pkg-config] skip 'test requires pkg-config tool'
    
    ! go list -export .
    stderr '^# example\n# \[pkg-config .*\]\n(.*\n)*Package .* not found'
    
    -- go.mod --
    module example
    go 1.20
    -- example.go --
    package example
    
    // #cgo pkg-config: libnot-a-valid-cgo-library
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:23:49 UTC 2023
    - 345 bytes
    - Viewed (0)
  7. src/runtime/cgo_mmap.go

    // Support for memory sanitizer. See runtime/cgo/mmap.go.
    
    //go:build (linux && (amd64 || arm64 || loong64)) || (freebsd && amd64)
    
    package runtime
    
    import "unsafe"
    
    // _cgo_mmap is filled in by runtime/cgo when it is linked into the
    // program, so it is only non-nil when using cgo.
    //
    //go:linkname _cgo_mmap _cgo_mmap
    var _cgo_mmap unsafe.Pointer
    
    // _cgo_munmap is filled in by runtime/cgo when it is linked into the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/runtime/asm_s390x.s

    	MOVD	$runtime·libpreinit(SB), R1
    	BL	R1
    
    	// Create a new thread to finish Go runtime initialization.
    	MOVD	_cgo_sys_thread_create(SB), R1
    	CMP	R1, $0
    	BEQ	nocgo
    	MOVD	$_rt0_s390x_lib_go(SB), R2
    	MOVD	$0, R3
    	BL	R1
    	BR	restore
    
    nocgo:
    	MOVD	$0x800000, R1              // stacksize
    	MOVD	R1, 0(R15)
    	MOVD	$_rt0_s390x_lib_go(SB), R1
    	MOVD	R1, 8(R15)                 // fn
    	MOVD	$runtime·newosproc(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    environment variable when running the go tool: set it to 1 to enable
    the use of cgo, and to 0 to disable it. The go tool will set the
    build constraint "cgo" if cgo is enabled. The special import "C"
    implies the "cgo" build constraint, as though the file also said
    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    "C" will not be built by the go tool. (For more about build constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    	"golang.org/x/tools/go/ast/astutil"
    )
    
    const debug = false
    
    const Doc = `detect some violations of the cgo pointer passing rules
    
    Check for invalid cgo pointer passing.
    This looks for code that uses cgo to call C code passing values
    whose types are almost always invalid according to the cgo pointer
    sharing rules.
    Specifically, it warns about attempts to pass a Go chan, map, func,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top