Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for lldb (0.04 sec)

  1. src/runtime/runtime-lldb_test.go

        process.broadcaster.AddListener(listener, lldb.SBProcess.eBroadcastBitStateChanged)
        while True:
          event = lldb.SBEvent()
          if listener.WaitForEvent(TIMEOUT_SECS, event):
            if lldb.SBProcess.GetRestartedFromEvent(event):
              continue
            state = process.GetState()
            if state in [lldb.eStateUnloaded, lldb.eStateLaunching, lldb.eStateRunning]:
              continue
          else:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/resources/org/gradle/ide/xcode/tasks/internal/default.xcscheme

           </BuildActionEntries>
        </BuildAction>
        <TestAction
           buildConfiguration = "Debug"
           selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
           selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
           shouldUseLaunchSchemeArgsEnv = "YES">
           <Testables>
           </Testables>
           <AdditionalOptions>
           </AdditionalOptions>
        </TestAction>
        <LaunchAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. misc/ios/go_ios_exec.go

    		}
    		env = append(env, e)
    	}
    	lldb := exec.Command(
    		"python",
    		"-", // Read script from stdin.
    		target,
    		appdir,
    		deviceapp,
    	)
    	lldb.Args = append(lldb.Args, args...)
    	lldb.Env = env
    	lldb.Stdin = strings.NewReader(lldbDriver)
    	lldb.Stdout = os.Stdout
    	var out bytes.Buffer
    	lldb.Stderr = io.MultiWriter(&out, os.Stderr)
    	err := lldb.Start()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 23.4K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_signal_ios_arm64.c

    // license that can be found in the LICENSE file.
    
    // Emulation of the Unix signal SIGSEGV.
    //
    // On iOS, Go tests and apps under development are run by lldb.
    // The debugger uses a task-level exception handler to intercept signals.
    // Despite having a 'handle' mechanism like gdb, lldb will not allow a
    // SIGSEGV to pass to the running program. For Go, this means we cannot
    // generate a panic, which cannot be recovered, and so tests fail.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_signal2_ios_arm64.c

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build lldb
    
    // Used by gcc_signal_darwin_arm64.c when doing the test build during cgo.
    // We hope that for real binaries the definition provided by Go will take precedence
    // and the linker will drop this .o file altogether, which is why this definition
    // is all by itself in its own file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 508 bytes
    - Viewed (0)
  6. src/runtime/cgo/gcc_signal_ios_nolldb.c

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !lldb && ios && arm64
    
    #include <stdint.h>
    
    void darwin_arm_init_thread_exception_port() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 312 bytes
    - Viewed (0)
  7. src/cmd/go/internal/bug/bug.go

    		} else {
    			if cfg.BuildV {
    				fmt.Printf("failed to read /etc/release: %v\n", err)
    			}
    		}
    	}
    }
    
    func printCDetails(w io.Writer) {
    	printCmdOut(w, "lldb --version: ", "lldb", "--version")
    	cmd := exec.Command("gdb", "--version")
    	out, err := cmd.Output()
    	if err == nil {
    		// There's apparently no combination of command line flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug_test.go

    		optFlags += " -l"
    	}
    
    	moreargs := []string{}
    	if *useGdb && (runtime.GOOS == "darwin" || runtime.GOOS == "windows") {
    		// gdb and lldb on Darwin do not deal with compressed dwarf.
    		// also, Windows.
    		moreargs = append(moreargs, "-ldflags=-compressdwarf=false")
    	}
    
    	subTest(t, debugger+"-dbg", "hist", dbgFlags, moreargs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. src/cmd/internal/dwarf/dwarf.go

    	sym, base := s.Ranges, s.StartPC
    
    	if s.UseBASEntries {
    		// Using a Base Address Selection Entry reduces the number of relocations, but
    		// this is not done on macOS because it is not supported by dsymutil/dwarfdump/lldb
    		ctxt.AddInt(sym, ps, -1)
    		ctxt.AddAddress(sym, base, 0)
    		PutBasedRanges(ctxt, sym, ranges)
    		return
    	}
    
    	// Write ranges full of relocations
    	for _, r := range ranges {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	}
    	if opts.short || t.short {
    		run = append(run, "-short")
    	}
    	var tags []string
    	if t.iOS() {
    		tags = append(tags, "lldb")
    	}
    	if noOpt {
    		tags = append(tags, "noopt")
    	}
    	tags = append(tags, opts.tags...)
    	if len(tags) > 0 {
    		build = append(build, "-tags="+strings.Join(tags, ","))
    	}
    	if t.race || opts.race {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top