Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cgo_dynamic_linker (0.24 sec)

  1. src/cmd/link/internal/ld/go.go

    					// Dynamic cgo exports appear
    					// in the exported symbol table.
    					ctxt.dynexp = append(ctxt.dynexp, s)
    				}
    				l.SetAttrCgoExportDynamic(s, true)
    			}
    
    			continue
    
    		case "cgo_dynamic_linker":
    			if len(f) != 2 {
    				break
    			}
    
    			if *flagInterpreter == "" {
    				if interpreter != "" && interpreter != f[1] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    used.
    
    In internal mode, cmd/link itself processes all the host object files, in
    particular foo.cgo2.o. To do so, it uses the cgo_import_dynamic and
    cgo_dynamic_linker directives to learn that the otherwise undefined
    reference to sin in foo.cgo2.o should be rewritten to refer to the
    symbol sin with version GLIBC_2.2.5 from the dynamic library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top