dlv_debug.md 1.9 KB
Newer Older
1 2
## dlv debug

3
Compile and begin debugging main package in current directory, or the package specified.
4 5 6 7

### Synopsis


8 9 10 11 12 13
Compiles your program with optimizations disabled, starts and attaches to it.

By default, with no arguments, Delve will compile the 'main' package in the
current directory, and begin to debug it. Alternatively you can specify a
package name and Delve will compile that package instead, and begin a new debug
session.
14 15 16 17 18

```
dlv debug [package]
```

19 20 21
### Options

```
22
      --continue        Continue the debugged process on start.
23
      --output string   Output path for the binary. (default "./__debug_bin")
24 25
```

26 27 28
### Options inherited from parent commands

```
29
      --accept-multiclient   Allows a headless server to accept multiple client connections.
30
      --api-version int      Selects API version when headless. (default 1)
31
      --backend string       Backend selection (see 'dlv help backend'). (default "default")
32
      --build-flags string   Build flags, to be passed to the compiler.
33
      --check-go-version     Checks that the version of Go in use is compatible with Delve. (default true)
34 35
      --headless             Run debug server only, in headless mode.
      --init string          Init file, executed by the terminal client.
36
  -l, --listen string        Debugging server listen address. (default "127.0.0.1:0")
37
      --log                  Enable debugging server logging.
38 39
      --log-dest string      Writes logs to the specified file or file descriptor (see 'dlv help log').
      --log-output string    Comma separated list of components that should produce debug output (see 'dlv help log')
40
      --only-same-user       Only connections from the same user that started this instance of Delve are allowed to connect. (default true)
41
      --wd string            Working directory for running the program. (default ".")
42 43 44 45 46
```

### SEE ALSO
* [dlv](dlv.md)	 - Delve is a debugger for the Go programming language.