Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gdbcmd (0.14 sec)

  1. src/cmd/dist/build.go

    	if noOpt {
    		goCmd = append(goCmd, "-tags=noopt")
    	}
    	goCmd = appendCompilerFlags(goCmd)
    	if vflag > 0 {
    		goCmd = append(goCmd, "-v")
    	}
    
    	// Force only one process at a time on vx32 emulation.
    	if gohostos == "plan9" && os.Getenv("sysname") == "vx32" {
    		goCmd = append(goCmd, "-p=1")
    	}
    
    	runEnv(workdir, ShowOutput|CheckExit, env, append(goCmd, args...)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		rel, err := filepath.Rel(base.Cwd(), dir)
    		if err != nil {
    			rel = dir
    		}
    		cdCmd := ""
    		if rel != "." {
    			cdCmd = fmt.Sprintf("cd %s && ", rel)
    		}
    		base.Fatalf("go: cannot find main module, but found %s in %s\n\tto create a module there, run:\n\t%sgo mod init", name, dir, cdCmd)
    	}
    	base.Fatal(ErrNoModRoot)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    		}
    	case "loong64":
    		return []string{"-mabi=lp64d"}
    	}
    	return nil
    }
    
    func gccTmp() string {
    	return *objDir + "_cgo_.o"
    }
    
    // gccCmd returns the gcc command line to use for compiling
    // the input.
    func (p *Package) gccCmd() []string {
    	c := append(gccBaseCmd,
    		"-w",          // no warnings
    		"-Wno-error",  // warnings are not errors
    		"-o"+gccTmp(), // write object to tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"audio/vnd.rhetorex.32kadpcm",
    				"audio/vnd.sealedmedia.softseal.mpeg",
    				"audio/vnd.vmx.cvsd",
    				"audio/vorbis-config",
    				"audio/x-aac",
    				"audio/x-adbcm",
    				"audio/x-aiff",
    				"audio/x-dec-basic",
    				"audio/x-dec-adbcm",
    				"audio/x-flac",
    				"audio/x-mod",
    				"audio/x-mpegurl",
    				"audio/x-ms-wax",
    				"audio/x-ms-wma",
    				"audio/x-pn-realaudio",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  5. src/go/build/build.go

    			d := filepath.Dir(parent)
    			if len(d) >= len(parent) {
    				return errNoModules // reached top of file system, no go.mod
    			}
    			parent = d
    		}
    	}
    
    	goCmd := filepath.Join(ctxt.GOROOT, "bin", "go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top