Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cgo_export_dynamic (0.39 sec)

  1. src/cmd/compile/internal/noder/lex_test.go

    		in   string
    		want []string
    	}
    
    	var tests = []testStruct{
    		{`go:cgo_export_dynamic local`, []string{`cgo_export_dynamic`, `local`}},
    		{`go:cgo_export_dynamic local remote`, []string{`cgo_export_dynamic`, `local`, `remote`}},
    		{`go:cgo_export_dynamic local' remote'`, []string{`cgo_export_dynamic`, `local'`, `remote'`}},
    		{`go:cgo_export_static local`, []string{`cgo_export_static`, `local`}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:39:06 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go_test.go

    	if runtime.GOOS != "openbsd" {
    		t.Skip("test only useful on openbsd")
    	}
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	// cgo_import_dynamic both the unversioned libraries and pull in the
    	// net package to get a cgo package with a versioned library.
    	srcFile := filepath.Join(dir, "x.go")
    	src := `package main
    
    import (
    	_ "net"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top