Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 217 for asmflags (0.34 sec)

  1. src/cmd/go/testdata/script/version_build_settings.txt

    stdout '^\tbuild\tGOOS='
    stdout '^\tbuild\tGOARCH='
    [GOARCH:amd64] stdout '^\tbuild\tGOAMD64='
    ! stdout asmflags|gcflags|ldflags|gccgoflags
    
    # Toolchain flags are added if present.
    # The raw flags are included, with package patterns if specified.
    go build -asmflags=example.com/m=-D=FOO=bar
    go version -m m$GOEXE
    stdout '^\tbuild\t-asmflags=example\.com/m=-D=FOO=bar$'
    
    go build -gcflags=example.com/m=-N
    go version -m m$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/flag.go

    // license that can be found in the LICENSE file.
    
    package load
    
    import (
    	"cmd/go/internal/base"
    	"cmd/internal/quoted"
    	"fmt"
    	"strings"
    )
    
    var (
    	BuildAsmflags   PerPackageFlag // -asmflags
    	BuildGcflags    PerPackageFlag // -gcflags
    	BuildLdflags    PerPackageFlag // -ldflags
    	BuildGccgoflags PerPackageFlag // -gccgoflags
    )
    
    // A PerPackageFlag is a command-line flag implementation (a flag.Value)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 20:20:43 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/asm/main.go

    		log.Printf("unknown setting -spectre=%s", *flags.Spectre)
    		os.Exit(2)
    	case "":
    		// nothing
    	case "index":
    		// known to compiler; ignore here so people can use
    		// the same list with -gcflags=-spectre=LIST and -asmflags=-spectrre=LIST
    	case "all", "ret":
    		ctxt.Retpoline = true
    	}
    
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    	defer ctxt.Bso.Flush()
    
    	architecture.Init(ctxt)
    
    	// Create object file, write header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/test.go

    					ImportPos:  p.Internal.Build.XTestImportPos,
    					Directives: p.Internal.Build.XTestDirectives,
    				},
    				Imports:    ximports,
    				RawImports: rawXTestImports,
    
    				Asmflags:       p.Internal.Asmflags,
    				Gcflags:        p.Internal.Gcflags,
    				Ldflags:        p.Internal.Ldflags,
    				Gccgoflags:     p.Internal.Gccgoflags,
    				Embed:          xtestEmbed,
    				OrigImportPath: p.Internal.OrigImportPath,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/build.go

    	-v
    		print the names of packages as they are compiled.
    	-work
    		print the name of the temporary work directory and
    		do not delete it when exiting.
    	-x
    		print the commands.
    	-asmflags '[pattern=]arg list'
    		arguments to pass on each go tool asm invocation.
    	-buildmode mode
    		build mode to use. See 'go help buildmode' for more.
    	-buildvcs
    		Whether to stamp binaries with version control information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/gc.go

    	pkgpath := pkgPath(a)
    	args := []any{cfg.BuildToolexec, base.Tool("asm"), "-p", pkgpath, "-trimpath", a.trimpath(), "-I", a.Objdir, "-I", inc, "-D", "GOOS_" + cfg.Goos, "-D", "GOARCH_" + cfg.Goarch, forcedAsmflags, p.Internal.Asmflags}
    	if p.ImportPath == "runtime" && cfg.Goarch == "386" {
    		for _, arg := range forcedAsmflags {
    			if arg == "-dynlink" {
    				args = append(args, "-D=GOBUILDMODE_shared=1")
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    	PGOProfile        string               // path to PGO profile
    	ForMain           string               // the main package if this package is built specifically for it
    
    	Asmflags   []string // -asmflags for this package
    	Gcflags    []string // -gcflags for this package
    	Ldflags    []string // -ldflags for this package
    	Gccgoflags []string // -gccgoflags for this package
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/av/AvFlags.java

    import jcifs.internal.util.SMBUtil;
    
    
    /**
     * @author mbechler
     *
     */
    public class AvFlags extends AvPair {
    
        /**
         * @param raw
         */
        public AvFlags ( byte[] raw ) {
            super(AvPair.MsvAvFlags, raw);
        }
    
    
        /**
         * 
         * @param flags
         */
        public AvFlags ( int flags ) {
            this(encode(flags));
        }
    
    
        /**
         * 
         * @return flags
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    			// environment variable so that it applies to
    			// both the test itself and to binaries built
    			// by the test.
    			goFlagsList := []string{}
    			for _, flag := range []string{"-gcflags", "-asmflags"} {
    				for _, hookPkg := range hookPkgs {
    					goFlagsList = append(goFlagsList, flag+"="+hookPkg+"=-d=maymorestack=runtime."+hook)
    				}
    				for _, unhookPkg := range unhookPkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	-v
    //		print the names of packages as they are compiled.
    //	-work
    //		print the name of the temporary work directory and
    //		do not delete it when exiting.
    //	-x
    //		print the commands.
    //	-asmflags '[pattern=]arg list'
    //		arguments to pass on each go tool asm invocation.
    //	-buildmode mode
    //		build mode to use. See 'go help buildmode' for more.
    //	-buildvcs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top