Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ExitIfErrors (0.24 sec)

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

    			Exitf("mapping output file failed: %v", err)
    		}
    	}
    	// asmb will redirect symbols to the output file mmap, and relocations
    	// will be applied directly there.
    	bench.Start("Asmb")
    	asmb(ctxt)
    
    	exitIfErrors()
    
    	// Generate additional symbols for the native symbol table just prior
    	// to code generation.
    	bench.Start("GenSymsLate")
    	if thearch.GenSymsLate != nil {
    		thearch.GenSymsLate(ctxt, ctxt.loader)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/list/list.go

    		if !*listE {
    			for _, m := range mods {
    				if m.Error != nil {
    					base.Error(errors.New(m.Error.Err))
    				}
    			}
    			if err != nil {
    				base.Error(err)
    			}
    			base.ExitIfErrors()
    		}
    		for _, m := range mods {
    			do(m)
    		}
    		return
    	}
    
    	// Package mode (not -m).
    	if *listU {
    		base.Fatalf("go list -u can only be used with -m")
    	}
    	if *listVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/build.go

    			default:
    				base.Errorf("go: no install location for directory %s outside GOPATH\n"+
    					"\tFor more details see: 'go help gopath'", p.Dir)
    			}
    		}
    	}
    	base.ExitIfErrors()
    
    	b := NewBuilder("")
    	defer func() {
    		if err := b.Close(); err != nil {
    			base.Fatal(err)
    		}
    	}()
    
    	depMode := ModeBuild
    	a := &Action{Mode: "go install"}
    	var tools []*Action
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top