1 # Copyright 2005 Adam Jackson.
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # on the rights to use, copy, modify, merge, publish, distribute, sub
7 # license, and/or sell copies of the Software, and to permit persons to whom
8 # the Software is furnished to do so, subject to the following conditions:
10 # The above copyright notice and this permission notice (including the next
11 # paragraph) shall be included in all copies or substantial portions of the
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
17 # ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
18 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 # Process this file with autoconf to produce a configure script
24 AC_INIT([intel-gpu-tools],
26 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
29 AC_CONFIG_SRCDIR([Makefile.am])
30 AC_CONFIG_HEADERS([config.h])
31 AC_CONFIG_MACRO_DIR([m4])
32 AC_CONFIG_AUX_DIR([build-aux])
33 AC_USE_SYSTEM_EXTENSIONS
37 AM_INIT_AUTOMAKE([foreign dist-bzip2])
38 AM_PATH_PYTHON([3],, [:])
44 # Checks for functions, headers, structures, etc.
46 AC_CHECK_HEADERS([termios.h])
47 AC_CHECK_MEMBERS([struct sysinfo.totalram],[],[],[AC_INCLUDES_DEFAULT
48 #include <sys/sysinfo.h>
50 AC_CHECK_FUNCS([swapctl])
51 AC_CHECK_FUNCS([asprintf])
57 # Require X.Org macros 1.16 or later for XORG_TESTSET_CFLAG
58 m4_ifndef([XORG_MACROS_VERSION],
59 [m4_fatal([must install xorg-macros 1.16 or later before running autoconf/autogen])])
60 XORG_MACROS_VERSION(1.16)
63 # warning flags for the assembler. We can't quite use CWARNFLAGS for it yet as
64 # it generates waaaay too many warnings.
65 ASSEMBLER_WARN_CFLAGS=""
66 if test "x$GCC" = "xyes"; then
67 ASSEMBLER_WARN_CFLAGS="-Wall -Wstrict-prototypes \
68 -Wmissing-prototypes -Wmissing-declarations \
69 -Wnested-externs -fno-strict-aliasing"
71 AC_SUBST(ASSEMBLER_WARN_CFLAGS)
73 PKG_CHECK_MODULES(DRM, [libdrm_intel >= 2.4.40 libdrm])
74 PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
75 PKG_CHECK_MODULES(OVERLAY_XVLIB, [xv x11 xext], enable_overlay_xvlib=yes, enable_overlay_xvlib=no)
76 PKG_CHECK_MODULES(OVERLAY_XLIB, [cairo-xlib], enable_overlay_xlib=yes, enable_overlay_xlib=no)
78 AM_CONDITIONAL(BUILD_OVERLAY_XVLIB, [test "x$enable_overlay_xvlib" = xyes])
79 AM_CONDITIONAL(BUILD_OVERLAY_XLIB, [test "x$enable_overlay_xlib" = xyes])
80 AM_CONDITIONAL(BUILD_OVERLAY, [test "x$enable_overlay_xlib" = xyes -o "x$enable_overlay_xvlib"])
81 if test x$enable_overlay_xvlib = xyes; then
82 AC_DEFINE(HAVE_OVERLAY_XVLIB, 1, [Enable XV backend])
84 if test x$enable_overlay_xlib = xyes; then
85 AC_DEFINE(HAVE_OVERLAY_XLIB, 1, [Enable X backend])
89 PKG_CHECK_MODULES(CAIRO, [cairo >= 1.12.0])
90 PKG_CHECK_MODULES(LIBUDEV, [libudev], [udev=yes], [udev=no])
91 if test x"$udev" = xyes; then
92 AC_DEFINE(HAVE_UDEV,1,[Enable udev-based monitor hotplug detection])
94 PKG_CHECK_MODULES(GLIB, glib-2.0)
96 # can we build the assembler?
97 AS_IF([test x"$LEX" != "x:" -a x"$YACC" != xyacc],
98 [enable_assembler=yes],
99 [enable_assembler=no])
100 AM_CONDITIONAL(BUILD_ASSEMBLER, [test "x$enable_assembler" = xyes])
102 # -----------------------------------------------------------------------------
103 # Configuration options
104 # -----------------------------------------------------------------------------
106 AC_ARG_ENABLE(nouveau, AS_HELP_STRING([--disable-nouveau],
107 [Enable use of nouveau API for prime tests (default: enabled)]),
108 [NOUVEAU=$enableval], [NOUVEAU=yes])
109 if test "x$NOUVEAU" = xyes; then
110 PKG_CHECK_MODULES(DRM_NOUVEAU, [libdrm_nouveau >= 2.4.33])
111 AC_DEFINE(HAVE_NOUVEAU, 1, [Have nouveau support])
113 AM_CONDITIONAL(HAVE_NOUVEAU, [test "x$NOUVEAU" = xyes])
115 #Configure options for the python quick-dumper
116 AC_ARG_ENABLE(dumper,
117 AS_HELP_STRING([--disable-dumper],
118 [Disable the python based register dumper (default: enabled)]),
119 [DUMPER=$enableval], [DUMPER=yes])
120 if test "x$DUMPER" == xyes; then
121 AC_DEFINE(HAVE_DUMPER, 1, [Have dumper support])
123 AX_PKG_SWIG(2.0.0, [], [ AC_MSG_ERROR([SWIG 2.0.0 or higher is required to build..]) ])
124 AX_PYTHON_DEVEL([>= '3.0'])
127 AM_CONDITIONAL(HAVE_DUMPER, [test "x$DUMPER" = xyes])
129 # Define a configure option for the shadder debugger
130 AC_ARG_ENABLE(shader-debugger, AS_HELP_STRING([--enable-shader-debugger],
131 [Enable shader debugging support [autodetected]]),
132 [BUILD_SHADER_DEBUGGER="$enableval"], [BUILD_SHADER_DEBUGGER=auto])
134 # Shadder debugger depends on python3, intel-genasm and objcopy
135 if test "x$BUILD_SHADER_DEBUGGER" != xno; then
136 # Check Python 3 is installed
137 if test "$PYTHON" = ":" ; then
138 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
139 AC_MSG_ERROR([Shader debugger requested, python version 3 not found.])
141 BUILD_SHADER_DEBUGGER=no
144 # Check for the Intel Chipset assembler compiler
145 AC_PATH_PROGS([GEN4ASM], intel-gen4asm)
146 if test -z "$GEN4ASM" ; then
147 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
148 AC_MSG_ERROR([Shader debugger requested, but intel-gen4asm not found.])
150 BUILD_SHADER_DEBUGGER=no
153 # Check for the objcopy GNU binary utiliy command
154 AC_PATH_PROGS([OBJCOPY], objcopy)
155 if test -z "$OBJCOPY" ; then
156 if test "x$BUILD_SHADER_DEBUGGER" = xyes; then
157 AC_MSG_ERROR([Shader debugger requested, but objcopy command not found.])
159 BUILD_SHADER_DEBUGGER=no
164 AM_CONDITIONAL(BUILD_SHADER_DEBUGGER, [test "x$BUILD_SHADER_DEBUGGER" != xno])
165 AS_IF([test "x$BUILD_SHADER_DEBUGGER" != xno],
166 [enable_debugger=yes], [enable_debugger=no])
168 # -----------------------------------------------------------------------------
170 # To build multithread code, gcc uses -pthread, Solaris Studio cc uses -mt
171 XORG_TESTSET_CFLAG([THREAD_CFLAGS], [-pthread], [-mt])
172 AC_SUBST([THREAD_CFLAGS])
175 AS_HELP_STRING([--disable-tests],
176 [Disable tests build (default: enabled)]),
177 [BUILD_TESTS=$enableval], [BUILD_TESTS="yes"])
178 if test "x$BUILD_TESTS" = xyes; then
179 AC_DEFINE(BUILD_TESTS, 1, [Build tests])
181 AM_CONDITIONAL(BUILD_TESTS, [test "x$BUILD_TESTS" = xyes])
192 tools/quick_dump/Makefile
194 debugger/system_routine/Makefile
196 assembler/doc/Makefile
197 assembler/test/Makefile
198 assembler/intel-gen4asm.pc
203 # Print a summary of the compilation
205 echo "Intel GPU tools"
209 echo " Build tests : ${BUILD_TESTS}"
210 echo " Compile prime tests: ${NOUVEAU}"
213 echo " Assembler : ${enable_assembler}"
214 echo " Debugger : ${enable_debugger}"
215 echo " Python dumper : ${DUMPER}"
216 echo " Overlay : X: ${enable_overlay_xlib}, Xv: ${enable_overlay_xvlib}"
219 # vim: set ft=config ts=8 sw=8 tw=0 noet :