Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for swigcxx (0.13 sec)

  1. src/cmd/cgo/internal/swig/testdata/callback/main.swigcxx

    Austin Clements <******@****.***> 1683216807 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 366 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_swigcxx.txt

    stdout a\.go
    [compiler:gc] stdout -count=3 $GOCACHE
    [compiler:gccgo] stdout -count=2 $GOCACHE
    
    -- go.mod --
    module example
    
    go 1.16
    
    -- swig/a.go --
    package swig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 04:04:13 UTC 2024
    - 581 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_find_nodeps.txt

        println(C.INT_MAX)
    }
    
    -- cgo/pkg_notcgo.go --
    //go:build !cgo
    // +build !cgo
    
    package cgopkg
    
    func F() {
        println(0)
    }
    
    -- swig/pkg.go --
    package swigpkg
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 12 14:43:27 UTC 2021
    - 737 bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    The second is the SWIG program, which is a general tool for
    interfacing between languages. For information on SWIG see
    http://swig.org/. When running go build, any file with a .swig
    extension will be passed to SWIG. Any file with a .swigcxx extension
    will be passed to SWIG with the -c++ option.
    
    When either cgo or SWIG is used, go build will pass any .c, .m, .s, .S
    or .sx files to the C compiler, and any .cc, .cpp, .cxx files to the C++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/build.go

    	case ".h", ".hh", ".hpp", ".hxx":
    		return &p.HFiles
    	case ".f", ".F", ".for", ".f90":
    		return &p.FFiles
    	case ".s", ".S", ".sx":
    		return &p.SFiles
    	case ".swig":
    		return &p.SwigFiles
    	case ".swigcxx":
    		return &p.SwigCXXFiles
    	case ".syso":
    		return &p.SysoFiles
    	}
    	return nil
    }
    
    var errNoModules = errors.New("not using modules")
    
    func findImportComment(data []byte) (s string, line int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/list/list.go

            FFiles            []string   // .f, .F, .for and .f90 Fortran source files
            SFiles            []string   // .s source files
            SwigFiles         []string   // .swig files
            SwigCXXFiles      []string   // .swigcxx files
            SysoFiles         []string   // .syso object files to add to archive
            TestGoFiles       []string   // _test.go files in package
            XTestGoFiles      []string   // _test.go files outside package
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. src/go/build/build.go

    	FFiles            []string // .f, .F, .for and .f90 Fortran source files
    	SFiles            []string // .s source files
    	SwigFiles         []string // .swig files
    	SwigCXXFiles      []string // .swigcxx files
    	SysoFiles         []string // .syso system object files to add to archive
    
    	// Cgo directives
    	CgoCFLAGS    []string // Cgo CFLAGS directives
    	CgoCPPFLAGS  []string // Cgo CPPFLAGS directives
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //	    FFiles            []string   // .f, .F, .for and .f90 Fortran source files
    //	    SFiles            []string   // .s source files
    //	    SwigFiles         []string   // .swig files
    //	    SwigCXXFiles      []string   // .swigcxx files
    //	    SysoFiles         []string   // .syso object files to add to archive
    //	    TestGoFiles       []string   // _test.go files in package
    //	    XTestGoFiles      []string   // _test.go files outside package
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			}
    			if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
    				b.cacheObjdirFile(a, cache.Default(), ba.covMetaFileName)
    			}
    		}
    	}
    
    	// Run SWIG on each .swig and .swigcxx file.
    	// Each run will generate two files, a .go file and a .c or .cxx file.
    	// The .go file will use import "C" and is to be processed by cgo.
    	// For -cover test or build runs, this needs to happen after the cover
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	SFiles            []string `json:",omitempty"` // .s source files
    	SwigFiles         []string `json:",omitempty"` // .swig files
    	SwigCXXFiles      []string `json:",omitempty"` // .swigcxx files
    	SysoFiles         []string `json:",omitempty"` // .syso system object files added to package
    
    	// Embedded files
    	EmbedPatterns []string `json:",omitempty"` // //go:embed patterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top