Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Support (0.65 sec)

  1. src/cmd/asm/doc.go

    		after consulting $GOROOT/pkg/$GOOS_$GOARCH.
    	-S
    		Print assembly and machine code.
    	-V
    		Print assembler version and exit.
    	-debug
    		Dump instructions as they are parsed.
    	-dynlink
    		Support references to Go symbols defined in other shared libraries.
    	-e
    		No limit on number of errors reported.
    	-gensymabis
    		Write symbol ABI information to output file. Don't assemble.
    	-o file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/doc.go

    // and provides the user with the best experience
    // (see https://blog.golang.org/matchlang).
    //
    // # Matching preferred against supported languages
    //
    // A Matcher for an application that supports English, Australian English,
    // Danish, and standard Mandarin can be created as follows:
    //
    //	var matcher = language.NewMatcher([]language.Tag{
    //	    language.English,   // The first language is used as fallback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/gofmt/doc.go

    		If a file's formatting is different from gofmt's, overwrite it
    		with gofmt's version. If an error occurred during overwriting,
    		the original file is restored from an automatic backup.
    
    Debugging support:
    
    	-cpuprofile filename
    		Write cpu profile to the specified file.
    
    The rewrite rule specified with the -r flag must be a string of the form:
    
    	pattern -> replacement
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    	-k symbol
    		Set field tracking symbol. Use this flag when GOEXPERIMENT=fieldtrack is set.
    	-libgcc file
    		Set name of compiler support library.
    		This is only used in internal link mode.
    		If not set, default value comes from running the compiler,
    		which may be set by the -extld option.
    		Set to "none" to use no support library.
    	-linkmode mode
    		Set link mode (internal, external, auto).
    		This sets the linking mode as described in cmd/cgo/doc.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/cgo/doc.go

    must support both internal and external linking, depending on the
    circumstances: if net is the only cgo-using package, then internal
    linking is probably fine, but if other packages are involved, so that there
    are dependencies on libraries beyond libc, external linking is likely
    to work better. The compilation of a package records the relevant
    information to support both linking modes, leaving the decision
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/doc.go

    identical to the PPC64 mneumonics, such as VMX and VSX instructions. Not all detail
    is included here; refer to the Power ISA document if interested in more detail.
    
    Starting with Go 1.15 the Go objdump supports the -gnu option, which provides a
    side by side view of the Go assembler and the PPC64 assembler output. This is
    extremely helpful in determining what final PPC64 assembly is generated from the
    corresponding Go assembly.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/doc.go

    	AESD V22.B16, V19.B16             <=>      aesd v19.16b, v22.16b
    	SCVTFWS R3, F16                   <=>      scvtf s17, w6
    
    6. Align directive
    
    Go asm supports the PCALIGN directive, which indicates that the next instruction should be aligned
    to a specified boundary by padding with NOOP instruction. The alignment value supported on arm64
    must be a power of 2 and in the range of [8, 2048].
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top