pkgsrc-wip/binutils-gold-git/options.mk
Kamil Rytarowski e11400d05c wip/binutils-gold-git: import gdb-8.0nb20171029
The purpose of a debugger such as GDB is to allow you to see what
is going on "inside" another program while it executes--or what
another program was doing at the moment it crashed.

   GDB can do four main kinds of things (plus other things in support
of these) to help you catch bugs in the act:

   * Start your program, specifying anything that might affect its
     behavior.

   * Make your program stop on specified conditions.

   * Examine what has happened, when your program has stopped.

   * Change things in your program, so you can experiment with
     correcting the effects of one bug and go on to learn about
     another.
2017-10-29 18:15:53 +01:00

14 lines
366 B
Makefile

# $NetBSD: options.mk,v 1.1 2014/06/21 04:01:01 thomasklausner Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.gdb
PKG_SUPPORTED_OPTIONS= python
PKG_SUGGESTED_OPTIONS= python
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mpython)
CONFIGURE_ARGS+= --with-python=${PYTHONBIN}
PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36
.include "../../lang/python/application.mk"
.endif