Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cuadro (0.49 sec)

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

    			// We need at least one runtime unit.
    			if unit.Lib.Pkg == "runtime" {
    				ctxt.runtimeCU = unit
    			}
    
    			cuabrv := dwarf.DW_ABRV_COMPUNIT
    			if len(unit.Textp) == 0 {
    				cuabrv = dwarf.DW_ABRV_COMPUNIT_TEXTLESS
    			}
    			unit.DWInfo = d.newdie(&dwroot, cuabrv, unit.Lib.Pkg)
    			newattr(unit.DWInfo, dwarf.DW_AT_language, dwarf.DW_CLS_CONSTANT, int64(dwarf.DW_LANG_Go), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    	// #include <png.h>
    	import "C"
    
    Alternatively, CPPFLAGS and LDFLAGS may be obtained via the pkg-config tool
    using a '#cgo pkg-config:' directive followed by the package names.
    For example:
    
    	// #cgo pkg-config: png cairo
    	// #include <png.h>
    	import "C"
    
    The default pkg-config tool may be changed by setting the PKG_CONFIG environment variable.
    
    For security reasons, only a limited set of flags are allowed, notably -D, -U, -I, and -l.
    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