mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-13 02:46:23 +00:00
quick_dump: Give dumper an AM_CONDITIONAL
It may sometimes be undesirable to build or install the quick dumper. This was requested by Damien. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
parent
1f2e037e8f
commit
1cce7eb21b
19
configure.ac
19
configure.ac
@ -50,11 +50,6 @@ AC_CHECK_FUNCS([asprintf])
|
|||||||
AC_DISABLE_STATIC
|
AC_DISABLE_STATIC
|
||||||
AC_PROG_LIBTOOL
|
AC_PROG_LIBTOOL
|
||||||
|
|
||||||
# SWIG configuration
|
|
||||||
AX_PKG_SWIG(2.0.0, [], [ AC_MSG_ERROR([SWIG 2.0.0 or higher is required to build..]) ])
|
|
||||||
AX_PYTHON_DEVEL([>= '3.0'])
|
|
||||||
AX_SWIG_PYTHON
|
|
||||||
|
|
||||||
# Require X.Org macros 1.16 or later for XORG_TESTSET_CFLAG
|
# Require X.Org macros 1.16 or later for XORG_TESTSET_CFLAG
|
||||||
m4_ifndef([XORG_MACROS_VERSION],
|
m4_ifndef([XORG_MACROS_VERSION],
|
||||||
[m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])])
|
[m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])])
|
||||||
@ -85,6 +80,20 @@ if test "x$NOUVEAU" = xyes; then
|
|||||||
fi
|
fi
|
||||||
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
|
AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
|
||||||
|
|
||||||
|
#Configure options for the python quick-dumper
|
||||||
|
AC_ARG_ENABLE(dumper,
|
||||||
|
AS_HELP_STRING([--disable-dumper],
|
||||||
|
[Disable the python based register dumper (default: enabled)]),
|
||||||
|
DUMPER=$enableval], [DUMPER=yes])
|
||||||
|
if test "x$DUMPER" == xyes; then
|
||||||
|
AC_DEFINE(HAVE_DUMPER, 1, [Have dumper support])
|
||||||
|
# SWIG configuration
|
||||||
|
AX_PKG_SWIG(2.0.0, [], [ AC_MSG_ERROR([SWIG 2.0.0 or higher is required to build..]) ])
|
||||||
|
AX_PYTHON_DEVEL([>= '3.0'])
|
||||||
|
AX_SWIG_PYTHON
|
||||||
|
fi
|
||||||
|
AM_CONDITIONAL(HAVE_DUMPER, [test "x$DUMPER" = xyes])
|
||||||
|
|
||||||
# Define a configure option for the shadder debugger
|
# Define a configure option for the shadder debugger
|
||||||
AC_ARG_ENABLE(shader-debugger, AS_HELP_STRING([--enable-shader-debugger],
|
AC_ARG_ENABLE(shader-debugger, AS_HELP_STRING([--enable-shader-debugger],
|
||||||
[Enable shader debugging support [autodetected]]),
|
[Enable shader debugging support [autodetected]]),
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
|
if HAVE_DUMPER
|
||||||
SUBDIRS = quick_dump
|
SUBDIRS = quick_dump
|
||||||
|
endif
|
||||||
|
|
||||||
bin_PROGRAMS = \
|
bin_PROGRAMS = \
|
||||||
intel_disable_clock_gating \
|
intel_disable_clock_gating \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user